Back out last. To compile, it depends on changes that I am not

ready to commit, yet.
This commit is contained in:
dyoung 2007-04-25 20:40:20 +00:00
parent 3af169362e
commit 60ead1a452
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: in6_offload.c,v 1.2 2007/04/25 00:24:05 dyoung Exp $ */
/* $NetBSD: in6_offload.c,v 1.3 2007/04/25 20:40:20 dyoung Exp $ */
/*-
* Copyright (c)2006 YAMAMOTO Takashi,
@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: in6_offload.c,v 1.2 2007/04/25 00:24:05 dyoung Exp $");
__KERNEL_RCSID(0, "$NetBSD: in6_offload.c,v 1.3 2007/04/25 20:40:20 dyoung Exp $");
#include <sys/param.h>
#include <sys/mbuf.h>
@ -45,7 +45,7 @@ __KERNEL_RCSID(0, "$NetBSD: in6_offload.c,v 1.2 2007/04/25 00:24:05 dyoung Exp $
struct ip6_tso_output_args {
struct ifnet *ifp;
struct ifnet *origifp;
const struct sockaddr_in6 *dst;
struct sockaddr_in6 *dst;
struct rtentry *rt;
};
@ -61,7 +61,7 @@ ip6_tso_output_callback(void *vp, struct mbuf *m)
int
ip6_tso_output(struct ifnet *ifp, struct ifnet *origifp, struct mbuf *m,
const struct sockaddr_in6 *dst, struct rtentry *rt)
struct sockaddr_in6 *dst, struct rtentry *rt)
{
struct ip6_tso_output_args args;

View File

@ -1,4 +1,4 @@
/* $NetBSD: in6_offload.h,v 1.3 2007/04/25 00:24:05 dyoung Exp $ */
/* $NetBSD: in6_offload.h,v 1.4 2007/04/25 20:40:20 dyoung Exp $ */
/*-
* Copyright (c)2005, 2006 YAMAMOTO Takashi,
@ -35,6 +35,6 @@
int tcp6_segment(struct mbuf *, int (*)(void *, struct mbuf *), void *);
int ip6_tso_output(struct ifnet *, struct ifnet *, struct mbuf *,
const struct sockaddr_in6 *, struct rtentry *);
struct sockaddr_in6 *, struct rtentry *);
#endif /* !defined(_NETINET6_IN6_OFFLOAD_H_) */