libnl/lib
Коренберг Марк (дома) 582a32433c Run-time version information is now available
Run-time version information is available as exported four integers:
- const int      nl_ver_num = LIBNL_VER_NUM;
- const int      nl_ver_maj = LIBNL_VER_MAJ;
- const int      nl_ver_min = LIBNL_VER_MIN;
- const int      nl_ver_mic = LIBNL_VER_MIC;

The purpose of this is to get version of compiled library as run time.
Use cases:
- To know exact version of the library in Python's ctypes module,
  Say, to find out if nl_cache_mngr_alloc() allow sk=NULL

- To make sure that the version of the loaded library corresponds to the
  version of headers (for the paranoid). Say, to check:

  if (LIBNL_VER_NUM != nl_ver_num)
      exit(1);
2012-08-30 03:19:04 +06:00
..
cli Support plug qdisc - queue traffic until explicit release 2012-02-14 12:02:04 +01:00
fib_lookup doc: documentation restructuring 2012-05-10 12:03:59 +02:00
genl Fix types-related warnings based on clang diagnostics 2012-06-13 13:30:26 +02:00
netfilter ct_dump_stats: detect when stats are not available 2012-08-28 18:53:33 +06:00
route single nexthop flags bug 2012-08-29 12:27:06 +02:00
.gitignore Added lex.yy.c to .gitignore 2012-08-30 03:19:04 +06:00
addr.c nl_addr_parse handling of 'default', 'any', and 'all' 2012-08-29 12:17:24 +02:00
attr.c Fix types-related warnings based on clang diagnostics 2012-06-13 13:30:26 +02:00
cache.c Fix for dumping objects to a buffer instead of file descriptor 2012-05-18 15:03:46 +02:00
cache_mngr.c doc: documentation restructuring 2012-05-10 12:03:59 +02:00
cache_mngt.c doc: documentation restructuring 2012-05-10 12:03:59 +02:00
data.c Fix types-related warnings based on clang diagnostics 2012-06-13 13:30:26 +02:00
error.c Support for NLM_F_INTR 2011-07-14 10:51:49 +02:00
handlers.c doc: documentation restructuring 2012-05-10 12:03:59 +02:00
Makefile.am Run-time version information is now available 2012-08-30 03:19:04 +06:00
msg.c Fix types-related warnings based on clang diagnostics 2012-06-13 13:30:26 +02:00
nl.c Fix types-related warnings based on clang diagnostics 2012-06-13 13:30:26 +02:00
object.c Fix types-related warnings based on clang diagnostics 2012-06-13 13:30:26 +02:00
socket.c doc: documentation restructuring 2012-05-10 12:03:59 +02:00
utils.c Fix build warning after const char ** convert 2012-08-29 12:05:51 +02:00
version.c Run-time version information is now available 2012-08-30 03:19:04 +06:00