netlabel_domainhash.c (f838bad1b3be8ca0c785ee0e0c570dfda74cf377) | netlabel_domainhash.c (82524746c27fa418c250a56dd7606b9d3fc79826) |
---|---|
1/* 2 * NetLabel Domain Hash Table 3 * 4 * This file manages the domain hash table that NetLabel uses to determine 5 * which network labeling protocol to use for a given domain. The NetLabel 6 * system manages static and dynamic label mappings for network protocols such 7 * as CIPSO and RIPSO. 8 * --- 16 unchanged lines hidden (view full) --- 25 * 26 * You should have received a copy of the GNU General Public License 27 * along with this program; if not, write to the Free Software 28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 29 * 30 */ 31 32#include <linux/types.h> | 1/* 2 * NetLabel Domain Hash Table 3 * 4 * This file manages the domain hash table that NetLabel uses to determine 5 * which network labeling protocol to use for a given domain. The NetLabel 6 * system manages static and dynamic label mappings for network protocols such 7 * as CIPSO and RIPSO. 8 * --- 16 unchanged lines hidden (view full) --- 25 * 26 * You should have received a copy of the GNU General Public License 27 * along with this program; if not, write to the Free Software 28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 29 * 30 */ 31 32#include <linux/types.h> |
33#include <linux/rcupdate.h> 34#include <linux/list.h> | 33#include <linux/rculist.h> |
35#include <linux/skbuff.h> 36#include <linux/spinlock.h> 37#include <linux/string.h> 38#include <linux/audit.h> 39#include <net/netlabel.h> 40#include <net/cipso_ipv4.h> 41#include <asm/bug.h> 42 --- 398 unchanged lines hidden --- | 34#include <linux/skbuff.h> 35#include <linux/spinlock.h> 36#include <linux/string.h> 37#include <linux/audit.h> 38#include <net/netlabel.h> 39#include <net/cipso_ipv4.h> 40#include <asm/bug.h> 41 --- 398 unchanged lines hidden --- |