summaryrefslogtreecommitdiffstats
path: root/doc/core.txt
Commit message (Collapse)AuthorAgeFilesLines
* doc: fix error in core documentation for nl_cache_mngr_alloc()Thomas Haller2014-06-171-1/+1
| | | | Signed-off-by: Thomas Haller <thaller@redhat.com>
* doc/core: reply message should send from kernel to appHangbin Liu2014-04-161-2/+2
| | | | | Signed-off-by: Hangbin Liu <liuhangbin@gmail.com> Signed-off-by: Thomas Haller <thaller@redhat.com>
* doc: fix typo in documentationThomas Haller2014-01-211-2/+2
| | | | | | Also fix typo in source code comment. Signed-off-by: Thomas Haller <thaller@redhat.com>
* attr: Add nla_nest_cancel() to remove partially added nested attributesThomas Graf2013-03-141-0/+1
| | | | Signed-off-by: Thomas Graf <tgraf@suug.ch>
* doc: documentation restructuringThomas Graf2012-05-101-0/+11
| | | | | | | | | | - changes the modules hierarchy to better represent the set of libaries - list the header file that needs to be included - remove examples/doc from api ref that is included in the guide - add references to the guide - fix doxygen api linking for version 1.8.0 - readd doxygen mainpage to config file - fix a couple of doxygen doc bugs
* doc: add section about addressingThomas Graf2012-05-091-39/+150
| | | | | | Adds a new section to netlink fundamentals explaining the common addressing use cases and illustrates kernel->user, user->user, and user->kernel communication.
* cache_manager: Move documentation to doc/core.txtThomas Graf2012-04-211-0/+76
|
* doc: Fix incorrect nl_socket_add_memberships() exampleThomas Graf2012-03-261-1/+1
| | | | | Reported by: Andrew Collins <bsderandrew@gmail.com> Signed-off-by: Thomas Graf <tgraf@redhat.com>
* doc: Fix typos in autoconf exampleThomas Graf2012-02-221-2/+2
| | | | Reported by nick black <dankamongmen@gmail.com>
* Switch to libtool versioning systemThomas Graf2011-09-131-2/+21
| | | | | | | | | | | | | | | | | | It has been a request that multiple libnl versions should be installabe in parallel. In order to achieve this, the basename of the library was changed to libnl-3 which reflects the 3rd generation of libnl APIs. It also means that release based library versioning is left behind and libtool versioning is used instead. Projects using pkgconfig will automatically link against the new library basename and will not notice a difference. The SO versioning is based on the glib model: current := 100 * minor + micro - revision revision := revision age := age (number of backwards compatible versions)
* 3.1 releaseThomas Graf2011-08-111-8/+9
|
* more documentation updatesThomas Graf2011-07-211-158/+153
| | | | | | | | | - improved stylesheets for both doxygen and asciidoc - use of xml doxygen layout - python script to resolve <<foo>> asciidoc references to <<foo, title>> based on the target caption - graphics for netlink and netlink error headers - more link documentation
* Documentation updatesThomas Graf2011-07-181-6/+5
| | | | | | | - update to asciidoc 8.6.5 - added doc/README - switched to toc2 - started adding link documentation
* documentation updatesThomas Graf2011-07-141-0/+2
|
* Move to asciidocThomas Graf2011-03-311-0/+2802
The core library documentation has been converted to use asciidoc. It provides better flexibility in creating documentation such as tables and more powerful formatting rules. The doxygen based API reference remains and three scripts have been added to: - gen-tags.sh: extract tag information from doxygen reference - tags2dict.sh: generate a name=link dictionary file - doxygen-link.py: replace all references in the asciidoc documentation refering to API functions, struct, etc. with a link into the doxygen API reference. 'make gendoc' continue to generate all documentation. The following tools are required to generate documentation: - asciidoc - mscgen - asciidoc mscgen plugin - pygments - xmlstarlet