From: Thomas Graf Date: Fri, 23 Nov 2012 15:50:06 +0000 (+0100) Subject: cache: reserve room in cache_ops to avoid breaking module ABI too frequently X-Git-Tag: libnl3_2_15~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3163fa707b198ee6db5aa2bb03d569812bacdaa4;p=libnl cache: reserve room in cache_ops to avoid breaking module ABI too frequently Signed-off-by: Thomas Graf --- diff --git a/include/netlink/cache-api.h b/include/netlink/cache-api.h index f2111b9..b332415 100644 --- a/include/netlink/cache-api.h +++ b/include/netlink/cache-api.h @@ -252,6 +252,15 @@ struct nl_cache_ops int (*co_include_event)(struct nl_cache *cache, struct nl_object *obj, change_func_t change_cb, void *data); + void (*reserved_1)(void); + void (*reserved_2)(void); + void (*reserved_3)(void); + void (*reserved_4)(void); + void (*reserved_5)(void); + void (*reserved_6)(void); + void (*reserved_7)(void); + void (*reserved_8)(void); + /** Object operations */ struct nl_object_ops * co_obj_ops;