ng_device (4)
Leading comments
Copyright (c) 2002 Mark Santcroos <marks@ripe.net> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other m...
NAME
ng_device - device netgraph node typeSYNOPSIS
In netgraph/ng_device.hDESCRIPTION
A device node is both a netgraph node and a system device interface. When a device node is created, a new device entry appears which is accessible via the regular file operators such as open(2), close(2), read(2), write(2), etc.The first node is created as /dev/ngd0 all subsequent nodes /dev/ngd1 , /dev/ngd2 etc.
HOOKS
A device node has a single hook with an arbitrary name. All data coming in over the hook will be presented to the device for read(2). All data coming in from the device entry by write(2) will be forwarded to the hook.CONTROL MESSAGES
The device node supports one non-generic control message:- NGM_DEVICE_GET_DEVNAME
- Returns device name corresponding to a node.