2004-09-28 04:34:51 -04:00
|
|
|
|
|
|
|
/*
|
2004-09-29 12:00:49 -04:00
|
|
|
* Copyright (C) Igor Sysoev
|
2004-09-28 04:34:51 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-10-23 12:54:19 -03:00
|
|
|
#ifndef _NGX_PARSE_H_INCLUDED_
|
|
|
|
#define _NGX_PARSE_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
|
|
|
|
|
|
|
|
#define NGX_PARSE_LARGE_TIME -2
|
|
|
|
|
|
|
|
|
2005-10-19 09:33:58 -03:00
|
|
|
ssize_t ngx_parse_size(ngx_str_t *line);
|
2006-07-07 12:33:19 -04:00
|
|
|
off_t ngx_parse_offset(ngx_str_t *line);
|
2008-04-17 10:23:20 -04:00
|
|
|
ngx_int_t ngx_parse_time(ngx_str_t *line, ngx_uint_t sec);
|
2003-10-23 12:54:19 -03:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* _NGX_PARSE_H_INCLUDED_ */
|