XFRM: Mobility header support.
Signed-off-by: Masahide NAKAMURA <nakam@linux-ipv6.org> Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
This commit is contained in:
parent
c54f31eeb3
commit
0bf0fbc47e
|
|
@ -483,6 +483,14 @@ void xfrm_selector_print(struct xfrm_selector *sel, __u16 family,
|
||||||
if (sel->dport_mask)
|
if (sel->dport_mask)
|
||||||
fprintf(fp, "code %u ", ntohs(sel->dport));
|
fprintf(fp, "code %u ", ntohs(sel->dport));
|
||||||
break;
|
break;
|
||||||
|
case IPPROTO_MH:
|
||||||
|
if (sel->sport_mask)
|
||||||
|
fprintf(fp, "type %u ", ntohs(sel->sport));
|
||||||
|
if (sel->dport_mask) {
|
||||||
|
if (show_stats > 0)
|
||||||
|
fprintf(fp, "(dport) 0x%.4x ", sel->dport);
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sel->ifindex > 0) {
|
if (sel->ifindex > 0) {
|
||||||
|
|
@ -1111,6 +1119,7 @@ static int xfrm_selector_upspec_parse(struct xfrm_selector *sel,
|
||||||
switch (sel->proto) {
|
switch (sel->proto) {
|
||||||
case IPPROTO_ICMP:
|
case IPPROTO_ICMP:
|
||||||
case IPPROTO_ICMPV6:
|
case IPPROTO_ICMPV6:
|
||||||
|
case IPPROTO_MH:
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
fprintf(stderr, "\"type\" and \"code\" are invalid with proto=%s\n", strxf_proto(sel->proto));
|
fprintf(stderr, "\"type\" and \"code\" are invalid with proto=%s\n", strxf_proto(sel->proto));
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,9 @@
|
||||||
#ifndef IPPPROTO_DCCP
|
#ifndef IPPPROTO_DCCP
|
||||||
# define IPPROTO_DCCP 33
|
# define IPPROTO_DCCP 33
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef IPPROTO_MH
|
||||||
|
# define IPPROTO_MH 135
|
||||||
|
#endif
|
||||||
|
|
||||||
#define XFRMS_RTA(x) ((struct rtattr*)(((char*)(x)) + NLMSG_ALIGN(sizeof(struct xfrm_usersa_info))))
|
#define XFRMS_RTA(x) ((struct rtattr*)(((char*)(x)) + NLMSG_ALIGN(sizeof(struct xfrm_usersa_info))))
|
||||||
#define XFRMS_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct xfrm_usersa_info))
|
#define XFRMS_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct xfrm_usersa_info))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue