aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/ip_flow.c
diff options
context:
space:
mode:
authorPierre Beyssac <pb@FreeBSD.org>1998-05-19 15:53:50 +0000
committerPierre Beyssac <pb@FreeBSD.org>1998-05-19 15:53:50 +0000
commit4c711e6d0438ab8e6bd4bc582ca8fa3c0e6fb378 (patch)
treeab550b7af0b43a170db70836edd200042af24111 /sys/netinet/ip_flow.c
parentcc3205c24d4ecb1316b2897a1286b0b33585880d (diff)
downloadsrc-4c711e6d0438ab8e6bd4bc582ca8fa3c0e6fb378.tar.gz
src-4c711e6d0438ab8e6bd4bc582ca8fa3c0e6fb378.zip
Move (private) struct ipflow out of ip_var.h, to reduce dependencies
(for ipfw for example) on internal implementation details. Add $Id$ where missing.
Notes
Notes: svn path=/head/; revision=36194
Diffstat (limited to 'sys/netinet/ip_flow.c')
-rw-r--r--sys/netinet/ip_flow.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/netinet/ip_flow.c b/sys/netinet/ip_flow.c
index a17cacb0fa6d..7d0f715dd3be 100644
--- a/sys/netinet/ip_flow.c
+++ b/sys/netinet/ip_flow.c
@@ -32,6 +32,8 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
+ *
+ * $Id$
*/
#include <sys/param.h>
@@ -60,6 +62,7 @@
#include <netinet/in_pcb.h>
#include <netinet/in_var.h>
#include <netinet/ip_var.h>
+#include <netinet/ip_flow.h>
#define IPFLOW_TIMER (5 * PR_SLOWHZ)
#define IPFLOW_HASHBITS 6 /* should not be a multiple of 8 */