diff options
author | Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> | 2018-11-28 18:45:50 +0100 |
---|---|---|
committer | Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> | 2018-11-28 18:45:50 +0100 |
commit | 6d1bb466c5b7e8ba91ae2a8566db9a4009fd5d9d (patch) | |
tree | 35174380e29782a01782a63e07c2c0b16f75f70c | |
parent | 21c9f79121abb70324efe9fc19ef0fb3685afb1a (diff) |
Add missing functions to libipset.map
Some new functions was not added to libipset.map at the previous
release, fix it.
-rw-r--r-- | Make_global.am | 2 | ||||
-rw-r--r-- | include/libipset/list_sort.h | 7 | ||||
-rw-r--r-- | lib/libipset.map | 8 |
3 files changed, 12 insertions, 5 deletions
diff --git a/Make_global.am b/Make_global.am index e666986..673aa41 100644 --- a/Make_global.am +++ b/Make_global.am @@ -69,7 +69,7 @@ # interface. # curr:rev:age -LIBVERSION = 13:0:0 +LIBVERSION = 14:0:1 AM_CPPFLAGS = $(kinclude_CFLAGS) $(all_includes) -I$(top_srcdir)/include diff --git a/include/libipset/list_sort.h b/include/libipset/list_sort.h index 70b1fca..70bb02d 100644 --- a/include/libipset/list_sort.h +++ b/include/libipset/list_sort.h @@ -97,8 +97,7 @@ static inline void list_splice(const struct list_head *list, #define unlikely(x) (!!(x) == 0) #endif -extern void -list_sort(void *priv, struct list_head *head, - int (*cmp)(void *priv, struct list_head *a, - struct list_head *b)); +extern void list_sort(void *priv, struct list_head *head, + int (*cmp)(void *priv, struct list_head *a, + struct list_head *b)); #endif diff --git a/lib/libipset.map b/lib/libipset.map index a2383f3..7a4a33c 100644 --- a/lib/libipset.map +++ b/lib/libipset.map @@ -194,3 +194,11 @@ global: ipset_session_io_stream; ipset_session_io_close; } LIBIPSET_4.7; + +LIBIPSET_4.9 { +global: + ipset_ignored_optname; + list_sort; + ipset_session_report_msg; + ipset_session_report_type; +} LIBIPSET_4.8; |