HomeSort by relevance Sort by last modified time
    Searched full:tcp_flag_names (Results 1 - 1 of 1) sorted by null

  /external/iptables/extensions/
libxt_tcp.c 63 struct tcp_flag_names { struct
68 static const struct tcp_flag_names tcp_flag_names[] variable in typeref:struct:tcp_flag_names
90 for (i = 0; i < ARRAY_SIZE(tcp_flag_names); ++i)
91 if (strcasecmp(tcp_flag_names[i].name, ptr) == 0) {
92 ret |= tcp_flag_names[i].flag;
95 if (i == ARRAY_SIZE(tcp_flag_names))
268 for (i = 0; (flags & tcp_flag_names[i].flag) == 0; i++);
272 printf("%s", tcp_flag_names[i].name);
275 flags &= ~tcp_flag_names[i].flag
    [all...]

Completed in 725 milliseconds