Lines Matching full:tcp_optionmap
20 struct tcp_optionmap {
30 static const struct tcp_optionmap tcp_optionmap[] = {
42 const struct tcp_optionmap *w;
51 for (w = tcp_optionmap; w->name != NULL; ++w)
68 for (i = 0; tcp_optionmap[i].name != NULL; ++i)
69 if (strcmp(tcp_optionmap[i].name, arg) == 0) {
70 option = tcp_optionmap[i].option;
119 for (j = 0; tcp_optionmap[j].name != NULL; ++j)
120 if (tcp_optionmap[j].option == i)
121 name = tcp_optionmap[j].name;