This enables to send icmp frag-needed messages using reject target. Signed-off-by: Michael Braun <michael-dev@xxxxxxxxxxxxx> --- doc/data-types.txt | 2 ++ src/datatype.c | 1 + 2 files changed, 3 insertions(+) diff --git a/doc/data-types.txt b/doc/data-types.txt index 90e19a8b..a42a55fa 100644 --- a/doc/data-types.txt +++ b/doc/data-types.txt @@ -254,6 +254,8 @@ The ICMP Code type is used to conveniently specify the ICMP header's code field. 2 |port-unreachable| 3 +|frag-needed| +4 |net-prohibited| 9 |host-prohibited| diff --git a/src/datatype.c b/src/datatype.c index b305bf60..7d652ff2 100644 --- a/src/datatype.c +++ b/src/datatype.c @@ -825,6 +825,7 @@ static const struct symbol_table icmp_code_tbl = { SYMBOL("net-prohibited", ICMP_NET_ANO), SYMBOL("host-prohibited", ICMP_HOST_ANO), SYMBOL("admin-prohibited", ICMP_PKT_FILTERED), + SYMBOL("frag-needed", ICMP_FRAG_NEEDED), SYMBOL_LIST_END }, }; -- 2.20.1