Searched refs:tcpflags (Results 1 – 11 of 11) sorted by relevance
123 if (proto->tcpflags & TCPFLAG_BUFSIZ) { in relay_udp_socket()137 if (proto->tcpflags & TCPFLAG_IPTTL) { in relay_udp_socket()152 if (proto->tcpflags & TCPFLAG_IPMINTTL) { in relay_udp_socket()
1077 p->tcpflags = TCPFLAG_DEFAULT;1138 } tcpflags1183 tcpflags_l : tcpflags comma tcpflags_l1184 | tcpflags1187 tcpflags : SACK { proto->tcpflags |= TCPFLAG_SACK; }1188 | NO SACK { proto->tcpflags |= TCPFLAG_NSACK; }1189 | NODELAY { proto->tcpflags |= TCPFLAG_NODELAY; }1190 | NO NODELAY { proto->tcpflags |= TCPFLAG_NNODELAY; }1192 | NO SPLICE { proto->tcpflags |= TCPFLAG_NSPLICE; }1201 proto->tcpflags |= TCPFLAG_BUFSIZ;[all …]
277 if (proto->tcpflags) in relay_protodebug()279 printb_flags(proto->tcpflags, TCPFLAG_BITS)); in relay_protodebug()565 if (proto->tcpflags & TCPFLAG_BUFSIZ) { in relay_socket()579 if (proto->tcpflags & TCPFLAG_IPTTL) { in relay_socket()594 if (proto->tcpflags & TCPFLAG_IPMINTTL) { in relay_socket()613 if (proto->tcpflags & (TCPFLAG_NODELAY|TCPFLAG_NNODELAY)) { in relay_socket()614 if (proto->tcpflags & TCPFLAG_NNODELAY) in relay_socket()622 if (proto->tcpflags & (TCPFLAG_SACK|TCPFLAG_NSACK)) { in relay_socket()623 if (proto->tcpflags & TCPFLAG_NSACK) in relay_socket()929 (proto->tcpflags & TCPFLAG_NSPLICE)) in relay_splice()
733 u_int8_t tcpflags; member
104 env->sc_proto_default.tcpflags = TCPFLAG_DEFAULT; in config_init()
663 if (srv_conf->tcpflags & TCPFLAG_BUFSIZ) { in server_socket()677 if (srv_conf->tcpflags & TCPFLAG_IPTTL) { in server_socket()692 if (srv_conf->tcpflags & TCPFLAG_IPMINTTL) { in server_socket()711 if (srv_conf->tcpflags & (TCPFLAG_NODELAY|TCPFLAG_NNODELAY)) { in server_socket()712 if (srv_conf->tcpflags & TCPFLAG_NNODELAY) in server_socket()720 if (srv_conf->tcpflags & (TCPFLAG_SACK|TCPFLAG_NSACK)) { in server_socket()721 if (srv_conf->tcpflags & TCPFLAG_NSACK) in server_socket()
1230 | TCP tcpflags1233 tcpflags_l : tcpflags optcommanl tcpflags_l1234 | tcpflags optnl1237 tcpflags : SACK { srv_conf->tcpflags |= TCPFLAG_SACK; }1238 | NO SACK { srv_conf->tcpflags |= TCPFLAG_NSACK; }1240 srv_conf->tcpflags |= TCPFLAG_NODELAY;1243 srv_conf->tcpflags |= TCPFLAG_NNODELAY;1253 srv_conf->tcpflags |= TCPFLAG_BUFSIZ;1266 srv_conf->tcpflags |= TCPFLAG_IPTTL;1269 srv_conf->tcpflags |= TCPFLAG_IPMINTTL;
518 uint8_t tcpflags; member
84 const char *tcpflags = "FSRPAUEW"; variable415 for (i = 0; tcpflags[i]; ++i) in print_flags()417 printf("%c", tcpflags[i]); in print_flags()1279 if ((q = strchr(tcpflags, *p)) == NULL) in parse_flags()1282 f |= 1 << (q - tcpflags); in parse_flags()
1288 const char *tcpflags = "FSRPAUEW"; in tb_print_flags() local1291 for (i = 0; tcpflags[i]; ++i) in tb_print_flags()1293 tbprintf("%c", tcpflags[i]); in tb_print_flags()
293 tcpflags { yylval.i = 13; return NUM; }