summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_split.h
diff options
context:
space:
mode:
authorbrooks <brooks@FreeBSD.org>2001-07-24 23:33:06 +0000
committerbrooks <brooks@FreeBSD.org>2001-07-24 23:33:06 +0000
commit1243774efe4cb1c64ca7542ddfa0545381a4f9c4 (patch)
treee513f46d7c96833d578ce76fe301a870e67dcf05 /sys/netgraph/ng_split.h
parent011916b27558368a732538dac4c5a74cdc14fa1a (diff)
downloadFreeBSD-src-1243774efe4cb1c64ca7542ddfa0545381a4f9c4.zip
FreeBSD-src-1243774efe4cb1c64ca7542ddfa0545381a4f9c4.tar.gz
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
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 a8b66d5..0b932bc 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 */
OpenPOWER on IntegriCloud