Home | History | Annotate | Download | only in extensions

Lines Matching refs:reject

1 /* Shared library add-on to ip6tables to add customized REJECT support.
46 printf("Valid reject types:\n");
58 "REJECT target options:\n"
59 "--reject-with type drop input packet and send back\n"
66 {.name = "reject-with", .id = O_REJECT_WITH, .type = XTTYPE_STRING},
72 struct ip6t_reject_info *reject = (struct ip6t_reject_info *)t->data;
75 reject->with = IP6T_ICMP6_PORT_UNREACH;
81 struct ip6t_reject_info *reject = cb->data;
90 reject->with = reject_table[i].with;
94 "unknown reject type \"%s\"", cb->arg);
100 const struct ip6t_reject_info *reject
105 if (reject_table[i].with == reject->with)
107 printf(" reject-with %s", reject_table[i].name);
112 const struct ip6t_reject_info *reject
117 if (reject_table[i].with == reject->with)
120 printf(" --reject-with %s", reject_table[i].name);
124 .name = "REJECT",