diff options
author | Max Romanov <max.romanov@nginx.com> | 2018-08-06 17:27:33 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2018-08-06 17:27:33 +0300 |
commit | 1bb22d1e922c87d3c86c67bdce626767ee48fb5c (patch) | |
tree | 6e067a82b309c3a0d0f592f037f26d886a7f8c13 /src/nxt_unit_request.h | |
parent | b6ce2da65c9c5229d744b2d964623b2d0f731ee9 (diff) | |
download | unit-1bb22d1e922c87d3c86c67bdce626767ee48fb5c.tar.gz unit-1bb22d1e922c87d3c86c67bdce626767ee48fb5c.tar.bz2 |
Unit application library.
Library now used in all language modules.
Old 'nxt_app_*' code removed.
See src/test/nxt_unit_app_test.c for usage sample.
Diffstat (limited to 'src/nxt_unit_request.h')
-rw-r--r-- | src/nxt_unit_request.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/nxt_unit_request.h b/src/nxt_unit_request.h new file mode 100644 index 00000000..af5c29a1 --- /dev/null +++ b/src/nxt_unit_request.h @@ -0,0 +1,48 @@ + +/* + * Copyright (C) NGINX, Inc. + */ + +#ifndef _NXT_UNIT_REQUEST_H_INCLUDED_ +#define _NXT_UNIT_REQUEST_H_INCLUDED_ + + +#include <inttypes.h> + +#include "nxt_unit_sptr.h" +#include "nxt_unit_field.h" + +#define NXT_UNIT_NONE_FIELD 0xFFFFFFFFU + +struct nxt_unit_request_s { + uint8_t method_length; + uint8_t version_length; + uint8_t remote_length; + uint8_t local_length; + uint32_t target_length; + uint32_t path_length; + uint32_t query_length; + uint32_t fields_count; + + uint32_t host_field; + uint32_t content_length_field; + uint32_t content_type_field; + uint32_t cookie_field; + + uint64_t content_length; + + nxt_unit_sptr_t method; + nxt_unit_sptr_t version; + nxt_unit_sptr_t remote; + nxt_unit_sptr_t local; + nxt_unit_sptr_t target; + nxt_unit_sptr_t path; + nxt_unit_sptr_t query; + nxt_unit_sptr_t preread_content; + + nxt_unit_field_t fields[]; +}; + + +#endif /* _NXT_UNIT_REQUEST_H_INCLUDED_ */ + |