diff options
author | Phil Sutter <phil@nwl.cc> | 2020-11-17 00:57:10 +0100 |
---|---|---|
committer | Phil Sutter <phil@nwl.cc> | 2021-05-17 15:07:22 +0200 |
commit | 556f704458cdb509d395ddb7d2629987d60e762e (patch) | |
tree | 115282e7391fb411e8d0f92b5324b32142efed22 /include/xtables.h | |
parent | eea68ca828b6a757490d91fc87dcac2f15647f40 (diff) |
Use proto_to_name() from xshared in more places
Share the common proto name lookup code. While being at it, make proto
number variable 16bit, values may exceed 256.
This aligns iptables-nft '-p' argument printing with legacy iptables. In
practice, this should make a difference only in corner cases.
Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'include/xtables.h')
-rw-r--r-- | include/xtables.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/xtables.h b/include/xtables.h index df1eaee3..1fd5f63a 100644 --- a/include/xtables.h +++ b/include/xtables.h @@ -395,7 +395,7 @@ struct xtables_rule_match { */ struct xtables_pprot { const char *name; - uint8_t num; + uint16_t num; }; enum xtables_tryload { |