nginx_sys/stream.rs
1use core::mem::offset_of;
2
3use crate::bindings::ngx_stream_conf_ctx_t;
4
5/// The offset of the `main_conf` field in the `ngx_stream_conf_ctx_t` struct.
6///
7/// This is used to access the main configuration context for a STREAM module.
8pub const NGX_STREAM_MAIN_CONF_OFFSET: usize = offset_of!(ngx_stream_conf_ctx_t, main_conf);
9
10/// The offset of the `srv_conf` field in the `ngx_stream_conf_ctx_t` struct.
11///
12/// This is used to access the server configuration context for a STREAM module.
13pub const NGX_STREAM_SRV_CONF_OFFSET: usize = offset_of!(ngx_stream_conf_ctx_t, srv_conf);