-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 236848 b: refs/heads/master c: f830837 h: refs/heads/master v: v3
- Loading branch information
Jozsef Kadlecsik
authored and
Patrick McHardy
committed
Feb 1, 2011
1 parent
4684055
commit d8e15d0
Showing
5 changed files
with
625 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 21f45020a3084f80fcdd5f056a0c6389f5406399 | ||
refs/heads/master: f830837f0eed0f9e371b8fd65169365780814bb1 |
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.