]> granicus.if.org Git - ipset/commitdiff
Add missing functions to libipset.map
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Wed, 28 Nov 2018 17:45:50 +0000 (18:45 +0100)
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Wed, 28 Nov 2018 17:45:50 +0000 (18:45 +0100)
Some new functions was not added to libipset.map at the previous
release, fix it.

Make_global.am
include/libipset/list_sort.h
lib/libipset.map

index e666986ef6b178786aacfab63e5e621137842c34..673aa41e7d4c877445f8ded6130de23050278804 100644 (file)
@@ -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
 
index 70b1fca1b7222a4b7a9d28bc7057a5b59d2bfd9e..70bb02d3d1b68c1a8ac4bb7979b865a86711646c 100644 (file)
@@ -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
index a2383f346225a1edb75c8eb9eb057828bb3f0f3b..7a4a33c83a6c49c4b2d14cc1892d18650c8939d8 100644 (file)
@@ -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;