diff options
author | julian <julian@FreeBSD.org> | 2000-04-28 17:43:04 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 2000-04-28 17:43:04 +0000 |
commit | d7f46cd010ca8dcbcfe5bcc1a28e927ed9a5bd48 (patch) | |
tree | decfb908502ccc61255e0c4f33402258b19ef081 /sys/net | |
parent | 3cd4c01f8e8138d9492809fb84e5d94f7e6bf0ba (diff) | |
download | FreeBSD-src-d7f46cd010ca8dcbcfe5bcc1a28e927ed9a5bd48.zip FreeBSD-src-d7f46cd010ca8dcbcfe5bcc1a28e927ed9a5bd48.tar.gz |
OOps forgot to check in this one...
API chage for netgraph.
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_ethersubr.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c index a1a17d1..f7a5158 100644 --- a/sys/net/if_ethersubr.c +++ b/sys/net/if_ethersubr.c @@ -900,8 +900,8 @@ ngether_newhook(node_p node, hook_p hook, const char *name) * Just respond to the generic TEXT_STATUS message */ static int -ngether_rcvmsg(node_p node, - struct ng_mesg *msg, const char *retaddr, struct ng_mesg **resp) +ngether_rcvmsg(node_p node, struct ng_mesg *msg, const char *retaddr, + struct ng_mesg **resp, hook_p lasthook) { struct ifnet *ifp; int error = 0; @@ -965,7 +965,8 @@ ngether_rcvmsg(node_p node, * Queue it for output. */ static int -ngether_rcvdata(hook_p hook, struct mbuf *m, meta_p meta) +ngether_rcvdata(hook_p hook, struct mbuf *m, meta_p meta, + struct mbuf **ret_m, meta_p *ret_meta) { struct ifnet *ifp; int error = 0; |