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 10 typedef struct nxt_unit_s nxt_unit_t; 11 typedef struct nxt_unit_ctx_s nxt_unit_ctx_t; 12 typedef struct nxt_unit_port_id_s nxt_unit_port_id_t; 13 typedef struct nxt_unit_port_s nxt_unit_port_t; 14 typedef struct nxt_unit_buf_s nxt_unit_buf_t; 15 typedef struct nxt_unit_request_info_s nxt_unit_request_info_t; 16 typedef struct nxt_unit_callbacks_s nxt_unit_callbacks_t; 17 typedef struct nxt_unit_init_s nxt_unit_init_t; 18 typedef union nxt_unit_sptr_u nxt_unit_sptr_t; 19 typedef struct nxt_unit_field_s nxt_unit_field_t; 20 typedef struct nxt_unit_request_s nxt_unit_request_t; 21 typedef struct nxt_unit_response_s nxt_unit_response_t; 22 typedef struct nxt_unit_read_info_s nxt_unit_read_info_t; 23 24 25 #endif /* _NXT_UNIT_TYPEDEFS_H_INCLUDED_ */ 26