diff options
author | Kip Macy <kmacy@FreeBSD.org> | 2009-04-16 20:30:28 +0000 |
---|---|---|
committer | Kip Macy <kmacy@FreeBSD.org> | 2009-04-16 20:30:28 +0000 |
commit | 279aa3d419d5bfaf514ed543ab177852e4c2b013 (patch) | |
tree | f09ffe8dbc619e723cdaebdc910a5ed28f73768b /sys/net/iso88025.h | |
parent | fe6939906918258e6c2cf78df5f5f14d893ec1a0 (diff) | |
download | src-279aa3d419d5bfaf514ed543ab177852e4c2b013.tar.gz src-279aa3d419d5bfaf514ed543ab177852e4c2b013.zip |
Change if_output to take a struct route as its fourth argument in order
to allow passing a cached struct llentry * down to L2
Reviewed by: rwatson
Notes
Notes:
svn path=/head/; revision=191148
Diffstat (limited to 'sys/net/iso88025.h')
-rw-r--r-- | sys/net/iso88025.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/iso88025.h b/sys/net/iso88025.h index cb10874ebc11..b42162bb2664 100644 --- a/sys/net/iso88025.h +++ b/sys/net/iso88025.h @@ -166,7 +166,7 @@ void iso88025_ifattach (struct ifnet *, const u_int8_t *, int); void iso88025_ifdetach (struct ifnet *, int); int iso88025_ioctl (struct ifnet *, int , caddr_t ); int iso88025_output (struct ifnet *, struct mbuf *, struct sockaddr *, - struct rtentry *); + struct route *); void iso88025_input (struct ifnet *, struct mbuf *); #endif |