summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_sample.c
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>1999-11-01 10:00:40 +0000
committerjulian <julian@FreeBSD.org>1999-11-01 10:00:40 +0000
commit3127cac2f7f22981915fe2bcd980775447b99fba (patch)
treee51cd4a7d79e5013c4c1c3ac7c3d0f44842f89b6 /sys/netgraph/ng_sample.c
parent244fe162cc15cf5fc410c04d9cea91e1b8dbbf3c (diff)
downloadFreeBSD-src-3127cac2f7f22981915fe2bcd980775447b99fba.zip
FreeBSD-src-3127cac2f7f22981915fe2bcd980775447b99fba.tar.gz
Add typedefs for node methods
Suggested by phk.
Diffstat (limited to 'sys/netgraph/ng_sample.c')
-rw-r--r--sys/netgraph/ng_sample.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/sys/netgraph/ng_sample.c b/sys/netgraph/ng_sample.c
index 3376ad7..6cc365c 100644
--- a/sys/netgraph/ng_sample.c
+++ b/sys/netgraph/ng_sample.c
@@ -37,7 +37,7 @@
* Author: Julian Elischer <julian@whistle.com>
*
* $FreeBSD$
- * $Whistle: ng_sample.c,v 1.11 1999/01/28 23:54:54 julian Exp $
+ * $Whistle: ng_sample.c,v 1.13 1999/11/01 09:24:52 julian Exp $
*/
#include <sys/param.h>
@@ -57,15 +57,14 @@
* sample node. These methods define the netgraph 'type'.
*/
-static int ng_xxx_constructor(node_p *node);
-static int ng_xxx_rcvmsg(node_p node, struct ng_mesg *msg,
- const char *retaddr, struct ng_mesg **resp);
-static int ng_xxx_rmnode(node_p node);
-static int ng_xxx_newhook(node_p node, hook_p hook, const char *name);
-static int ng_xxx_connect(hook_p hook);
-static int ng_xxx_rcvdata(hook_p hook, struct mbuf *m, meta_p meta);
-static int ng_xxx_rcvdataq(hook_p hook, struct mbuf *m, meta_p meta);
-static int ng_xxx_disconnect(hook_p hook);
+static ng_constructor_t ng_xxx_constructor;
+static ng_rcvmsg_t ng_xxx_rcvmsg;
+static ng_shutdown_t ng_xxx_rmnode;
+static ng_newhook_t ng_xxx_newhook;
+static ng_connect_t ng_xxx_connect;
+static ng_rcvdata_t ng_xxx_rcvdata; /* note these are both ng_rcvdata_t */
+static ng_rcvdata_t ng_xxx_rcvdataq; /* note these are both ng_rcvdata_t */
+static ng_disconnect_t ng_xxx_disconnect;
/* Netgraph node type descriptor */
static struct ng_type typestruct = {
OpenPOWER on IntegriCloud