diff options
| author | Julian Elischer <julian@FreeBSD.org> | 1999-11-01 10:00:40 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 1999-11-01 10:00:40 +0000 |
| commit | 74f5c6aa25752d28460c90aefa625ec0f75e3505 (patch) | |
| tree | e51cd4a7d79e5013c4c1c3ac7c3d0f44842f89b6 /sys/netgraph/ng_socket.c | |
| parent | 79fe5b7c351088d23d8bc1a5de542f37b8ef1327 (diff) | |
Notes
Diffstat (limited to 'sys/netgraph/ng_socket.c')
| -rw-r--r-- | sys/netgraph/ng_socket.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/sys/netgraph/ng_socket.c b/sys/netgraph/ng_socket.c index b8ba80bad6f7a..a8cb7032b1401 100644 --- a/sys/netgraph/ng_socket.c +++ b/sys/netgraph/ng_socket.c @@ -37,7 +37,7 @@ * Author: Julian Elischer <julian@whistle.com> * * $FreeBSD$ - * $Whistle: ng_socket.c,v 1.25 1999/01/28 23:54:54 julian Exp $ + * $Whistle: ng_socket.c,v 1.28 1999/11/01 09:24:52 julian Exp $ */ /* @@ -98,12 +98,11 @@ */ /* Netgraph node methods */ -static int ngs_constructor(node_p *nodep); -static int ngs_rcvmsg(node_p node, struct ng_mesg *msg, - const char *retaddr, struct ng_mesg **resp); -static int ngs_rmnode(node_p node); -static int ngs_newhook(node_p node, hook_p hook, const char *name); -static int ngs_rcvdata(hook_p hook, struct mbuf *m, meta_p meta); +static ng_constructor_t ngs_constructor; +static ng_rcvmsg_t ngs_rcvmsg; +static ng_shutdown_t ngs_rmnode; +static ng_newhook_t ngs_newhook; +static ng_rcvdata_t ngs_rcvdata; /* Internal methods */ static int ng_attach_data(struct socket *so); |
