~ubuntu-branches/ubuntu/saucy/nginx/saucy-updates

« back to all changes in this revision

Viewing changes to debian/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_out.h

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry, Kartik Mistry
  • Date: 2011-09-26 10:17:04 UTC
  • mfrom: (4.2.38 sid)
  • Revision ID: package-import@ubuntu.com-20110926101704-x8pxngiujrmkxnn3
Tags: 1.1.4-2
[Kartik Mistry]
* debian/modules:
  + Updated nginx-upload-progress module, Thanks to upstream for fixing issue
    that FTBFS nginx on kFreeBSD-* archs.
  + Updated nginx-lua module to latest upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef NGX_HTTP_HEADERS_MORE_OUTPUT_HEADERS_H
 
2
#define NGX_HTTP_HEADERS_MORE_OUTPUT_HEADERS_H
 
3
 
 
4
#include "ngx_http_headers_more_filter_module.h"
 
5
 
 
6
/* output header setters and clearers */
 
7
 
 
8
ngx_int_t ngx_http_headers_more_exec_cmd(ngx_http_request_t *r,
 
9
        ngx_http_headers_more_cmd_t *cmd);
 
10
 
 
11
char * ngx_http_headers_more_set_headers(ngx_conf_t *cf,
 
12
        ngx_command_t *cmd, void *conf);
 
13
 
 
14
char * ngx_http_headers_more_clear_headers(ngx_conf_t *cf,
 
15
        ngx_command_t *cmd, void *conf);
 
16
 
 
17
#endif /* NGX_HTTP_HEADERS_MORE_OUTPUT_HEADERS_H */
 
18