diff options
author | Joerg Goltermann <gollo@cvs.openbsd.org> | 2008-10-28 15:51:28 +0000 |
---|---|---|
committer | Joerg Goltermann <gollo@cvs.openbsd.org> | 2008-10-28 15:51:28 +0000 |
commit | 326522398b1e4b2ffa0805e06116d02fbee5b339 (patch) | |
tree | d0f3281db1f98bec307bd9b1d8693fe07f68bbd3 /sys/net/if_pflow.h | |
parent | 31f4496fa4287bfaf634ef50c7e8386fc92a1e13 (diff) |
add support for multiple pflow(4) interfaces
OK: claudio@ henning@
Diffstat (limited to 'sys/net/if_pflow.h')
-rw-r--r-- | sys/net/if_pflow.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/if_pflow.h b/sys/net/if_pflow.h index bd4db6b6d57..e51da7f83e5 100644 --- a/sys/net/if_pflow.h +++ b/sys/net/if_pflow.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pflow.h,v 1.2 2008/09/16 15:48:12 gollo Exp $ */ +/* $OpenBSD: if_pflow.h,v 1.3 2008/10/28 15:51:27 gollo Exp $ */ /* * Copyright (c) 2008 Henning Brauer <henning@openbsd.org> @@ -75,6 +75,7 @@ struct pflow_softc { u_int16_t sc_receiver_port; union sc_flowp sc_flowp; struct mbuf *sc_mbuf; /* current cumulative mbuf */ + SLIST_ENTRY(pflow_softc) sc_next; }; extern struct pflow_softc *pflowif; |