aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_tee.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_tee.c
parentad7df741c9173bdd5763a9d95343cb071a7885ff (diff)
Notes
Diffstat (limited to 'sys/netgraph/ng_tee.c')
-rw-r--r--sys/netgraph/ng_tee.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/sys/netgraph/ng_tee.c b/sys/netgraph/ng_tee.c
index fbce9b87f46af..1f6fb9a573865 100644
--- a/sys/netgraph/ng_tee.c
+++ b/sys/netgraph/ng_tee.c
@@ -128,18 +128,15 @@ static const struct ng_cmdlist ng_tee_cmds[] = {
/* Netgraph type descriptor */
static struct ng_type ng_tee_typestruct = {
- NG_ABI_VERSION,
- NG_TEE_NODE_TYPE,
- NULL,
- ngt_constructor,
- ngt_rcvmsg,
- ngt_shutdown,
- ngt_newhook,
- NULL,
- NULL,
- ngt_rcvdata,
- ngt_disconnect,
- ng_tee_cmds
+ .version = NG_ABI_VERSION,
+ .name = NG_TEE_NODE_TYPE,
+ .constructor = ngt_constructor,
+ .rcvmsg = ngt_rcvmsg,
+ .shutdown = ngt_shutdown,
+ .newhook = ngt_newhook,
+ .rcvdata = ngt_rcvdata,
+ .disconnect = ngt_disconnect,
+ .cmdlist = ng_tee_cmds,
};
NETGRAPH_INIT(tee, &ng_tee_typestruct);