forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
netfilter: ipset: list:set set type support
The module implements the list:set type support in two flavours: without and with timeout. The sets has two sides: for the userspace, they store the names of other (non list:set type of) sets: one can add, delete and test set names. For the kernel, it forms an ordered union of the member sets: the members sets are tried in order when elements are added, deleted and tested and the process stops at the first success. Signed-off-by: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> Signed-off-by: Patrick McHardy <kaber@trash.net>
- Loading branch information
Showing
4 changed files
with
624 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#ifndef __IP_SET_LIST_H | ||
#define __IP_SET_LIST_H | ||
|
||
/* List type specific error codes */ | ||
enum { | ||
/* Set name to be added/deleted/tested does not exist. */ | ||
IPSET_ERR_NAME = IPSET_ERR_TYPE_SPECIFIC, | ||
/* list:set type is not permitted to add */ | ||
IPSET_ERR_LOOP, | ||
/* Missing reference set */ | ||
IPSET_ERR_BEFORE, | ||
/* Reference set does not exist */ | ||
IPSET_ERR_NAMEREF, | ||
/* Set is full */ | ||
IPSET_ERR_LIST_FULL, | ||
/* Reference set is not added to the set */ | ||
IPSET_ERR_REF_EXIST, | ||
}; | ||
|
||
#ifdef __KERNEL__ | ||
|
||
#define IP_SET_LIST_DEFAULT_SIZE 8 | ||
#define IP_SET_LIST_MIN_SIZE 4 | ||
|
||
#endif /* __KERNEL__ */ | ||
|
||
#endif /* __IP_SET_LIST_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.