summaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_ip_input.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_ip_input.c
parentad7df741c9173bdd5763a9d95343cb071a7885ff (diff)
Notes
Diffstat (limited to 'sys/netgraph/ng_ip_input.c')
-rw-r--r--sys/netgraph/ng_ip_input.c17
1 files changed, 5 insertions, 12 deletions
diff --git a/sys/netgraph/ng_ip_input.c b/sys/netgraph/ng_ip_input.c
index bb24c6435fcb..24fa660f05e3 100644
--- a/sys/netgraph/ng_ip_input.c
+++ b/sys/netgraph/ng_ip_input.c
@@ -91,18 +91,11 @@ static ng_rcvdata_t ngipi_rcvdata;
static ng_disconnect_t ngipi_disconnect;
static struct ng_type typestruct = {
- NG_ABI_VERSION,
- NG_IP_INPUT_NODE_TYPE,
- NULL, /* modeventhand_t */
- ngipi_cons, /* ng_constructor_t */
- NULL, /* ng_rcvmsg_t */
- NULL, /* ng_shutdown_t */
- NULL, /* ng_newhook_t */
- NULL, /* ng_findhook_t */
- NULL, /* ng_connect_t */
- ngipi_rcvdata, /* ng_rcvdata_t */
- ngipi_disconnect, /* ng_disconnect_t */
- NULL /* ng_cmdlist */
+ .version = NG_ABI_VERSION,
+ .name = NG_IP_INPUT_NODE_TYPE,
+ .constructor = ngipi_cons,
+ .rcvdata = ngipi_rcvdata,
+ .disconnect = ngipi_disconnect,
};
NETGRAPH_INIT(ip_input, &typestruct);