Deleted Added
full compact
0a1,3
> /* $FreeBSD: head/sys/netinet6/dest6.c 62587 2000-07-04 16:35:15Z itojun $ */
> /* $KAME: dest6.c,v 1.12 2000/05/05 11:00:57 sumikawa Exp $ */
>
28,29d30
< *
< * $FreeBSD: head/sys/netinet6/dest6.c 59760 2000-04-29 15:36:14Z phk $
31a33,35
> #include "opt_inet.h"
> #include "opt_inet6.h"
>
46c50
< #include <netinet6/ip6.h>
---
> #include <netinet/ip6.h>
48c52
< #include <netinet6/icmp6.h>
---
> #include <netinet/icmp6.h>
63a68
> #ifndef PULLDOWN_TEST
65a71,75
> #else
> IP6_EXTHDR_GET(dstopts, struct ip6_dest *, m, off, sizeof(*dstopts));
> if (dstopts == NULL)
> return IPPROTO_DONE;
> #endif
67a78
> #ifndef PULLDOWN_TEST
69a81,85
> #else
> IP6_EXTHDR_GET(dstopts, struct ip6_dest *, m, off, dstoptlen);
> if (dstopts == NULL)
> return IPPROTO_DONE;
> #endif