diff options
author | Igor Sysoev <igor@sysoev.ru> | 2019-05-30 15:33:51 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2019-05-30 15:33:51 +0300 |
commit | 6a775f58af430bd2e1f41556e9bb28b089a5e068 (patch) | |
tree | 75df666760d5094667e89e18415dd22a49677380 /src/nxt_http.h | |
parent | 5fb3daa5af30bd6e57d5ca82df269a226f1e5813 (diff) | |
download | unit-6a775f58af430bd2e1f41556e9bb28b089a5e068.tar.gz unit-6a775f58af430bd2e1f41556e9bb28b089a5e068.tar.bz2 |
Added routing based on cookies.
Diffstat (limited to 'src/nxt_http.h')
-rw-r--r-- | src/nxt_http.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nxt_http.h b/src/nxt_http.h index e788399f..835cf66d 100644 --- a/src/nxt_http.h +++ b/src/nxt_http.h @@ -122,6 +122,7 @@ struct nxt_http_request_s { nxt_str_t *args; nxt_array_t *arguments; /* of nxt_http_name_value_t */ + nxt_array_t *cookies; /* of nxt_http_name_value_t */ nxt_list_t *fields; nxt_http_field_t *content_type; nxt_http_field_t *content_length; |