NetworkManager/libnm-core/nm-libnm-core-intern
2020-07-19 12:01:56 +02:00
..
nm-auth-subject.c all: move "shared/nm-libnm-core-intern" to "libnm-core/nm-libnm-core-intern" 2020-06-11 10:53:50 +02:00
nm-auth-subject.h all: move "shared/nm-libnm-core-intern" to "libnm-core/nm-libnm-core-intern" 2020-06-11 10:53:50 +02:00
nm-common-macros.h all: move "shared/nm-libnm-core-intern" to "libnm-core/nm-libnm-core-intern" 2020-06-11 10:53:50 +02:00
nm-ethtool-utils.c all: move "shared/nm-libnm-core-intern" to "libnm-core/nm-libnm-core-intern" 2020-06-11 10:53:50 +02:00
nm-ethtool-utils.h all: move "shared/nm-libnm-core-intern" to "libnm-core/nm-libnm-core-intern" 2020-06-11 10:53:50 +02:00
nm-libnm-core-utils.c libnm: add _nm_setting_bond_mode_from_string() to nm-libnm-core-intern 2020-07-11 15:07:48 +02:00
nm-libnm-core-utils.h all: add trailing semicolon to NM_AUTO_DEFINE_FCN_*() uses 2020-07-19 12:01:56 +02:00
README.md all: move "shared/nm-libnm-core-aux" to "libnm-core/nm-libnm-core-aux" 2020-06-11 10:53:50 +02:00

nm-libnm-core-intern is a static library that:

  • uses parts of "libnm-core", that are public API of "libnm"
  • that is statically linked into libnm-core (and thus libnm and NetworkManager).
  • that can also be statically linked into other users of libnm.

Basically, it is a static library with utility functions that extends libnm-core (the part that is public API of libnm), but it is used by libnm-core.

That means:

  • you can use it everywhere where you either statically link with libnm-core, or dynamically link with libnm.
  • you can even use it inside of libnm-core itself. This is the difference between nm-libnm-core-intern and nm-libnm-core-aux.

Also, since nm-libnm-core-intern itself only uses public (stable) API of libnm, you theoretically can copy the sources into your own source tree.