Lines Matching defs:options
145 static struct options struct
147 const char *server_addr; /* address to forward packets to */
148 const char *server_port; /* port to forward packets to */
149 const char *listen_addr; /* address for accepting client connections */
150 const char *listen_port; /* port for accepting client connections */
152 int duplicate; /* duplicate 1 in N packets (none if 0) */
153 int delay; /* delay 1 packet in N (none if 0) */
154 int delay_ccs; /* delay ChangeCipherSpec */
155 char* delay_cli[MAX_DELAYED_HS]; /* handshake types of messages from
157 uint8_t delay_cli_cnt; /* Number of entries in delay_cli. */
158 char* delay_srv[MAX_DELAYED_HS]; /* handshake types of messages from
160 uint8_t delay_srv_cnt; /* Number of entries in delay_srv. */
184 static void get_options( int argc, char *argv[] ) in get_options() argument