aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_split.h
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2001-07-24 23:33:06 +0000
committerBrooks Davis <brooks@FreeBSD.org>2001-07-24 23:33:06 +0000
commitbb5c977fbd613b88a49366f420c678c304adbebe (patch)
treee513f46d7c96833d578ce76fe301a870e67dcf05 /sys/netgraph/ng_split.h
parent2997c5e24ace94d19994cadc95a826ef5cb9ed22 (diff)
downloadsrc-bb5c977fbd613b88a49366f420c678c304adbebe.tar.gz
src-bb5c977fbd613b88a49366f420c678c304adbebe.zip
General cleanup providing better style(9) conformance and generally
improved readability. The two real functional changes are that netgraph now sees this as the "split" node type rather then the "ng_split" node type and that meta data is passed through without processing rather then being dropped. Reviewed by: jhb, julian MFC after: 7 weeks
Notes
Notes: svn path=/head/; revision=80304
Diffstat (limited to 'sys/netgraph/ng_split.h')
-rw-r--r--sys/netgraph/ng_split.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/netgraph/ng_split.h b/sys/netgraph/ng_split.h
index a8b66d5c6d53..0b932bc2471a 100644
--- a/sys/netgraph/ng_split.h
+++ b/sys/netgraph/ng_split.h
@@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD$
*
*/
@@ -34,12 +34,12 @@
#define _NG_SPLIT_H
/* Node type name and magic cookie */
-#define NG_SPLIT_NODE_TYPE "ng_split"
-#define NGM_NG_SPLIT_COOKIE 949409402
+#define NG_SPLIT_NODE_TYPE "split"
+#define NGM_NG_SPLIT_COOKIE 949409402
/* My hook names */
-#define NG_SPLIT_HOOK_MIXED "mixed" /* Mixed stream (in/out) */
-#define NG_SPLIT_HOOK_OUTHOOK "out" /* Output to outhook (sending out) */
-#define NG_SPLIT_HOOK_INHOOK "in" /* Input from inhook (recieving) */
+#define NG_SPLIT_HOOK_MIXED "mixed" /* Mixed stream (in/out) */
+#define NG_SPLIT_HOOK_OUT "out" /* Output to outhook (sending out) */
+#define NG_SPLIT_HOOK_IN "in" /* Input from inhook (recieving) */
#endif /* _NG_SPLIT_H */