1 2/* 3 * Copyright (C) NGINX, Inc. 4 */ 5 6#ifndef _NXT_UNIT_TYPEDEFS_H_INCLUDED_ 7#define _NXT_UNIT_TYPEDEFS_H_INCLUDED_ 8 9
| 1 2/* 3 * Copyright (C) NGINX, Inc. 4 */ 5 6#ifndef _NXT_UNIT_TYPEDEFS_H_INCLUDED_ 7#define _NXT_UNIT_TYPEDEFS_H_INCLUDED_ 8 9
|
10typedef struct nxt_unit_s nxt_unit_t; 11typedef struct nxt_unit_ctx_s nxt_unit_ctx_t; 12typedef struct nxt_unit_port_id_s nxt_unit_port_id_t; 13typedef struct nxt_unit_port_s nxt_unit_port_t; 14typedef struct nxt_unit_buf_s nxt_unit_buf_t; 15typedef struct nxt_unit_request_info_s nxt_unit_request_info_t; 16typedef struct nxt_unit_callbacks_s nxt_unit_callbacks_t; 17typedef struct nxt_unit_init_s nxt_unit_init_t; 18typedef union nxt_unit_sptr_u nxt_unit_sptr_t; 19typedef struct nxt_unit_field_s nxt_unit_field_t; 20typedef struct nxt_unit_request_s nxt_unit_request_t; 21typedef struct nxt_unit_response_s nxt_unit_response_t; 22typedef struct nxt_unit_read_info_s nxt_unit_read_info_t;
| 10typedef struct nxt_unit_s nxt_unit_t; 11typedef struct nxt_unit_ctx_s nxt_unit_ctx_t; 12typedef struct nxt_unit_port_id_s nxt_unit_port_id_t; 13typedef struct nxt_unit_port_s nxt_unit_port_t; 14typedef struct nxt_unit_buf_s nxt_unit_buf_t; 15typedef struct nxt_unit_request_info_s nxt_unit_request_info_t; 16typedef struct nxt_unit_callbacks_s nxt_unit_callbacks_t; 17typedef struct nxt_unit_init_s nxt_unit_init_t; 18typedef union nxt_unit_sptr_u nxt_unit_sptr_t; 19typedef struct nxt_unit_field_s nxt_unit_field_t; 20typedef struct nxt_unit_request_s nxt_unit_request_t; 21typedef struct nxt_unit_response_s nxt_unit_response_t; 22typedef struct nxt_unit_read_info_s nxt_unit_read_info_t; 23typedef struct nxt_unit_websocket_frame_s nxt_unit_websocket_frame_t;
|
23 24 25#endif /* _NXT_UNIT_TYPEDEFS_H_INCLUDED_ */
| 24 25 26#endif /* _NXT_UNIT_TYPEDEFS_H_INCLUDED_ */
|