Difference between revisions of "Libnfnetlink"
From CBLFS
Jump to navigationJump to search (Page Creation) |
(added file list and description, added N32) |
||
Line 45: | Line 45: | ||
=== N32 === | === N32 === | ||
− | + | Compile the package: | |
+ | |||
+ | CC="gcc ${BUILDN32}" ./configure --prefix=/usr \ | ||
+ | --bindir=/sbin --sbindir=/sbin --libdir=/usr/lib32 && | ||
+ | make | ||
+ | |||
+ | Install the package | ||
+ | |||
+ | make install | ||
+ | |||
=== 64Bit === | === 64Bit === | ||
Line 63: | Line 72: | ||
Installed Programs: | Installed Programs: | ||
− | Installed Libraries: | + | Installed Libraries: /usr/lib/libnfnetlink* /usr/lib/pkgconfig/libnfnetlink.pc |
=== Short Descriptions === | === Short Descriptions === | ||
− | + | {| style="text-align: left;" | |
+ | |-valign="top" | ||
+ | !libnfnetlink.* | ||
+ | |low-level nfnetlink message processing functions | ||
+ | |} | ||
+ | |||
+ | |||
[[Category:Networking Libraries]] | [[Category:Networking Libraries]] |
Latest revision as of 05:38, 26 October 2013
Download Source: | http://iptables.org/projects/libnfnetlink/files/libnfnetlink-1.0.1.tar.bz2 |
---|
Contents
Introduction to Libnfnetlink
libnfnetlink is the low-level library for netfilter related kernel/userspace communication. It provides a generic messaging infrastructure for in-kernel netfilter subsystems (such as nfnetlink_log, nfnetlink_queue, nfnetlink_conntrack) and their respective users and/or management tools in userspace.
Project Homepage: http://www.netfilter.org/projects/libnfnetlink/index.html
Dependencies
Non-Multilib
Compile the package:
./configure --prefix=/usr \ --bindir=/sbin --sbindir=/sbin && \ make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr \ --bindir=/sbin --sbindir=/sbin --libdir=/usr/lib && \ make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr \ --bindir=/sbin --sbindir=/sbin --libdir=/usr/lib32 && make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr \ --bindir=/sbin --sbindir=/sbin --libdir=/usr/lib64 && make
Install the package
make install
Contents
Installed Programs:
Installed Libraries: /usr/lib/libnfnetlink* /usr/lib/pkgconfig/libnfnetlink.pc
Short Descriptions
libnfnetlink.* | low-level nfnetlink message processing functions |
---|