aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_ppp.c
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>1999-11-01 10:00:40 +0000
committerJulian Elischer <julian@FreeBSD.org>1999-11-01 10:00:40 +0000
commit74f5c6aa25752d28460c90aefa625ec0f75e3505 (patch)
treee51cd4a7d79e5013c4c1c3ac7c3d0f44842f89b6 /sys/netgraph/ng_ppp.c
parent79fe5b7c351088d23d8bc1a5de542f37b8ef1327 (diff)
downloadsrc-74f5c6aa25752d28460c90aefa625ec0f75e3505.tar.gz
src-74f5c6aa25752d28460c90aefa625ec0f75e3505.zip
Add typedefs for node methods
Suggested by phk.
Notes
Notes: svn path=/head/; revision=52752
Diffstat (limited to 'sys/netgraph/ng_ppp.c')
-rw-r--r--sys/netgraph/ng_ppp.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/sys/netgraph/ng_ppp.c b/sys/netgraph/ng_ppp.c
index 9dd27525843b..d24c4966b46a 100644
--- a/sys/netgraph/ng_ppp.c
+++ b/sys/netgraph/ng_ppp.c
@@ -37,7 +37,7 @@
* Author: Archie Cobbs <archie@whistle.com>
*
* $FreeBSD$
- * $Whistle: ng_ppp.c,v 1.22 1999/01/28 23:54:53 julian Exp $
+ * $Whistle: ng_ppp.c,v 1.24 1999/11/01 09:24:52 julian Exp $
*/
/*
@@ -179,13 +179,12 @@ struct private {
typedef struct private *priv_p;
/* Netgraph node methods */
-static int ng_ppp_constructor(node_p *nodep);
-static int ng_ppp_rcvmsg(node_p node, struct ng_mesg *msg,
- const char *retaddr, struct ng_mesg **resp);
-static int ng_ppp_rmnode(node_p node);
-static int ng_ppp_newhook(node_p node, hook_p hook, const char *name);
-static int ng_ppp_rcvdata(hook_p hook, struct mbuf *m, meta_p meta);
-static int ng_ppp_disconnect(hook_p hook);
+static ng_constructor_t ng_ppp_constructor;
+static ng_rcvmsg_t ng_ppp_rcvmsg;
+static ng_shutdown_t ng_ppp_rmnode;
+static ng_newhook_t ng_ppp_newhook;
+static ng_rcvdata_t ng_ppp_rcvdata;
+static ng_disconnect_t ng_ppp_disconnect;
/* Helper functions */
static int ng_ppp_input(node_p node, int ln, struct mbuf *m, meta_p meta);