xref: /unit/src/nxt_unit_typedefs.h (revision 1131)
1743Smax.romanov@nginx.com 
2743Smax.romanov@nginx.com /*
3743Smax.romanov@nginx.com  * Copyright (C) NGINX, Inc.
4743Smax.romanov@nginx.com  */
5743Smax.romanov@nginx.com 
6743Smax.romanov@nginx.com #ifndef _NXT_UNIT_TYPEDEFS_H_INCLUDED_
7743Smax.romanov@nginx.com #define _NXT_UNIT_TYPEDEFS_H_INCLUDED_
8743Smax.romanov@nginx.com 
9743Smax.romanov@nginx.com 
10*1131Smax.romanov@nginx.com typedef struct nxt_unit_s                  nxt_unit_t;
11*1131Smax.romanov@nginx.com typedef struct nxt_unit_ctx_s              nxt_unit_ctx_t;
12*1131Smax.romanov@nginx.com typedef struct nxt_unit_port_id_s          nxt_unit_port_id_t;
13*1131Smax.romanov@nginx.com typedef struct nxt_unit_port_s             nxt_unit_port_t;
14*1131Smax.romanov@nginx.com typedef struct nxt_unit_buf_s              nxt_unit_buf_t;
15*1131Smax.romanov@nginx.com typedef struct nxt_unit_request_info_s     nxt_unit_request_info_t;
16*1131Smax.romanov@nginx.com typedef struct nxt_unit_callbacks_s        nxt_unit_callbacks_t;
17*1131Smax.romanov@nginx.com typedef struct nxt_unit_init_s             nxt_unit_init_t;
18*1131Smax.romanov@nginx.com typedef union nxt_unit_sptr_u              nxt_unit_sptr_t;
19*1131Smax.romanov@nginx.com typedef struct nxt_unit_field_s            nxt_unit_field_t;
20*1131Smax.romanov@nginx.com typedef struct nxt_unit_request_s          nxt_unit_request_t;
21*1131Smax.romanov@nginx.com typedef struct nxt_unit_response_s         nxt_unit_response_t;
22*1131Smax.romanov@nginx.com typedef struct nxt_unit_read_info_s        nxt_unit_read_info_t;
23*1131Smax.romanov@nginx.com typedef struct nxt_unit_websocket_frame_s  nxt_unit_websocket_frame_t;
24743Smax.romanov@nginx.com 
25743Smax.romanov@nginx.com 
26743Smax.romanov@nginx.com #endif /* _NXT_UNIT_TYPEDEFS_H_INCLUDED_ */
27