From: Philippe Guibert Date: Mon, 4 Jun 2018 16:13:00 +0000 (+0200) Subject: bgpd: add comment to inform that icmp can be stored in that struct X-Git-Tag: frr-6.1-dev~217^2~24 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=3b0c3697a3a749fb0a5cf2fa947761d001387830;p=matthieu%2Ffrr.git bgpd: add comment to inform that icmp can be stored in that struct Generic ipset entry structure will be reused to host icmp information. Signed-off-by: Philippe Guibert --- diff --git a/zebra/zebra_pbr.h b/zebra/zebra_pbr.h index c9c191581d..71b5c4cd5a 100644 --- a/zebra/zebra_pbr.h +++ b/zebra/zebra_pbr.h @@ -91,8 +91,10 @@ struct zebra_pbr_ipset_entry { struct prefix src; struct prefix dst; + /* udp/tcp src port or icmp type */ uint16_t src_port_min; uint16_t src_port_max; + /* udp/tcp dst port or icmp code */ uint16_t dst_port_min; uint16_t dst_port_max;