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_response.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_response.h')
-rw-r--r-- | src/nxt_unit_response.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/nxt_unit_response.h b/src/nxt_unit_response.h new file mode 100644 index 00000000..481ed701 --- /dev/null +++ b/src/nxt_unit_response.h @@ -0,0 +1,27 @@ + +/* + * Copyright (C) NGINX, Inc. + */ + +#ifndef _NXT_UNIT_RESPONSE_H_INCLUDED_ +#define _NXT_UNIT_RESPONSE_H_INCLUDED_ + + +#include <inttypes.h> + +#include "nxt_unit_sptr.h" +#include "nxt_unit_field.h" + +struct nxt_unit_response_s { + uint64_t content_length; + uint32_t fields_count; + uint32_t piggyback_content_length; + uint16_t status; + + nxt_unit_sptr_t piggyback_content; + + nxt_unit_field_t fields[]; +}; + + +#endif /* _NXT_UNIT_RESPONSE_H_INCLUDED_ */ |