diff options
author | julian <julian@FreeBSD.org> | 1999-11-01 10:00:40 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 1999-11-01 10:00:40 +0000 |
commit | 3127cac2f7f22981915fe2bcd980775447b99fba (patch) | |
tree | e51cd4a7d79e5013c4c1c3ac7c3d0f44842f89b6 /sys/netgraph/ng_socket.c | |
parent | 244fe162cc15cf5fc410c04d9cea91e1b8dbbf3c (diff) | |
download | FreeBSD-src-3127cac2f7f22981915fe2bcd980775447b99fba.zip FreeBSD-src-3127cac2f7f22981915fe2bcd980775447b99fba.tar.gz |
Add typedefs for node methods
Suggested by phk.
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 b8ba80b..a8cb703 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); |