Home
last modified time | relevance | path

Searched refs:set_tcpopt (Results 1 – 1 of 1) sorted by relevance

/freebsd/sbin/ipf/iplang/
H A Diplang_y.y107 void set_tcpopt(int, char **);
333 tcpopt: IL_TCPO_NOP ';' { set_tcpopt(IL_TCPO_NOP, NULL); }
334 | IL_TCPO_EOL ';' { set_tcpopt(IL_TCPO_EOL, NULL); }
335 | IL_TCPO_MSS optoken { set_tcpopt(IL_TCPO_MSS,&$2);}
336 | IL_TCPO_WSCALE optoken { set_tcpopt(IL_TCPO_WSCALE,&$2);}
337 | IL_TCPO_TS optoken { set_tcpopt(IL_TCPO_TS, &$2);}
1068 void set_tcpopt(int state, char **arg) in set_tcpopt() function