00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef NETLINK_VERSION_H_
00013 #define NETLINK_VERSION_H_
00014
00015 #define LIBNL_STRING "libnl 3.2.7"
00016 #define LIBNL_VERSION "3.2.7"
00017
00018 #define LIBNL_VER_MAJ 3
00019 #define LIBNL_VER_MIN 2
00020 #define LIBNL_VER_MIC 7
00021 #define LIBNL_VER(maj,min) ((maj) << 8 | (min))
00022 #define LIBNL_VER_NUM LIBNL_VER(LIBNL_VER_MAJ, LIBNL_VER_MIN)
00023
00024 #define LIBNL_CURRENT 205
00025 #define LIBNL_REVISION 2
00026 #define LIBNL_AGE 5
00027
00028 #endif