~ubuntu-branches/ubuntu/quantal/nginx/quantal-updates

« back to all changes in this revision

Viewing changes to debian/modules/chunkin-nginx-module/src/chunked_parser.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 CHUNKIN_CHUNKED_PARSER_H
 
2
#define CHUNKIN_CHUNKED_PARSER_H
 
3
 
 
4
#include "ngx_http_chunkin_filter_module.h"
 
5
 
 
6
ngx_int_t ngx_http_chunkin_init_chunked_parser(ngx_http_request_t *r,
 
7
        ngx_http_chunkin_ctx_t *ctx);
 
8
 
 
9
ngx_int_t ngx_http_chunkin_run_chunked_parser(ngx_http_request_t *r,
 
10
        ngx_http_chunkin_ctx_t *ctx, u_char **pos_addr, u_char *last,
 
11
        char *caller_info);
 
12
 
 
13
#endif /* CHUNKIN_CHUNKED_PARSER_H */
 
14