Home | History | Annotate | Download | only in extensions

Lines Matching defs:esp

1 /* Shared library add-on to iptables to add ESP support. */
16 "ESP v%s options:\n"
37 "ESP no valid digits in spi `%s'", spistr);
45 "ESP error parsing spi `%s'", spistr);
67 "Invalid ESP spi range: %s", spistring);
143 const struct ipt_esp *esp = (struct ipt_esp *)match->data;
145 printf("esp ");
146 print_spis("spi", esp->spis[0], esp->spis[1],
147 esp->invflags & IPT_ESP_INV_SPI);
148 if (esp->invflags & ~IPT_ESP_INV_MASK)
150 esp->invflags & ~IPT_ESP_INV_MASK);
174 static struct iptables_match esp = {
176 .name = "esp",
192 register_match(&esp);