Deleted Added
full compact
1c1
< /* $FreeBSD: head/sys/netipsec/ipsec_input.c 266800 2014-05-28 12:45:27Z vanhu $ */
---
> /* $FreeBSD: head/sys/netipsec/ipsec_input.c 269699 2014-08-08 01:57:15Z kevlo $ */
257,258c257,258
< void
< ah4_input(struct mbuf *m, int off)
---
> int
> ah4_input(struct mbuf **mp, int *offp, int proto)
259a260,266
> struct mbuf *m;
> int off;
>
> m = *mp;
> off = *offp;
> *mp = NULL;
>
260a268
> return (IPPROTO_DONE);
270,271c278,279
< void
< esp4_input(struct mbuf *m, int off)
---
> int
> esp4_input(struct mbuf **mp, int *offp, int proto)
272a281,287
> struct mbuf *m;
> int off;
>
> m = *mp;
> off = *offp;
> mp = NULL;
>
273a289
> return (IPPROTO_DONE);
274a291
>
283,284c300,301
< void
< ipcomp4_input(struct mbuf *m, int off)
---
> int
> ipcomp4_input(struct mbuf **mp, int *offp, int proto)
285a303,309
> struct mbuf *m;
> int off;
>
> m = *mp;
> off = *offp;
> mp = NULL;
>
286a311
> return (IPPROTO_DONE);