aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_split.c
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>2004-05-29 00:51:19 +0000
committerJulian Elischer <julian@FreeBSD.org>2004-05-29 00:51:19 +0000
commitf8aae7776f85d2fa8aa93f73c37782cd9e1204c6 (patch)
tree90dfb9283e4889f34526e006d0e40a59d5312611 /sys/netgraph/ng_split.c
parentad7df741c9173bdd5763a9d95343cb071a7885ff (diff)
Notes
Diffstat (limited to 'sys/netgraph/ng_split.c')
-rw-r--r--sys/netgraph/ng_split.c19
1 files changed, 7 insertions, 12 deletions
diff --git a/sys/netgraph/ng_split.c b/sys/netgraph/ng_split.c
index 359d31017cea..4d45efcb5fb3 100644
--- a/sys/netgraph/ng_split.c
+++ b/sys/netgraph/ng_split.c
@@ -53,18 +53,13 @@ static ng_disconnect_t ng_split_disconnect;
/* Node type descriptor */
static struct ng_type typestruct = {
- NG_ABI_VERSION,
- NG_SPLIT_NODE_TYPE,
- NULL,
- ng_split_constructor,
- NULL,
- ng_split_shutdown,
- ng_split_newhook,
- NULL,
- NULL,
- ng_split_rcvdata,
- ng_split_disconnect,
- NULL
+ .version = NG_ABI_VERSION,
+ .name = NG_SPLIT_NODE_TYPE,
+ .constructor = ng_split_constructor,
+ .shutdown = ng_split_shutdown,
+ .newhook = ng_split_newhook,
+ .rcvdata = ng_split_rcvdata,
+ .disconnect = ng_split_disconnect,
};
NETGRAPH_INIT(ng_split, &typestruct);