Deleted Added
1
2/*
3 * Copyright (C) Max Romanov
4 * Copyright (C) Valentin V. Bartenev
5 * Copyright (C) NGINX, Inc.
6 */
7
8#ifndef _NXT_APPLICATION_H_INCLUDED_

--- 87 unchanged lines hidden (view full) ---

96typedef struct {
97 nxt_app_request_header_t header;
98 nxt_app_request_body_t body;
99
100 nxt_str_t remote;
101} nxt_app_request_t;
102
103
104//typedef struct nxt_app_parse_ctx_s nxt_app_parse_ctx_t;
105
106struct nxt_app_parse_ctx_s {
107 nxt_app_request_t r;
108 nxt_http_request_parse_t parser;
109 nxt_mp_t *mem_pool;
110};
111
112

--- 171 unchanged lines hidden ---