~ubuntu-branches/ubuntu/trusty/nginx/trusty-proposed

« back to all changes in this revision

Viewing changes to src/core/ngx_parse.h

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry
  • Date: 2013-04-25 12:51:45 UTC
  • mfrom: (1.3.28)
  • mto: (1.3.29) (15.1.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 64.
  • Revision ID: package-import@ubuntu.com-20130425125145-ugl0wor6bq0u5eae
Tags: upstream-1.4.0
ImportĀ upstreamĀ versionĀ 1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
/*
3
3
 * Copyright (C) Igor Sysoev
 
4
 * Copyright (C) Nginx, Inc.
4
5
 */
5
6
 
6
7
 
12
13
#include <ngx_core.h>
13
14
 
14
15
 
15
 
#define NGX_PARSE_LARGE_TIME  -2
16
 
 
17
 
 
18
16
ssize_t ngx_parse_size(ngx_str_t *line);
19
17
off_t ngx_parse_offset(ngx_str_t *line);
20
 
ngx_int_t ngx_parse_time(ngx_str_t *line, ngx_uint_t sec);
 
18
ngx_int_t ngx_parse_time(ngx_str_t *line, ngx_uint_t is_sec);
21
19
 
22
20
 
23
21
#endif /* _NGX_PARSE_H_INCLUDED_ */