Linux Kernel
3.7.1
|
#include <linux/types.h>
#include <linux/rcupdate.h>
#include <linux/list.h>
#include <linux/spinlock.h>
#include <linux/in.h>
#include <linux/in6.h>
#include <linux/ip.h>
#include <linux/ipv6.h>
#include <net/ip.h>
#include <net/ipv6.h>
#include <linux/audit.h>
#include "netlabel_addrlist.h"
Go to the source code of this file.
int netlbl_af4list_add | ( | struct netlbl_af4list * | entry, |
struct list_head * | head | ||
) |
netlbl_af4list_add - Add a new IPv4 address entry to a list : address entry : the list head
Description: Add a new address entry to the list pointed to by . On success zero is returned, otherwise a negative value is returned. The caller is responsible for calling the necessary locking functions.
Definition at line 163 of file netlabel_addrlist.c.
|
read |
netlbl_af4list_remove - Remove an IPv4 address entry : IP address : IP address mask : the list head
Description: Remove an IP address entry from the list pointed to by . Returns the entry on success, NULL on failure. The caller is responsible for calling the necessary locking functions.
Definition at line 254 of file netlabel_addrlist.c.
void netlbl_af4list_remove_entry | ( | struct netlbl_af4list * | entry | ) |
netlbl_af4list_remove_entry - Remove an IPv4 address entry : address entry
Description: Remove the specified IP address entry. The caller is responsible for calling the necessary locking functions.
Definition at line 236 of file netlabel_addrlist.c.
|
read |
netlbl_af4list_search - Search for a matching IPv4 address entry : IPv4 address : the list head
Description: Searches the IPv4 address list given by . If a matching address entry is found it is returned, otherwise NULL is returned. The caller is responsible for calling the rcu_read_[un]lock() functions.
Definition at line 61 of file netlabel_addrlist.c.
|
read |
netlbl_af4list_search_exact - Search for an exact IPv4 address entry : IPv4 address : IPv4 address mask : the list head
Description: Searches the IPv4 address list given by . If an exact match if found it is returned, otherwise NULL is returned. The caller is responsible for calling the rcu_read_[un]lock() functions.
Definition at line 85 of file netlabel_addrlist.c.