1 .\" Copyright (c) 2002 Mark Santcroos <marks@ripe.net>
3 .\" Redistribution and use in source and binary forms, with or without
4 .\" modification, are permitted provided that the following conditions
6 .\" 1. Redistributions of source code must retain the above copyright
7 .\" notice, this list of conditions and the following disclaimer.
8 .\" 2. Redistributions in binary form must reproduce the above copyright
9 .\" notice, this list of conditions and the following disclaimer in the
10 .\" documentation and/or other materials provided with the distribution.
11 .\" 3. The name of the author may not be used to endorse or promote products
12 .\" derived from this software without specific prior written permission.
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 .Nd device netgraph node type
34 .In netgraph/ng_device.h
38 node is both a netgraph node and a system device interface.
41 node is created, a new device entry appears which is accessible via the
42 regular file operators such as
49 The first node is created as
52 .Pa /dev/ngd1 , /dev/ngd2 ,
57 node has a single hook with an arbitrary name.
58 All data coming in over the hook will be presented to the device
61 All data coming in from the device entry by
63 will be forwarded to the hook.
67 node supports one non-generic control message:
69 .It Dv NGM_DEVICE_GET_DEVNAME
70 Returns device name corresponding to a node.
72 .\" Additionally, the node accepts
74 .\" from the device entry.
75 .\" These will be encapsulated into
77 .\" messages and send out to the hook.
79 This node shuts down upon receipt of a
81 control message, or upon hook disconnection.
82 The associated device entry is removed and becomes available
92 node type was first implemented in
95 .An Mark Santcroos Aq marks@ripe.net
96 .An Gleb Smirnoff Aq glebius@FreeBSD.org