Home
last modified time | relevance | path

Searched refs:vxlp_with (Results 1 – 3 of 3) sorted by relevance

/freebsd/sbin/ifconfig/
H A Difvxlan.c162 if ((params.vxlp_with & _LOCAL_ADDR46) == _LOCAL_ADDR46) in vxlan_check_params()
164 if ((params.vxlp_with & _REMOTE_ADDR46) == _REMOTE_ADDR46) in vxlan_check_params()
166 if ((params.vxlp_with & VXLAN_PARAM_WITH_LOCAL_ADDR4 && in vxlan_check_params()
167 params.vxlp_with & VXLAN_PARAM_WITH_REMOTE_ADDR6) || in vxlan_check_params()
168 (params.vxlp_with & VXLAN_PARAM_WITH_LOCAL_ADDR6 && in vxlan_check_params()
169 params.vxlp_with & VXLAN_PARAM_WITH_REMOTE_ADDR4)) in vxlan_check_params()
196 params.vxlp_with |= VXLAN_PARAM_WITH_VNI; in setvxlan_vni()
259 params.vxlp_with |= VXLAN_PARAM_WITH_LOCAL_ADDR4; in setvxlan_local()
262 params.vxlp_with |= VXLAN_PARAM_WITH_LOCAL_ADDR6; in setvxlan_local()
323 params.vxlp_with |= VXLAN_PARAM_WITH_REMOTE_ADDR4; in setvxlan_remote()
[all …]
/freebsd/sys/net/
H A Dif_vxlan.c2981 if (vxlp->vxlp_with & (VXLAN_PARAM_WITH_LOCAL_ADDR4 | in vxlan_set_user_config()
2987 if (vxlp->vxlp_with & (VXLAN_PARAM_WITH_LOCAL_ADDR6 | in vxlan_set_user_config()
2991 if (vxlp->vxlp_with & VXLAN_PARAM_WITH_LOCAL_ADDR6) { in vxlan_set_user_config()
2996 if (vxlp->vxlp_with & VXLAN_PARAM_WITH_REMOTE_ADDR6) { in vxlan_set_user_config()
3004 if (vxlp->vxlp_with & VXLAN_PARAM_WITH_VNI) { in vxlan_set_user_config()
3009 if (vxlp->vxlp_with & VXLAN_PARAM_WITH_LOCAL_ADDR4) { in vxlan_set_user_config()
3014 } else if (vxlp->vxlp_with & VXLAN_PARAM_WITH_LOCAL_ADDR6) { in vxlan_set_user_config()
3021 if (vxlp->vxlp_with & VXLAN_PARAM_WITH_REMOTE_ADDR4) { in vxlan_set_user_config()
3026 } else if (vxlp->vxlp_with & VXLAN_PARAM_WITH_REMOTE_ADDR6) { in vxlan_set_user_config()
3033 if (vxlp->vxlp_with & VXLAN_PARAM_WITH_LOCAL_PORT) in vxlan_set_user_config()
[all …]
H A Dif_vxlan.h62 uint64_t vxlp_with; member