diff options
author | Thomas Graf <tgr@lsx.localdomain> | 2008-05-15 12:01:57 (GMT) |
---|---|---|
committer | Thomas Graf <tgr@lsx.localdomain> | 2008-05-15 12:01:57 (GMT) |
commit | 28233246cd8fad47613e7ffd85ea0b1d69c0f8c2 (patch) | |
tree | cb0da1bd9fa56ad81dd7fae0e4120840d54230df /include | |
parent | 8cd39c9f4ca8731279ea6467a9d489902fcae7f9 (diff) | |
download | libnl-28233246cd8fad47613e7ffd85ea0b1d69c0f8c2.zip libnl-28233246cd8fad47613e7ffd85ea0b1d69c0f8c2.tar.gz libnl-28233246cd8fad47613e7ffd85ea0b1d69c0f8c2.tar.bz2 |
Allow parser callbacks to return NL_OK, NL_SKIP, NL_EXIT
Obsoletes internal P_ACCEPT/P_IGNORE
Diffstat (limited to 'include')
-rw-r--r-- | include/netlink-local.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/netlink-local.h b/include/netlink-local.h index b7b9b7f..ed398ad 100644 --- a/include/netlink-local.h +++ b/include/netlink-local.h @@ -124,9 +124,6 @@ static inline int nl_cb_call(struct nl_cb *cb, int type, struct nl_msg *msg) #define __exit __attribute__ ((destructor)) #define __deprecated __attribute__ ((deprecated)) -#define P_ACCEPT 0 -#define P_IGNORE 0 - #define min(x,y) ({ \ typeof(x) _x = (x); \ typeof(y) _y = (y); \ |