Date: Thu, 25 Dec 2008 07:34:14 +0000 (UTC) From: Julian Elischer <julian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r186486 - in head: share/man/man4 sys/conf sys/modules/netgraph Message-ID: <200812250734.mBP7YEDS006672@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: julian Date: Thu Dec 25 07:34:14 2008 New Revision: 186486 URL: http://svn.freebsd.org/changeset/base/186486 Log: Hook up the ether_echo node and fix the man page Modified: head/share/man/man4/Makefile head/share/man/man4/ng_ether_echo.4 head/sys/conf/files head/sys/conf/options head/sys/modules/netgraph/Makefile Modified: head/share/man/man4/Makefile ============================================================================== --- head/share/man/man4/Makefile Thu Dec 25 06:44:19 2008 (r186485) +++ head/share/man/man4/Makefile Thu Dec 25 07:34:14 2008 (r186486) @@ -228,6 +228,7 @@ MAN= aac.4 \ ng_eiface.4 \ ng_etf.4 \ ng_ether.4 \ + ng_ether_echo.4 \ ng_fec.4 \ ng_frame_relay.4 \ ng_gif.4 \ Modified: head/share/man/man4/ng_ether_echo.4 ============================================================================== --- head/share/man/man4/ng_ether_echo.4 Thu Dec 25 06:44:19 2008 (r186485) +++ head/share/man/man4/ng_ether_echo.4 Thu Dec 25 07:34:14 2008 (r186486) @@ -48,7 +48,7 @@ The .Nm ether_echo node type reflects all data and control messages back to the sender. It assumes (and does not check) that the packet is an ethernet frame, -and swaps teh source and destination addresses before echoing it. +and swaps the source and destination addresses before echoing it. This node type is used for testing and debugging. .Sh HOOKS A Modified: head/sys/conf/files ============================================================================== --- head/sys/conf/files Thu Dec 25 06:44:19 2008 (r186485) +++ head/sys/conf/files Thu Dec 25 07:34:14 2008 (r186486) @@ -2287,6 +2287,7 @@ netgraph/ng_device.c optional netgraph_ netgraph/ng_echo.c optional netgraph_echo netgraph/ng_eiface.c optional netgraph_eiface netgraph/ng_ether.c optional netgraph_ether +netgraph/ng_ether_echo.c optional netgraph_ether_echo netgraph/ng_fec.c optional netgraph_fec netgraph/ng_frame_relay.c optional netgraph_frame_relay netgraph/ng_gif.c optional netgraph_gif Modified: head/sys/conf/options ============================================================================== --- head/sys/conf/options Thu Dec 25 06:44:19 2008 (r186485) +++ head/sys/conf/options Thu Dec 25 07:34:14 2008 (r186486) @@ -459,6 +459,7 @@ NETGRAPH_DEVICE opt_netgraph.h NETGRAPH_ECHO opt_netgraph.h NETGRAPH_EIFACE opt_netgraph.h NETGRAPH_ETHER opt_netgraph.h +NETGRAPH_ETHER_ECHO opt_netgraph.h NETGRAPH_FEC opt_netgraph.h NETGRAPH_FRAME_RELAY opt_netgraph.h NETGRAPH_GIF opt_netgraph.h Modified: head/sys/modules/netgraph/Makefile ============================================================================== --- head/sys/modules/netgraph/Makefile Thu Dec 25 06:44:19 2008 (r186485) +++ head/sys/modules/netgraph/Makefile Thu Dec 25 07:34:14 2008 (r186486) @@ -17,6 +17,7 @@ SUBDIR= async \ eiface \ etf \ ether \ + ether_echo \ fec \ frame_relay \ gif \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812250734.mBP7YEDS006672>