Symbol: GRE_UDPENCAP
sbin/ifconfig/ifgre.c
123
DEF_CMD("udpencap", GRE_UDPENCAP, setifgreopts),
sbin/ifconfig/ifgre.c
124
DEF_CMD("-udpencap",-GRE_UDPENCAP, setifgreopts),
sys/net/if_gre.c
1129
opt |= GRE_UDPENCAP;
sys/net/if_gre.c
1131
opt &= ~GRE_UDPENCAP;
sys/net/if_gre.c
342
sc->gre_options & GRE_UDPENCAP ? IFLA_TUNNEL_GRE_UDP : IFLA_TUNNEL_NONE);
sys/net/if_gre.c
458
if ((sc->gre_options & GRE_UDPENCAP) == 0) {
sys/net/if_gre.c
695
MPASS(sc->gre_options & GRE_UDPENCAP);
sys/net/if_gre.c
877
if ((sc->gre_options & GRE_UDPENCAP) == 0 || sc->gre_port != 0)
sys/net/if_gre.c
986
if (sc->gre_options & GRE_UDPENCAP) {
sys/net/if_gre.h
183
#define GRE_OPTMASK (GRE_ENABLE_CSUM|GRE_ENABLE_SEQ|GRE_UDPENCAP)
sys/netinet/ip_gre.c
133
(sc->gre_options & GRE_UDPENCAP) == (opts & GRE_UDPENCAP))
sys/netinet/ip_gre.c
136
if (opts & GRE_UDPENCAP) {
sys/netinet/ip_gre.c
354
if (sc->gre_options & GRE_UDPENCAP) {
sys/netinet/ip_gre.c
375
if (sc->gre_options & GRE_UDPENCAP) {
sys/netinet/ip_gre.c
406
(sc->gre_options & GRE_UDPENCAP) != (value & GRE_UDPENCAP) &&
sys/netinet6/ip6_gre.c
124
(sc->gre_options & GRE_UDPENCAP) == (opts & GRE_UDPENCAP))
sys/netinet6/ip6_gre.c
127
if (opts & GRE_UDPENCAP) {
sys/netinet6/ip6_gre.c
357
if (sc->gre_options & GRE_UDPENCAP) {
sys/netinet6/ip6_gre.c
376
if (sc->gre_options & GRE_UDPENCAP) {
sys/netinet6/ip6_gre.c
404
(sc->gre_options & GRE_UDPENCAP) != (value & GRE_UDPENCAP) &&
tests/sys/netlink/test_rtnl_gre.c
148
ATF_CHECK_INTEQ(attrs.ifla_flags, (GRE_ENABLE_SEQ | GRE_ENABLE_CSUM | GRE_UDPENCAP));