[libnl]: Debian Packaging libnl version 3.5.0 (#3967)
Packaging libnl 3.5.0 based off libnl 3.2.27 packaging. libnl contains various bug fixes that are nice to have. pull-request: https://github.com/Azure/sonic-buildimage/pull/3967 signed-off-by: Tamer Ahmed <tamer.ahmed@microsoft.com>
This commit is contained in:
parent
122124679d
commit
df04809cb8
16
.gitignore
vendored
16
.gitignore
vendored
@ -50,6 +50,8 @@ src/isc-dhcp/*
|
||||
!src/isc-dhcp/Makefile
|
||||
!src/isc-dhcp/patch/
|
||||
src/libnl3/*
|
||||
!src/libnl3/debian
|
||||
src/libnl3/debian/libnl-*/
|
||||
!src/libnl3/Makefile
|
||||
src/libteam/*
|
||||
!src/libteam/Makefile
|
||||
@ -140,3 +142,17 @@ src/sonic-daemon-base/sonic_daemon_base.egg-info
|
||||
# Misc. files
|
||||
files/initramfs-tools/arista-convertfs
|
||||
files/initramfs-tools/union-mount
|
||||
|
||||
# Debian byproduct files
|
||||
src/**/debian/stamp-*/
|
||||
src/**/debian/*.log
|
||||
src/**/debian/*.substvars
|
||||
src/**/debian/.debhelper/
|
||||
src/**/debian/tmp/
|
||||
src/**/debian/autoreconf.*
|
||||
src/**/debian/build/
|
||||
src/**/debian/files
|
||||
src/**/debian/stamp-autotools-files
|
||||
|
||||
# .o files
|
||||
src/**/*.o
|
||||
|
@ -1,7 +1,7 @@
|
||||
# libnl3
|
||||
|
||||
LIBNL3_VERSION_BASE = 3.2.27
|
||||
LIBNL3_VERSION = $(LIBNL3_VERSION_BASE)-2
|
||||
LIBNL3_VERSION_BASE = 3.5.0
|
||||
LIBNL3_VERSION = $(LIBNL3_VERSION_BASE)-1
|
||||
|
||||
export LIBNL3_VERSION_BASE
|
||||
export LIBNL3_VERSION
|
||||
|
@ -16,12 +16,11 @@ DERIVED_TARGETS = libnl-3-dev_$(LIBNL3_VERSION)_$(CONFIGURED_ARCH).deb \
|
||||
$(addprefix $(DEST)/, $(MAIN_TARGET)): $(DEST)/% :
|
||||
# Obtaining the libnl3
|
||||
rm -rf ./libnl3-$(LIBNL3_VERSION_BASE)
|
||||
wget -O libnl3_$(LIBNL3_VERSION_BASE).orig.tar.gz -N "https://sonicstorage.blob.core.windows.net/packages/libnl3_$(LIBNL3_VERSION_BASE).orig.tar.gz?sv=2015-04-05&sr=b&sig=b4DnqrIsyVBDLmYhw7qwfaUJWqGCX2lDVMmmx7ihfrU%3D&se=2028-06-16T21%3A06%3A00Z&sp=r"
|
||||
wget -O libnl3_$(LIBNL3_VERSION).dsc -N "https://sonicstorage.blob.core.windows.net/packages/libnl3_$(LIBNL3_VERSION).dsc?sv=2015-04-05&sr=b&sig=AWTX45oDbeGA%2BRJZyiCcHmeIfCAgSeNV3IqopOBaRDg%3D&se=2028-06-16T21%3A05%3A30Z&sp=r"
|
||||
wget -O libnl3_$(LIBNL3_VERSION).debian.tar.xz -N "https://sonicstorage.blob.core.windows.net/packages/libnl3_$(LIBNL3_VERSION).debian.tar.xz?sv=2015-04-05&sr=b&sig=upIZ9dp5WEcLqp3ODeWKJXq5pJWCfeT0TIM0bx76wxM%3D&se=2028-06-16T21%3A04%3A44Z&sp=r"
|
||||
dpkg-source -x libnl3_$(LIBNL3_VERSION).dsc
|
||||
git clone https://github.com/thom311/libnl libnl3-$(LIBNL3_VERSION_BASE)
|
||||
pushd libnl3-$(LIBNL3_VERSION_BASE)
|
||||
git checkout tags/libnl$(subst .,_,$(LIBNL3_VERSION_BASE))
|
||||
|
||||
pushd ./libnl3-$(LIBNL3_VERSION_BASE)
|
||||
ln -s ../debian debian
|
||||
dpkg-buildpackage -rfakeroot -b -us -uc -j$(SONIC_CONFIG_MAKE_JOBS)
|
||||
popd
|
||||
|
||||
|
17
src/libnl3/debian/README.Debian
Normal file
17
src/libnl3/debian/README.Debian
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
libnl versions explained
|
||||
========================
|
||||
|
||||
Once libnl3 hits the archive there will exist 3 versions of libnl.
|
||||
libnl1 with libnl-dev - up until March 2011 the stable version
|
||||
libnl2 with libnl2-dev - development version that resulted in
|
||||
libnl3 with libnl3-dev - the new stable (API and ABI wise) version
|
||||
|
||||
libnl1 has currently a lot of users in the archive and a lot of changes
|
||||
happened since its last upstream release in 2008-01.
|
||||
|
||||
The plan is therefore to introduce libnl3, port the two users of libnl2
|
||||
(freesmartphone.org libs and powertop) to it, remove libnl2 and don't touch
|
||||
libnl1 and libnl-dev for now.
|
||||
|
||||
-- Heiko Stuebner <mmind@debian.org> Sat, 21 May 2011 19:25:13 +0200
|
10
src/libnl3/debian/README.source
Normal file
10
src/libnl3/debian/README.source
Normal file
@ -0,0 +1,10 @@
|
||||
This package uses the simple-patchsys of cdbs.
|
||||
|
||||
The following patches are used:
|
||||
0001: Fixes the header inclusion in the Makefiles.
|
||||
This for example make distcheck
|
||||
0002: Includes all generated libraries as linktargets in the pkg-config file.
|
||||
Reason: Currently libnl3 generates a bunch of child libraries.
|
||||
These don't get individual .pc files from upstream at the moment but
|
||||
programs linking against libnl3 using the .pc file mostly need these
|
||||
additional libraries too.
|
1043
src/libnl3/debian/changelog
Normal file
1043
src/libnl3/debian/changelog
Normal file
File diff suppressed because it is too large
Load Diff
1
src/libnl3/debian/compat
Normal file
1
src/libnl3/debian/compat
Normal file
@ -0,0 +1 @@
|
||||
9
|
245
src/libnl3/debian/control
Normal file
245
src/libnl3/debian/control
Normal file
@ -0,0 +1,245 @@
|
||||
Source: libnl3
|
||||
Section: net
|
||||
Priority: optional
|
||||
Maintainer: Heiko Stuebner <mmind@debian.org>
|
||||
Build-Depends: debhelper (>= 9), dh-exec (>= 0.3), cdbs (>= 0.4.93~), bison, flex,
|
||||
automake, autoconf, dh-autoreconf, linux-libc-dev (>= 3.2.41), pkg-config
|
||||
Standards-Version: 3.9.6
|
||||
Homepage: http://www.infradead.org/~tgr/libnl/
|
||||
#Vcs-Git: https://github.com/thom311/libnl/
|
||||
#Vcs-Browser: https://github.com/thom311/libnl/
|
||||
|
||||
Package: libnl-3-200
|
||||
Architecture: linux-any
|
||||
Section: libs
|
||||
Pre-Depends: ${misc:Pre-Depends}
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}
|
||||
Multi-Arch: same
|
||||
Description: library for dealing with netlink sockets
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
|
||||
Package: libnl-cli-3-200
|
||||
Architecture: linux-any
|
||||
Section: libs
|
||||
Pre-Depends: ${misc:Pre-Depends}
|
||||
Depends: libnl-3-200 (= ${binary:Version}), libnl-genl-3-200 (= ${binary:Version}), libnl-nf-3-200 (= ${binary:Version}), libnl-route-3-200 (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
|
||||
Multi-Arch: same
|
||||
Description: library for dealing with netlink sockets - cli helpers
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
Library for cli helpers in libnl-utils.
|
||||
|
||||
Package: libnl-utils
|
||||
Architecture: linux-any
|
||||
Section: libs
|
||||
Depends: libnl-cli-3-200 (= ${binary:Version}), libnl-idiag-3-200 (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
|
||||
Description: Utilities for dealing with netlink sockets
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
These utilities help dealing with netlink sockets.
|
||||
|
||||
Package: libnl-genl-3-200
|
||||
Architecture: linux-any
|
||||
Section: libs
|
||||
Pre-Depends: ${misc:Pre-Depends}
|
||||
Depends: libnl-3-200 (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
|
||||
Multi-Arch: same
|
||||
Description: library for dealing with netlink sockets - generic netlink
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
API to the generic netlink protocol, an extended version of the netlink
|
||||
protocol.
|
||||
|
||||
Package: libnl-idiag-3-200
|
||||
Architecture: linux-any
|
||||
Section: libs
|
||||
Pre-Depends: ${misc:Pre-Depends}
|
||||
Depends: libnl-3-200 (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
|
||||
Multi-Arch: same
|
||||
Description: library for dealing with netlink sockets - inetdiag interface
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
API to the inetdiag netlink protocol, handling inetdiag requests
|
||||
|
||||
Package: libnl-nf-3-200
|
||||
Architecture: linux-any
|
||||
Section: libs
|
||||
Pre-Depends: ${misc:Pre-Depends}
|
||||
Depends: libnl-3-200 (= ${binary:Version}), libnl-route-3-200 (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
|
||||
Multi-Arch: same
|
||||
Description: library for dealing with netlink sockets - netfilter interface
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
API to netlink based netfilter configuration and monitoring interfaces.
|
||||
|
||||
Package: libnl-route-3-200
|
||||
Architecture: linux-any
|
||||
Section: libs
|
||||
Pre-Depends: ${misc:Pre-Depends}
|
||||
Depends: libnl-3-200 (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
|
||||
Multi-Arch: same
|
||||
Description: library for dealing with netlink sockets - route interface
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
API to the configuration interfaces of the NETLINK_ROUTE family.
|
||||
|
||||
Package: libnl-xfrm-3-200
|
||||
Architecture: linux-any
|
||||
Section: libs
|
||||
Pre-Depends: ${misc:Pre-Depends}
|
||||
Depends: libnl-3-200 (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
|
||||
Multi-Arch: same
|
||||
Description: library for dealing with netlink sockets - package transformations
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
API to netlink based package transformations (such as encrypting
|
||||
their payloads).
|
||||
|
||||
Package: libnl-3-dev
|
||||
Architecture: linux-any
|
||||
Section: libdevel
|
||||
Depends: libnl-3-200 (= ${binary:Version}), ${misc:Depends}
|
||||
Conflicts: libnl-dev, libnl2-dev
|
||||
Breaks: libnl3-dev
|
||||
Replaces: libnl3-dev
|
||||
Multi-Arch: same
|
||||
Description: development library and headers for libnl-3
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
This package contains the headers needed by all libraries and the files
|
||||
that are needed to build applications using libnl3.
|
||||
|
||||
Package: libnl-cli-3-dev
|
||||
Architecture: linux-any
|
||||
Section: libdevel
|
||||
Depends: libnl-3-dev (= ${binary:Version}), libnl-genl-3-dev (= ${binary:Version}), libnl-nf-3-dev (= ${binary:Version}), libnl-route-3-dev (= ${binary:Version}), libnl-cli-3-200 (= ${binary:Version}), ${misc:Depends}
|
||||
Multi-Arch: same
|
||||
Description: development library and headers for libnl-cli-3
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
This package contains the files that are needed to build applications using
|
||||
libnl-cli-3.
|
||||
|
||||
Package: libnl-genl-3-dev
|
||||
Architecture: linux-any
|
||||
Section: libdevel
|
||||
Depends: libnl-3-dev (= ${binary:Version}), libnl-genl-3-200 (= ${binary:Version}), ${misc:Depends}
|
||||
Multi-Arch: same
|
||||
Description: development library and headers for libnl-genl-3
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
This package contains the files that are needed to build applications using
|
||||
libnl-genl-3.
|
||||
|
||||
Package: libnl-idiag-3-dev
|
||||
Architecture: linux-any
|
||||
Section: libdevel
|
||||
Depends: libnl-3-dev (= ${binary:Version}), libnl-idiag-3-200 (= ${binary:Version}), ${misc:Depends}
|
||||
Multi-Arch: same
|
||||
Description: development library and headers for libnl-genl-3
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
This package contains the files that are needed to build applications using
|
||||
libnl-idiag-3.
|
||||
|
||||
Package: libnl-nf-3-dev
|
||||
Architecture: linux-any
|
||||
Section: libdevel
|
||||
Depends: libnl-3-dev (= ${binary:Version}), libnl-route-3-dev (= ${binary:Version}), libnl-nf-3-200 (= ${binary:Version}), ${misc:Depends}
|
||||
Multi-Arch: same
|
||||
Description: development library and headers for libnl-nf-3
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
This package contains the files that are needed to build applications using
|
||||
libnl-nf-3.
|
||||
|
||||
Package: libnl-route-3-dev
|
||||
Architecture: linux-any
|
||||
Section: libdevel
|
||||
Depends: libnl-3-dev (= ${binary:Version}), libnl-route-3-200 (= ${binary:Version}), ${misc:Depends}
|
||||
Multi-Arch: same
|
||||
Description: development library and headers for libnl-route-3
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
This package contains the files that are needed to build applications using
|
||||
libnl-route-3.
|
||||
|
||||
Package: libnl-xfrm-3-dev
|
||||
Architecture: linux-any
|
||||
Section: libdevel
|
||||
Depends: libnl-3-dev (= ${binary:Version}), libnl-xfrm-3-200 (= ${binary:Version}), ${misc:Depends}
|
||||
Multi-Arch: same
|
||||
Description: development library and headers for libnl-xfrm-3
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
This package contains the files that are needed to build applications using
|
||||
libnl-xfrm-3.
|
||||
|
||||
Package: libnl-3-200-dbg
|
||||
Architecture: linux-any
|
||||
Section: debug
|
||||
Depends: libnl-3-200 (= ${binary:Version}), ${misc:Depends}
|
||||
Priority: extra
|
||||
Description: debug symbols for libnl3
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
This package contains unstripped shared libraries. It is provided primarily
|
||||
to provide a backtrace with names in a debugger, this makes it somewhat easier
|
||||
to interpret core dumps. The libraries are installed in /usr/lib/debug and
|
||||
are automatically used by gdb.
|
||||
|
||||
Package: libnl-3-200-udeb
|
||||
Architecture: linux-any
|
||||
XC-Package-Type: udeb
|
||||
Section: debian-installer
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}
|
||||
Description: library for dealing with netlink sockets
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
This package is a udeb. It's only useful inside of debian-installer.
|
||||
|
||||
Package: libnl-genl-3-200-udeb
|
||||
Architecture: linux-any
|
||||
XC-Package-Type: udeb
|
||||
Section: debian-installer
|
||||
Depends: libnl-3-200-udeb (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
|
||||
Description: library for dealing with netlink sockets - generic netlink
|
||||
This is a library for applications dealing with netlink sockets.
|
||||
The library provides an interface for raw netlink messaging and various
|
||||
netlink family specific interfaces.
|
||||
.
|
||||
This package is a udeb. It's only useful inside of debian-installer.
|
160
src/libnl3/debian/copyright
Normal file
160
src/libnl3/debian/copyright
Normal file
@ -0,0 +1,160 @@
|
||||
This package was debianized by Tamer Ahmed <tamer.ahmed@microsoft.com> on
|
||||
Tue, 31 Decn 2019 12:00:46 +0000.
|
||||
The packaging is based on Heiko Stuebner's <heiko@sntech.de> original packaging
|
||||
of libnl1.
|
||||
|
||||
It was downloaded from https://github.com/thom311/libnl/releases
|
||||
|
||||
Upstream Author:
|
||||
Thomas Graf <tgraf@suug.ch>
|
||||
|
||||
|
||||
Copyright:
|
||||
|
||||
lib/route/addr.c
|
||||
include/netlink/route/addr.h
|
||||
|
||||
Copyright (c) Thomas Graf <tgraf@suug.ch>
|
||||
Baruch Even <baruch@ev-en.org>
|
||||
|
||||
|
||||
lib/route/cls/u32.c
|
||||
lib/route/cls/fw.c
|
||||
lib/route/sch/htb.c
|
||||
include/netlink/route/cls/fw.h
|
||||
include/netlink/route/sch/htb.h
|
||||
|
||||
Copyright (c) Thomas Graf <tgraf@suug.ch>
|
||||
Copyright (c) Petr Gotthard <petr.gotthard@siemens.com>
|
||||
Copyright (c) Siemens AG Oesterreich
|
||||
|
||||
|
||||
|
||||
lib/netfilter/log_msg.c
|
||||
lib/netfilter/ct.c
|
||||
include/netlink/netfilter/log_msg.h
|
||||
include/netlink/netfilter/log.h
|
||||
lib/netfilter/log_obj.c
|
||||
|
||||
Copyright (c) Thomas Graf <tgraf@suug.ch>
|
||||
Copyright (c) Philip Craig <philipc@snapgear.com>
|
||||
Copyright (c) Patrick McHardy <kaber@trash.net>
|
||||
Copyright (c) Secure Computing Corporation
|
||||
|
||||
|
||||
|
||||
include/netlink/netfilter/queue_msg.h
|
||||
lib/netfilter/queue_msg_obj.c
|
||||
lib/netfilter/queue_msg.c
|
||||
lib/netfilter/queue.c
|
||||
lib/netfilter/netfilter.c
|
||||
lib/netfilter/queue_obj.c
|
||||
include/netlink/netfilter/netfilter.h
|
||||
include/netlink/netfilter/queue.h
|
||||
src/nf-queue.c
|
||||
|
||||
Copyright (c) Patrick McHardy <kaber@trash.net>
|
||||
|
||||
|
||||
|
||||
include/netlink/xfrm/selector.h
|
||||
include/netlink/xfrm/sa.h
|
||||
include/netlink/xfrm/ae.h
|
||||
include/netlink/xfrm/sp.h
|
||||
include/netlink/xfrm/template.h
|
||||
include/netlink/xfrm/lifetime.h
|
||||
lib/xfrm/sa.c
|
||||
lib/xfrm/template.c
|
||||
lib/xfrm/ae.c
|
||||
lib/xfrm/sp.c
|
||||
lib/xfrm/selector.c
|
||||
lib/xfrm/lifetime.c
|
||||
|
||||
Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
|
||||
|
||||
|
||||
All other *.c and *.h files not mentioned above are copyright of:
|
||||
|
||||
Copyright (c) 2003-2006 Thomas Graf <tgraf@suug.ch>
|
||||
|
||||
|
||||
License:
|
||||
|
||||
src/nl-addr-add.c
|
||||
src/nl-addr-list.c
|
||||
src/nl-cls-add.c
|
||||
src/cls/utils.c
|
||||
src/cls/cgroup.c
|
||||
src/cls/utils.h
|
||||
src/cls/basic.c
|
||||
src/nl-addr-delete.c:
|
||||
|
||||
This library is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published
|
||||
by the Free Software Foundation version 2 of the License.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but
|
||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
General Public License for more details.
|
||||
|
||||
On Debian GNU/Linux systems, the complete text of the GNU General
|
||||
Public License can be found in /usr/share/common-licenses/GPL-2
|
||||
|
||||
|
||||
include/netlink/xfrm/selector.h
|
||||
include/netlink/xfrm/sa.h
|
||||
include/netlink/xfrm/ae.h
|
||||
include/netlink/xfrm/sp.h
|
||||
include/netlink/xfrm/template.h
|
||||
include/netlink/xfrm/lifetime.h
|
||||
lib/xfrm/sa.c
|
||||
lib/xfrm/template.c
|
||||
lib/xfrm/ae.c
|
||||
lib/xfrm/sp.c
|
||||
lib/xfrm/selector.c
|
||||
lib/xfrm/lifetime.c
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the
|
||||
distribution.
|
||||
|
||||
Neither the name of Texas Instruments Incorporated nor the names of
|
||||
its contributors may be used to endorse or promote products derived
|
||||
from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
|
||||
All other *.c and *.h files not mentioned above:
|
||||
|
||||
This library is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published
|
||||
by the Free Software Foundation version 2.1 of the License.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but
|
||||
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
General Public License for more details.
|
||||
|
||||
On Debian GNU/Linux systems, the complete text of the GNU Lesser General
|
||||
Public License can be found in /usr/share/common-licenses/LGPL-2.1
|
||||
|
16
src/libnl3/debian/gbp.conf
Normal file
16
src/libnl3/debian/gbp.conf
Normal file
@ -0,0 +1,16 @@
|
||||
# Configuration file for git-buildpackage and friends
|
||||
|
||||
[DEFAULT]
|
||||
# the default build command:
|
||||
#builder = debuild -i -I
|
||||
# the default clean command:
|
||||
#cleaner = debuild clean
|
||||
# the default branch for upstream sources:
|
||||
upstream-branch = upstream-dist
|
||||
# the default branch for the debian patch:
|
||||
#debian-branch = master
|
||||
# the default tag formats used:
|
||||
#upstream-tag = upstream/%(version)s
|
||||
#debian-tag = debian/%(version)s
|
||||
# use pristine-tar:
|
||||
pristine-tar = true
|
1
src/libnl3/debian/libnl-3-200-udeb.install
Normal file
1
src/libnl3/debian/libnl-3-200-udeb.install
Normal file
@ -0,0 +1 @@
|
||||
usr/lib/*/libnl-3.so.* lib
|
3
src/libnl3/debian/libnl-3-200.install
Executable file
3
src/libnl3/debian/libnl-3-200.install
Executable file
@ -0,0 +1,3 @@
|
||||
#!/usr/bin/dh-exec
|
||||
debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/libnl-3*.so.* lib/${DEB_HOST_MULTIARCH}/
|
||||
debian/tmp/etc/libnl/* etc/libnl-3
|
661
src/libnl3/debian/libnl-3-200.symbols
Normal file
661
src/libnl3/debian/libnl-3-200.symbols
Normal file
@ -0,0 +1,661 @@
|
||||
libnl-3.so.200 libnl-3-200 #MINVER#
|
||||
__flags2str@Base 3.5.0-1
|
||||
__flags2str@libnl_3 3.5.0-1
|
||||
__list_str2type@Base 3.5.0-1
|
||||
__list_str2type@libnl_3 3.5.0-1
|
||||
__list_type2str@Base 3.5.0-1
|
||||
__list_type2str@libnl_3 3.5.0-1
|
||||
__nl_cache_mngt_require@Base 3.5.0-1
|
||||
__nl_cache_mngt_require@libnl_3 3.5.0-1
|
||||
__nl_cache_ops_lookup@Base 3.5.0-1
|
||||
__nl_read_num_str_file@Base 3.5.0-1
|
||||
__nl_read_num_str_file@libnl_3 3.5.0-1
|
||||
__str2flags@Base 3.5.0-1
|
||||
__str2flags@libnl_3 3.5.0-1
|
||||
__str2type@Base 3.5.0-1
|
||||
__str2type@libnl_3 3.5.0-1
|
||||
__trans_list_add@Base 3.5.0-1
|
||||
__trans_list_add@libnl_3 3.5.0-1
|
||||
__trans_list_clear@Base 3.5.0-1
|
||||
__trans_list_clear@libnl_3 3.5.0-1
|
||||
__type2str@Base 3.5.0-1
|
||||
__type2str@libnl_3 3.5.0-1
|
||||
_nl_socket_generate_local_port_no_release@Base 3.5.0-1
|
||||
_nl_socket_is_local_port_unspecified@Base 3.5.0-1
|
||||
_nl_socket_set_local_port_no_release@Base 3.5.0-1
|
||||
_nl_socket_used_ports_release_all@Base 3.5.0-1
|
||||
_nl_socket_used_ports_set@Base 3.5.0-1
|
||||
dump_from_ops@Base 3.5.0-1
|
||||
libnl_3@libnl_3 3.5.0-1
|
||||
libnl_3_2_26@libnl_3_2_26 3.5.0-1
|
||||
libnl_3_2_27@libnl_3_2_27 3.5.0-1
|
||||
libnl_3_2_28@libnl_3_2_28 3.5.0-1
|
||||
libnl_3_2_29@libnl_3_2_29 3.5.0-1
|
||||
libnl_3_5@libnl_3_5 3.5.0-1
|
||||
nl_addr2str@Base 3.5.0-1
|
||||
nl_addr2str@libnl_3 3.5.0-1
|
||||
nl_addr_alloc@Base 3.5.0-1
|
||||
nl_addr_alloc@libnl_3 3.5.0-1
|
||||
nl_addr_alloc_attr@Base 3.5.0-1
|
||||
nl_addr_alloc_attr@libnl_3 3.5.0-1
|
||||
nl_addr_build@Base 3.5.0-1
|
||||
nl_addr_build@libnl_3 3.5.0-1
|
||||
nl_addr_clone@Base 3.5.0-1
|
||||
nl_addr_clone@libnl_3 3.5.0-1
|
||||
nl_addr_cmp@Base 3.5.0-1
|
||||
nl_addr_cmp@libnl_3 3.5.0-1
|
||||
nl_addr_cmp_prefix@Base 3.5.0-1
|
||||
nl_addr_cmp_prefix@libnl_3 3.5.0-1
|
||||
nl_addr_fill_sockaddr@Base 3.5.0-1
|
||||
nl_addr_fill_sockaddr@libnl_3 3.5.0-1
|
||||
nl_addr_get@Base 3.5.0-1
|
||||
nl_addr_get@libnl_3 3.5.0-1
|
||||
nl_addr_get_binary_addr@Base 3.5.0-1
|
||||
nl_addr_get_binary_addr@libnl_3 3.5.0-1
|
||||
nl_addr_get_family@Base 3.5.0-1
|
||||
nl_addr_get_family@libnl_3 3.5.0-1
|
||||
nl_addr_get_len@Base 3.5.0-1
|
||||
nl_addr_get_len@libnl_3 3.5.0-1
|
||||
nl_addr_get_prefixlen@Base 3.5.0-1
|
||||
nl_addr_get_prefixlen@libnl_3 3.5.0-1
|
||||
nl_addr_guess_family@Base 3.5.0-1
|
||||
nl_addr_guess_family@libnl_3 3.5.0-1
|
||||
nl_addr_info@Base 3.5.0-1
|
||||
nl_addr_info@libnl_3 3.5.0-1
|
||||
nl_addr_iszero@Base 3.5.0-1
|
||||
nl_addr_iszero@libnl_3 3.5.0-1
|
||||
nl_addr_parse@Base 3.5.0-1
|
||||
nl_addr_parse@libnl_3 3.5.0-1
|
||||
nl_addr_put@Base 3.5.0-1
|
||||
nl_addr_put@libnl_3 3.5.0-1
|
||||
nl_addr_resolve@Base 3.5.0-1
|
||||
nl_addr_resolve@libnl_3 3.5.0-1
|
||||
nl_addr_set_binary_addr@Base 3.5.0-1
|
||||
nl_addr_set_binary_addr@libnl_3 3.5.0-1
|
||||
nl_addr_set_family@Base 3.5.0-1
|
||||
nl_addr_set_family@libnl_3 3.5.0-1
|
||||
nl_addr_set_prefixlen@Base 3.5.0-1
|
||||
nl_addr_set_prefixlen@libnl_3 3.5.0-1
|
||||
nl_addr_shared@Base 3.5.0-1
|
||||
nl_addr_shared@libnl_3 3.5.0-1
|
||||
nl_addr_valid@Base 3.5.0-1
|
||||
nl_addr_valid@libnl_3 3.5.0-1
|
||||
nl_af2str@Base 3.5.0-1
|
||||
nl_af2str@libnl_3 3.5.0-1
|
||||
nl_auto_complete@Base 3.5.0-1
|
||||
nl_auto_complete@libnl_3 3.5.0-1
|
||||
nl_cache_add@Base 3.5.0-1
|
||||
nl_cache_add@libnl_3 3.5.0-1
|
||||
nl_cache_alloc@Base 3.5.0-1
|
||||
nl_cache_alloc@libnl_3 3.5.0-1
|
||||
nl_cache_alloc_and_fill@Base 3.5.0-1
|
||||
nl_cache_alloc_and_fill@libnl_3 3.5.0-1
|
||||
nl_cache_alloc_name@Base 3.5.0-1
|
||||
nl_cache_alloc_name@libnl_3 3.5.0-1
|
||||
nl_cache_clear@Base 3.5.0-1
|
||||
nl_cache_clear@libnl_3 3.5.0-1
|
||||
nl_cache_clone@Base 3.5.0-1
|
||||
nl_cache_clone@libnl_3 3.5.0-1
|
||||
nl_cache_dump@Base 3.5.0-1
|
||||
nl_cache_dump@libnl_3 3.5.0-1
|
||||
nl_cache_dump_filter@Base 3.5.0-1
|
||||
nl_cache_dump_filter@libnl_3 3.5.0-1
|
||||
nl_cache_find@Base 3.5.0-1
|
||||
nl_cache_find@libnl_3 3.5.0-1
|
||||
nl_cache_foreach@Base 3.5.0-1
|
||||
nl_cache_foreach@libnl_3 3.5.0-1
|
||||
nl_cache_foreach_filter@Base 3.5.0-1
|
||||
nl_cache_foreach_filter@libnl_3 3.5.0-1
|
||||
nl_cache_free@Base 3.5.0-1
|
||||
nl_cache_free@libnl_3 3.5.0-1
|
||||
nl_cache_get@Base 3.5.0-1
|
||||
nl_cache_get@libnl_3 3.5.0-1
|
||||
nl_cache_get_first@Base 3.5.0-1
|
||||
nl_cache_get_first@libnl_3 3.5.0-1
|
||||
nl_cache_get_last@Base 3.5.0-1
|
||||
nl_cache_get_last@libnl_3 3.5.0-1
|
||||
nl_cache_get_next@Base 3.5.0-1
|
||||
nl_cache_get_next@libnl_3 3.5.0-1
|
||||
nl_cache_get_ops@Base 3.5.0-1
|
||||
nl_cache_get_ops@libnl_3 3.5.0-1
|
||||
nl_cache_get_prev@Base 3.5.0-1
|
||||
nl_cache_get_prev@libnl_3 3.5.0-1
|
||||
nl_cache_include@Base 3.5.0-1
|
||||
nl_cache_include@libnl_3 3.5.0-1
|
||||
nl_cache_include_v2@libnl_3_2_29 3.5.0-1
|
||||
nl_cache_is_empty@Base 3.5.0-1
|
||||
nl_cache_is_empty@libnl_3 3.5.0-1
|
||||
nl_cache_mark_all@Base 3.5.0-1
|
||||
nl_cache_mark_all@libnl_3 3.5.0-1
|
||||
nl_cache_mngr_add@Base 3.5.0-1
|
||||
nl_cache_mngr_add@libnl_3 3.5.0-1
|
||||
nl_cache_mngr_add_cache@Base 3.5.0-1
|
||||
nl_cache_mngr_add_cache@libnl_3 3.5.0-1
|
||||
nl_cache_mngr_add_cache_v2@libnl_3_2_29 3.5.0-1
|
||||
nl_cache_mngr_alloc@Base 3.5.0-1
|
||||
nl_cache_mngr_alloc@libnl_3 3.5.0-1
|
||||
nl_cache_mngr_data_ready@Base 3.5.0-1
|
||||
nl_cache_mngr_data_ready@libnl_3 3.5.0-1
|
||||
nl_cache_mngr_free@Base 3.5.0-1
|
||||
nl_cache_mngr_free@libnl_3 3.5.0-1
|
||||
nl_cache_mngr_get_fd@Base 3.5.0-1
|
||||
nl_cache_mngr_get_fd@libnl_3 3.5.0-1
|
||||
nl_cache_mngr_info@Base 3.5.0-1
|
||||
nl_cache_mngr_info@libnl_3 3.5.0-1
|
||||
nl_cache_mngr_poll@Base 3.5.0-1
|
||||
nl_cache_mngr_poll@libnl_3 3.5.0-1
|
||||
nl_cache_mngt_provide@Base 3.5.0-1
|
||||
nl_cache_mngt_provide@libnl_3 3.5.0-1
|
||||
nl_cache_mngt_register@Base 3.5.0-1
|
||||
nl_cache_mngt_register@libnl_3 3.5.0-1
|
||||
nl_cache_mngt_require@Base 3.5.0-1
|
||||
nl_cache_mngt_require@libnl_3 3.5.0-1
|
||||
nl_cache_mngt_require_safe@Base 3.5.0-1
|
||||
nl_cache_mngt_require_safe@libnl_3 3.5.0-1
|
||||
nl_cache_mngt_unprovide@Base 3.5.0-1
|
||||
nl_cache_mngt_unprovide@libnl_3 3.5.0-1
|
||||
nl_cache_mngt_unregister@Base 3.5.0-1
|
||||
nl_cache_mngt_unregister@libnl_3 3.5.0-1
|
||||
nl_cache_move@Base 3.5.0-1
|
||||
nl_cache_move@libnl_3 3.5.0-1
|
||||
nl_cache_nitems@Base 3.5.0-1
|
||||
nl_cache_nitems@libnl_3 3.5.0-1
|
||||
nl_cache_nitems_filter@Base 3.5.0-1
|
||||
nl_cache_nitems_filter@libnl_3 3.5.0-1
|
||||
nl_cache_ops_associate@Base 3.5.0-1
|
||||
nl_cache_ops_associate@libnl_3 3.5.0-1
|
||||
nl_cache_ops_associate_safe@Base 3.5.0-1
|
||||
nl_cache_ops_associate_safe@libnl_3 3.5.0-1
|
||||
nl_cache_ops_foreach@Base 3.5.0-1
|
||||
nl_cache_ops_foreach@libnl_3 3.5.0-1
|
||||
nl_cache_ops_get@Base 3.5.0-1
|
||||
nl_cache_ops_get@libnl_3 3.5.0-1
|
||||
nl_cache_ops_lookup@Base 3.5.0-1
|
||||
nl_cache_ops_lookup@libnl_3 3.5.0-1
|
||||
nl_cache_ops_lookup_safe@Base 3.5.0-1
|
||||
nl_cache_ops_lookup_safe@libnl_3 3.5.0-1
|
||||
nl_cache_ops_put@Base 3.5.0-1
|
||||
nl_cache_ops_put@libnl_3 3.5.0-1
|
||||
nl_cache_ops_set_flags@Base 3.5.0-1
|
||||
nl_cache_ops_set_flags@libnl_3 3.5.0-1
|
||||
nl_cache_parse@Base 3.5.0-1
|
||||
nl_cache_parse@libnl_3 3.5.0-1
|
||||
nl_cache_parse_and_add@Base 3.5.0-1
|
||||
nl_cache_parse_and_add@libnl_3 3.5.0-1
|
||||
nl_cache_pickup@Base 3.5.0-1
|
||||
nl_cache_pickup@libnl_3 3.5.0-1
|
||||
nl_cache_pickup_checkdup@Base 3.5.0-1
|
||||
nl_cache_pickup_checkdup@libnl_3 3.5.0-1
|
||||
nl_cache_put@Base 3.5.0-1
|
||||
nl_cache_put@libnl_3 3.5.0-1
|
||||
nl_cache_refill@Base 3.5.0-1
|
||||
nl_cache_refill@libnl_3 3.5.0-1
|
||||
nl_cache_remove@Base 3.5.0-1
|
||||
nl_cache_remove@libnl_3 3.5.0-1
|
||||
nl_cache_resync@Base 3.5.0-1
|
||||
nl_cache_resync@libnl_3 3.5.0-1
|
||||
nl_cache_search@Base 3.5.0-1
|
||||
nl_cache_search@libnl_3 3.5.0-1
|
||||
nl_cache_set_arg1@Base 3.5.0-1
|
||||
nl_cache_set_arg1@libnl_3 3.5.0-1
|
||||
nl_cache_set_arg2@Base 3.5.0-1
|
||||
nl_cache_set_arg2@libnl_3 3.5.0-1
|
||||
nl_cache_set_flags@Base 3.5.0-1
|
||||
nl_cache_set_flags@libnl_3 3.5.0-1
|
||||
nl_cache_subset@Base 3.5.0-1
|
||||
nl_cache_subset@libnl_3 3.5.0-1
|
||||
nl_cancel_down_bits@Base 3.5.0-1
|
||||
nl_cancel_down_bits@libnl_3 3.5.0-1
|
||||
nl_cancel_down_bytes@Base 3.5.0-1
|
||||
nl_cancel_down_bytes@libnl_3 3.5.0-1
|
||||
nl_cancel_down_us@Base 3.5.0-1
|
||||
nl_cancel_down_us@libnl_3 3.5.0-1
|
||||
nl_cb_active_type@Base 3.5.0-1
|
||||
nl_cb_active_type@libnl_3 3.5.0-1
|
||||
nl_cb_alloc@Base 3.5.0-1
|
||||
nl_cb_alloc@libnl_3 3.5.0-1
|
||||
nl_cb_clone@Base 3.5.0-1
|
||||
nl_cb_clone@libnl_3 3.5.0-1
|
||||
nl_cb_err@Base 3.5.0-1
|
||||
nl_cb_err@libnl_3 3.5.0-1
|
||||
nl_cb_get@Base 3.5.0-1
|
||||
nl_cb_get@libnl_3 3.5.0-1
|
||||
nl_cb_overwrite_recv@Base 3.5.0-1
|
||||
nl_cb_overwrite_recv@libnl_3 3.5.0-1
|
||||
nl_cb_overwrite_recvmsgs@Base 3.5.0-1
|
||||
nl_cb_overwrite_recvmsgs@libnl_3 3.5.0-1
|
||||
nl_cb_overwrite_send@Base 3.5.0-1
|
||||
nl_cb_overwrite_send@libnl_3 3.5.0-1
|
||||
nl_cb_put@Base 3.5.0-1
|
||||
nl_cb_put@libnl_3 3.5.0-1
|
||||
nl_cb_set@Base 3.5.0-1
|
||||
nl_cb_set@libnl_3 3.5.0-1
|
||||
nl_cb_set_all@Base 3.5.0-1
|
||||
nl_cb_set_all@libnl_3 3.5.0-1
|
||||
nl_close@Base 3.5.0-1
|
||||
nl_close@libnl_3 3.5.0-1
|
||||
nl_complete_msg@Base 3.5.0-1
|
||||
nl_complete_msg@libnl_3 3.5.0-1
|
||||
nl_connect@Base 3.5.0-1
|
||||
nl_connect@libnl_3 3.5.0-1
|
||||
nl_data_alloc@Base 3.5.0-1
|
||||
nl_data_alloc@libnl_3 3.5.0-1
|
||||
nl_data_alloc_attr@Base 3.5.0-1
|
||||
nl_data_alloc_attr@libnl_3 3.5.0-1
|
||||
nl_data_append@Base 3.5.0-1
|
||||
nl_data_append@libnl_3 3.5.0-1
|
||||
nl_data_clone@Base 3.5.0-1
|
||||
nl_data_clone@libnl_3 3.5.0-1
|
||||
nl_data_cmp@Base 3.5.0-1
|
||||
nl_data_cmp@libnl_3 3.5.0-1
|
||||
nl_data_free@Base 3.5.0-1
|
||||
nl_data_free@libnl_3 3.5.0-1
|
||||
nl_data_get@Base 3.5.0-1
|
||||
nl_data_get@libnl_3 3.5.0-1
|
||||
nl_data_get_size@Base 3.5.0-1
|
||||
nl_data_get_size@libnl_3 3.5.0-1
|
||||
nl_debug@Base 3.5.0-1
|
||||
nl_debug@libnl_3 3.5.0-1
|
||||
nl_debug_dp@Base 3.5.0-1
|
||||
nl_debug_dp@libnl_3 3.5.0-1
|
||||
nl_dump@Base 3.5.0-1
|
||||
nl_dump@libnl_3 3.5.0-1
|
||||
nl_dump_line@Base 3.5.0-1
|
||||
nl_dump_line@libnl_3 3.5.0-1
|
||||
nl_ether_proto2str@Base 3.5.0-1
|
||||
nl_ether_proto2str@libnl_3 3.5.0-1
|
||||
nl_get_psched_hz@Base 3.5.0-1
|
||||
nl_get_psched_hz@libnl_3 3.5.0-1
|
||||
nl_get_user_hz@Base 3.5.0-1
|
||||
nl_get_user_hz@libnl_3 3.5.0-1
|
||||
nl_geterror@Base 3.5.0-1
|
||||
nl_geterror@libnl_3 3.5.0-1
|
||||
nl_has_capability@Base 3.5.0-1
|
||||
nl_has_capability@libnl_3 3.5.0-1
|
||||
nl_hash@Base 3.5.0-1
|
||||
nl_hash@libnl_3 3.5.0-1
|
||||
nl_hash_any@Base 3.5.0-1
|
||||
nl_hash_any@libnl_3 3.5.0-1
|
||||
nl_hash_table_add@Base 3.5.0-1
|
||||
nl_hash_table_add@libnl_3 3.5.0-1
|
||||
nl_hash_table_alloc@Base 3.5.0-1
|
||||
nl_hash_table_alloc@libnl_3 3.5.0-1
|
||||
nl_hash_table_del@Base 3.5.0-1
|
||||
nl_hash_table_del@libnl_3 3.5.0-1
|
||||
nl_hash_table_free@Base 3.5.0-1
|
||||
nl_hash_table_free@libnl_3 3.5.0-1
|
||||
nl_hash_table_lookup@Base 3.5.0-1
|
||||
nl_hash_table_lookup@libnl_3 3.5.0-1
|
||||
nl_ip_proto2str@Base 3.5.0-1
|
||||
nl_ip_proto2str@libnl_3 3.5.0-1
|
||||
nl_join_groups@Base 3.5.0-1
|
||||
nl_join_groups@libnl_3 3.5.0-1
|
||||
nl_llproto2str@Base 3.5.0-1
|
||||
nl_llproto2str@libnl_3 3.5.0-1
|
||||
nl_msec2str@Base 3.5.0-1
|
||||
nl_msec2str@libnl_3 3.5.0-1
|
||||
nl_msg_dump@Base 3.5.0-1
|
||||
nl_msg_dump@libnl_3 3.5.0-1
|
||||
nl_msg_parse@Base 3.5.0-1
|
||||
nl_msg_parse@libnl_3 3.5.0-1
|
||||
nl_msgtype_lookup@Base 3.5.0-1
|
||||
nl_msgtype_lookup@libnl_3 3.5.0-1
|
||||
nl_new_line@Base 3.5.0-1
|
||||
nl_new_line@libnl_3 3.5.0-1
|
||||
nl_nlfamily2str@Base 3.5.0-1
|
||||
nl_nlfamily2str@libnl_3 3.5.0-1
|
||||
nl_nlmsg_flags2str@Base 3.5.0-1
|
||||
nl_nlmsg_flags2str@libnl_3 3.5.0-1
|
||||
nl_nlmsgtype2str@Base 3.5.0-1
|
||||
nl_nlmsgtype2str@libnl_3 3.5.0-1
|
||||
nl_object_alloc@Base 3.5.0-1
|
||||
nl_object_alloc@libnl_3 3.5.0-1
|
||||
nl_object_alloc_name@Base 3.5.0-1
|
||||
nl_object_alloc_name@libnl_3 3.5.0-1
|
||||
nl_object_attr_list@Base 3.5.0-1
|
||||
nl_object_attr_list@libnl_3 3.5.0-1
|
||||
nl_object_attrs2str@Base 3.5.0-1
|
||||
nl_object_attrs2str@libnl_3 3.5.0-1
|
||||
nl_object_clone@Base 3.5.0-1
|
||||
nl_object_clone@libnl_3 3.5.0-1
|
||||
nl_object_diff64@libnl_3_2_28 3.5.0-1
|
||||
nl_object_diff@Base 3.5.0-1
|
||||
nl_object_diff@libnl_3 3.5.0-1
|
||||
nl_object_dump@Base 3.5.0-1
|
||||
nl_object_dump@libnl_3 3.5.0-1
|
||||
nl_object_dump_buf@Base 3.5.0-1
|
||||
nl_object_dump_buf@libnl_3 3.5.0-1
|
||||
nl_object_free@Base 3.5.0-1
|
||||
nl_object_free@libnl_3 3.5.0-1
|
||||
nl_object_get@Base 3.5.0-1
|
||||
nl_object_get@libnl_3 3.5.0-1
|
||||
nl_object_get_cache@Base 3.5.0-1
|
||||
nl_object_get_cache@libnl_3 3.5.0-1
|
||||
nl_object_get_id_attrs@Base 3.5.0-1
|
||||
nl_object_get_id_attrs@libnl_3 3.5.0-1
|
||||
nl_object_get_msgtype@Base 3.5.0-1
|
||||
nl_object_get_msgtype@libnl_3 3.5.0-1
|
||||
nl_object_get_ops@Base 3.5.0-1
|
||||
nl_object_get_ops@libnl_3 3.5.0-1
|
||||
nl_object_get_refcnt@Base 3.5.0-1
|
||||
nl_object_get_refcnt@libnl_3 3.5.0-1
|
||||
nl_object_get_type@Base 3.5.0-1
|
||||
nl_object_get_type@libnl_3 3.5.0-1
|
||||
nl_object_identical@Base 3.5.0-1
|
||||
nl_object_identical@libnl_3 3.5.0-1
|
||||
nl_object_is_marked@Base 3.5.0-1
|
||||
nl_object_is_marked@libnl_3 3.5.0-1
|
||||
nl_object_keygen@Base 3.5.0-1
|
||||
nl_object_keygen@libnl_3 3.5.0-1
|
||||
nl_object_mark@Base 3.5.0-1
|
||||
nl_object_mark@libnl_3 3.5.0-1
|
||||
nl_object_match_filter@Base 3.5.0-1
|
||||
nl_object_match_filter@libnl_3 3.5.0-1
|
||||
nl_object_put@Base 3.5.0-1
|
||||
nl_object_put@libnl_3 3.5.0-1
|
||||
nl_object_shared@Base 3.5.0-1
|
||||
nl_object_shared@libnl_3 3.5.0-1
|
||||
nl_object_unmark@Base 3.5.0-1
|
||||
nl_object_unmark@libnl_3 3.5.0-1
|
||||
nl_object_update@Base 3.5.0-1
|
||||
nl_object_update@libnl_3 3.5.0-1
|
||||
nl_perror@Base 3.5.0-1
|
||||
nl_perror@libnl_3 3.5.0-1
|
||||
nl_pickup@Base 3.5.0-1
|
||||
nl_pickup@libnl_3 3.5.0-1
|
||||
nl_pickup_keep_syserr@Base 3.5.0-1
|
||||
nl_pickup_keep_syserr@libnl_3 3.5.0-1
|
||||
nl_prob2int@Base 3.5.0-1
|
||||
nl_prob2int@libnl_3 3.5.0-1
|
||||
nl_rate2str@Base 3.5.0-1
|
||||
nl_rate2str@libnl_3 3.5.0-1
|
||||
nl_recv@Base 3.5.0-1
|
||||
nl_recv@libnl_3 3.5.0-1
|
||||
nl_recvmsgs@Base 3.5.0-1
|
||||
nl_recvmsgs@libnl_3 3.5.0-1
|
||||
nl_recvmsgs_default@Base 3.5.0-1
|
||||
nl_recvmsgs_default@libnl_3 3.5.0-1
|
||||
nl_recvmsgs_report@Base 3.5.0-1
|
||||
nl_recvmsgs_report@libnl_3 3.5.0-1
|
||||
nl_send@Base 3.5.0-1
|
||||
nl_send@libnl_3 3.5.0-1
|
||||
nl_send_auto@Base 3.5.0-1
|
||||
nl_send_auto@libnl_3 3.5.0-1
|
||||
nl_send_auto_complete@Base 3.5.0-1
|
||||
nl_send_auto_complete@libnl_3 3.5.0-1
|
||||
nl_send_iovec@Base 3.5.0-1
|
||||
nl_send_iovec@libnl_3 3.5.0-1
|
||||
nl_send_simple@Base 3.5.0-1
|
||||
nl_send_simple@libnl_3 3.5.0-1
|
||||
nl_send_sync@Base 3.5.0-1
|
||||
nl_send_sync@libnl_3 3.5.0-1
|
||||
nl_sendmsg@Base 3.5.0-1
|
||||
nl_sendmsg@libnl_3 3.5.0-1
|
||||
nl_sendto@Base 3.5.0-1
|
||||
nl_sendto@libnl_3 3.5.0-1
|
||||
nl_size2int@Base 3.5.0-1
|
||||
nl_size2int@libnl_3 3.5.0-1
|
||||
nl_size2str@Base 3.5.0-1
|
||||
nl_size2str@libnl_3 3.5.0-1
|
||||
nl_socket_add_membership@Base 3.5.0-1
|
||||
nl_socket_add_membership@libnl_3 3.5.0-1
|
||||
nl_socket_add_memberships@Base 3.5.0-1
|
||||
nl_socket_add_memberships@libnl_3 3.5.0-1
|
||||
nl_socket_alloc@Base 3.5.0-1
|
||||
nl_socket_alloc@libnl_3 3.5.0-1
|
||||
nl_socket_alloc_cb@Base 3.5.0-1
|
||||
nl_socket_alloc_cb@libnl_3 3.5.0-1
|
||||
nl_socket_disable_auto_ack@Base 3.5.0-1
|
||||
nl_socket_disable_auto_ack@libnl_3 3.5.0-1
|
||||
nl_socket_disable_msg_peek@Base 3.5.0-1
|
||||
nl_socket_disable_msg_peek@libnl_3 3.5.0-1
|
||||
nl_socket_disable_seq_check@Base 3.5.0-1
|
||||
nl_socket_disable_seq_check@libnl_3 3.5.0-1
|
||||
nl_socket_drop_membership@Base 3.5.0-1
|
||||
nl_socket_drop_membership@libnl_3 3.5.0-1
|
||||
nl_socket_drop_memberships@Base 3.5.0-1
|
||||
nl_socket_drop_memberships@libnl_3 3.5.0-1
|
||||
nl_socket_enable_auto_ack@Base 3.5.0-1
|
||||
nl_socket_enable_auto_ack@libnl_3 3.5.0-1
|
||||
nl_socket_enable_msg_peek@Base 3.5.0-1
|
||||
nl_socket_enable_msg_peek@libnl_3 3.5.0-1
|
||||
nl_socket_free@Base 3.5.0-1
|
||||
nl_socket_free@libnl_3 3.5.0-1
|
||||
nl_socket_get_cb@Base 3.5.0-1
|
||||
nl_socket_get_cb@libnl_3 3.5.0-1
|
||||
nl_socket_get_fd@Base 3.5.0-1
|
||||
nl_socket_get_fd@libnl_3 3.5.0-1
|
||||
nl_socket_get_local_port@Base 3.5.0-1
|
||||
nl_socket_get_local_port@libnl_3 3.5.0-1
|
||||
nl_socket_get_msg_buf_size@Base 3.5.0-1
|
||||
nl_socket_get_msg_buf_size@libnl_3 3.5.0-1
|
||||
nl_socket_get_peer_groups@Base 3.5.0-1
|
||||
nl_socket_get_peer_groups@libnl_3 3.5.0-1
|
||||
nl_socket_get_peer_port@Base 3.5.0-1
|
||||
nl_socket_get_peer_port@libnl_3 3.5.0-1
|
||||
nl_socket_modify_cb@Base 3.5.0-1
|
||||
nl_socket_modify_cb@libnl_3 3.5.0-1
|
||||
nl_socket_modify_err_cb@Base 3.5.0-1
|
||||
nl_socket_modify_err_cb@libnl_3 3.5.0-1
|
||||
nl_socket_recv_pktinfo@Base 3.5.0-1
|
||||
nl_socket_recv_pktinfo@libnl_3 3.5.0-1
|
||||
nl_socket_set_buffer_size@Base 3.5.0-1
|
||||
nl_socket_set_buffer_size@libnl_3 3.5.0-1
|
||||
nl_socket_set_cb@Base 3.5.0-1
|
||||
nl_socket_set_cb@libnl_3 3.5.0-1
|
||||
nl_socket_set_fd@Base 3.5.0-1
|
||||
nl_socket_set_fd@libnl_3_2_26 3.5.0-1
|
||||
nl_socket_set_local_port@Base 3.5.0-1
|
||||
nl_socket_set_local_port@libnl_3 3.5.0-1
|
||||
nl_socket_set_msg_buf_size@Base 3.5.0-1
|
||||
nl_socket_set_msg_buf_size@libnl_3 3.5.0-1
|
||||
nl_socket_set_nonblocking@Base 3.5.0-1
|
||||
nl_socket_set_nonblocking@libnl_3 3.5.0-1
|
||||
nl_socket_set_passcred@Base 3.5.0-1
|
||||
nl_socket_set_passcred@libnl_3 3.5.0-1
|
||||
nl_socket_set_peer_groups@Base 3.5.0-1
|
||||
nl_socket_set_peer_groups@libnl_3 3.5.0-1
|
||||
nl_socket_set_peer_port@Base 3.5.0-1
|
||||
nl_socket_set_peer_port@libnl_3 3.5.0-1
|
||||
nl_socket_use_seq@Base 3.5.0-1
|
||||
nl_socket_use_seq@libnl_3 3.5.0-1
|
||||
nl_str2af@Base 3.5.0-1
|
||||
nl_str2af@libnl_3 3.5.0-1
|
||||
nl_str2ether_proto@Base 3.5.0-1
|
||||
nl_str2ether_proto@libnl_3 3.5.0-1
|
||||
nl_str2ip_proto@Base 3.5.0-1
|
||||
nl_str2ip_proto@libnl_3 3.5.0-1
|
||||
nl_str2llproto@Base 3.5.0-1
|
||||
nl_str2llproto@libnl_3 3.5.0-1
|
||||
nl_str2msec@Base 3.5.0-1
|
||||
nl_str2msec@libnl_3 3.5.0-1
|
||||
nl_str2nlfamily@Base 3.5.0-1
|
||||
nl_str2nlfamily@libnl_3 3.5.0-1
|
||||
nl_str2nlmsgtype@Base 3.5.0-1
|
||||
nl_str2nlmsgtype@libnl_3 3.5.0-1
|
||||
nl_strerror_l@libnl_3_2_29 3.5.0-1
|
||||
nl_syserr2nlerr@Base 3.5.0-1
|
||||
nl_syserr2nlerr@libnl_3 3.5.0-1
|
||||
nl_ticks2us@Base 3.5.0-1
|
||||
nl_ticks2us@libnl_3 3.5.0-1
|
||||
nl_us2ticks@Base 3.5.0-1
|
||||
nl_us2ticks@libnl_3 3.5.0-1
|
||||
nl_ver_maj@Base 3.5.0-1
|
||||
nl_ver_maj@libnl_3 3.5.0-1
|
||||
nl_ver_mic@Base 3.5.0-1
|
||||
nl_ver_mic@libnl_3 3.5.0-1
|
||||
nl_ver_min@Base 3.5.0-1
|
||||
nl_ver_min@libnl_3 3.5.0-1
|
||||
nl_ver_num@Base 3.5.0-1
|
||||
nl_ver_num@libnl_3 3.5.0-1
|
||||
nl_wait_for_ack@Base 3.5.0-1
|
||||
nl_wait_for_ack@libnl_3 3.5.0-1
|
||||
nla_attr_size@Base 3.5.0-1
|
||||
nla_attr_size@libnl_3 3.5.0-1
|
||||
nla_data@Base 3.5.0-1
|
||||
nla_data@libnl_3 3.5.0-1
|
||||
nla_find@Base 3.5.0-1
|
||||
nla_find@libnl_3 3.5.0-1
|
||||
nla_get_flag@Base 3.5.0-1
|
||||
nla_get_flag@libnl_3 3.5.0-1
|
||||
nla_get_msecs@Base 3.5.0-1
|
||||
nla_get_msecs@libnl_3 3.5.0-1
|
||||
nla_get_s16@Base 3.5.0-1
|
||||
nla_get_s16@libnl_3_2_27 3.5.0-1
|
||||
nla_get_s32@Base 3.5.0-1
|
||||
nla_get_s32@libnl_3_2_27 3.5.0-1
|
||||
nla_get_s64@Base 3.5.0-1
|
||||
nla_get_s64@libnl_3_2_27 3.5.0-1
|
||||
nla_get_s8@Base 3.5.0-1
|
||||
nla_get_s8@libnl_3_2_27 3.5.0-1
|
||||
nla_get_string@Base 3.5.0-1
|
||||
nla_get_string@libnl_3 3.5.0-1
|
||||
nla_get_u16@Base 3.5.0-1
|
||||
nla_get_u16@libnl_3 3.5.0-1
|
||||
nla_get_u32@Base 3.5.0-1
|
||||
nla_get_u32@libnl_3 3.5.0-1
|
||||
nla_get_u64@Base 3.5.0-1
|
||||
nla_get_u64@libnl_3 3.5.0-1
|
||||
nla_get_u8@Base 3.5.0-1
|
||||
nla_get_u8@libnl_3 3.5.0-1
|
||||
nla_is_nested@Base 3.5.0-1
|
||||
nla_is_nested@libnl_3 3.5.0-1
|
||||
nla_len@Base 3.5.0-1
|
||||
nla_len@libnl_3 3.5.0-1
|
||||
nla_memcmp@Base 3.5.0-1
|
||||
nla_memcmp@libnl_3 3.5.0-1
|
||||
nla_memcpy@Base 3.5.0-1
|
||||
nla_memcpy@libnl_3 3.5.0-1
|
||||
nla_nest_cancel@Base 3.5.0-1
|
||||
nla_nest_cancel@libnl_3 3.5.0-1
|
||||
nla_nest_end@Base 3.5.0-1
|
||||
nla_nest_end@libnl_3 3.5.0-1
|
||||
nla_nest_end_keep_empty@libnl_3_5 3.5.0-1
|
||||
nla_nest_start@Base 3.5.0-1
|
||||
nla_nest_start@libnl_3 3.5.0-1
|
||||
nla_next@Base 3.5.0-1
|
||||
nla_next@libnl_3 3.5.0-1
|
||||
nla_ok@Base 3.5.0-1
|
||||
nla_ok@libnl_3 3.5.0-1
|
||||
nla_padlen@Base 3.5.0-1
|
||||
nla_padlen@libnl_3 3.5.0-1
|
||||
nla_parse@Base 3.5.0-1
|
||||
nla_parse@libnl_3 3.5.0-1
|
||||
nla_parse_nested@Base 3.5.0-1
|
||||
nla_parse_nested@libnl_3 3.5.0-1
|
||||
nla_put@Base 3.5.0-1
|
||||
nla_put@libnl_3 3.5.0-1
|
||||
nla_put_addr@Base 3.5.0-1
|
||||
nla_put_addr@libnl_3 3.5.0-1
|
||||
nla_put_data@Base 3.5.0-1
|
||||
nla_put_data@libnl_3 3.5.0-1
|
||||
nla_put_flag@Base 3.5.0-1
|
||||
nla_put_flag@libnl_3 3.5.0-1
|
||||
nla_put_msecs@Base 3.5.0-1
|
||||
nla_put_msecs@libnl_3 3.5.0-1
|
||||
nla_put_nested@Base 3.5.0-1
|
||||
nla_put_nested@libnl_3 3.5.0-1
|
||||
nla_put_s16@Base 3.5.0-1
|
||||
nla_put_s16@libnl_3_2_27 3.5.0-1
|
||||
nla_put_s32@Base 3.5.0-1
|
||||
nla_put_s32@libnl_3_2_27 3.5.0-1
|
||||
nla_put_s64@Base 3.5.0-1
|
||||
nla_put_s64@libnl_3_2_27 3.5.0-1
|
||||
nla_put_s8@Base 3.5.0-1
|
||||
nla_put_s8@libnl_3_2_27 3.5.0-1
|
||||
nla_put_string@Base 3.5.0-1
|
||||
nla_put_string@libnl_3 3.5.0-1
|
||||
nla_put_u16@Base 3.5.0-1
|
||||
nla_put_u16@libnl_3 3.5.0-1
|
||||
nla_put_u32@Base 3.5.0-1
|
||||
nla_put_u32@libnl_3 3.5.0-1
|
||||
nla_put_u64@Base 3.5.0-1
|
||||
nla_put_u64@libnl_3 3.5.0-1
|
||||
nla_put_u8@Base 3.5.0-1
|
||||
nla_put_u8@libnl_3 3.5.0-1
|
||||
nla_reserve@Base 3.5.0-1
|
||||
nla_reserve@libnl_3 3.5.0-1
|
||||
nla_strcmp@Base 3.5.0-1
|
||||
nla_strcmp@libnl_3 3.5.0-1
|
||||
nla_strdup@Base 3.5.0-1
|
||||
nla_strdup@libnl_3 3.5.0-1
|
||||
nla_strlcpy@Base 3.5.0-1
|
||||
nla_strlcpy@libnl_3 3.5.0-1
|
||||
nla_total_size@Base 3.5.0-1
|
||||
nla_total_size@libnl_3 3.5.0-1
|
||||
nla_type@Base 3.5.0-1
|
||||
nla_type@libnl_3 3.5.0-1
|
||||
nla_validate@Base 3.5.0-1
|
||||
nla_validate@libnl_3 3.5.0-1
|
||||
nlmsg_alloc@Base 3.5.0-1
|
||||
nlmsg_alloc@libnl_3 3.5.0-1
|
||||
nlmsg_alloc_simple@Base 3.5.0-1
|
||||
nlmsg_alloc_simple@libnl_3 3.5.0-1
|
||||
nlmsg_alloc_size@Base 3.5.0-1
|
||||
nlmsg_alloc_size@libnl_3 3.5.0-1
|
||||
nlmsg_append@Base 3.5.0-1
|
||||
nlmsg_append@libnl_3 3.5.0-1
|
||||
nlmsg_attrdata@Base 3.5.0-1
|
||||
nlmsg_attrdata@libnl_3 3.5.0-1
|
||||
nlmsg_attrlen@Base 3.5.0-1
|
||||
nlmsg_attrlen@libnl_3 3.5.0-1
|
||||
nlmsg_convert@Base 3.5.0-1
|
||||
nlmsg_convert@libnl_3 3.5.0-1
|
||||
nlmsg_data@Base 3.5.0-1
|
||||
nlmsg_data@libnl_3 3.5.0-1
|
||||
nlmsg_datalen@Base 3.5.0-1
|
||||
nlmsg_datalen@libnl_3 3.5.0-1
|
||||
nlmsg_expand@Base 3.5.0-1
|
||||
nlmsg_expand@libnl_3 3.5.0-1
|
||||
nlmsg_find_attr@Base 3.5.0-1
|
||||
nlmsg_find_attr@libnl_3 3.5.0-1
|
||||
nlmsg_free@Base 3.5.0-1
|
||||
nlmsg_free@libnl_3 3.5.0-1
|
||||
nlmsg_get@Base 3.5.0-1
|
||||
nlmsg_get@libnl_3 3.5.0-1
|
||||
nlmsg_get_creds@Base 3.5.0-1
|
||||
nlmsg_get_creds@libnl_3 3.5.0-1
|
||||
nlmsg_get_dst@Base 3.5.0-1
|
||||
nlmsg_get_dst@libnl_3 3.5.0-1
|
||||
nlmsg_get_max_size@Base 3.5.0-1
|
||||
nlmsg_get_max_size@libnl_3 3.5.0-1
|
||||
nlmsg_get_proto@Base 3.5.0-1
|
||||
nlmsg_get_proto@libnl_3 3.5.0-1
|
||||
nlmsg_get_src@Base 3.5.0-1
|
||||
nlmsg_get_src@libnl_3 3.5.0-1
|
||||
nlmsg_hdr@Base 3.5.0-1
|
||||
nlmsg_hdr@libnl_3 3.5.0-1
|
||||
nlmsg_inherit@Base 3.5.0-1
|
||||
nlmsg_inherit@libnl_3 3.5.0-1
|
||||
nlmsg_next@Base 3.5.0-1
|
||||
nlmsg_next@libnl_3 3.5.0-1
|
||||
nlmsg_ok@Base 3.5.0-1
|
||||
nlmsg_ok@libnl_3 3.5.0-1
|
||||
nlmsg_padlen@Base 3.5.0-1
|
||||
nlmsg_padlen@libnl_3 3.5.0-1
|
||||
nlmsg_parse@Base 3.5.0-1
|
||||
nlmsg_parse@libnl_3 3.5.0-1
|
||||
nlmsg_put@Base 3.5.0-1
|
||||
nlmsg_put@libnl_3 3.5.0-1
|
||||
nlmsg_reserve@Base 3.5.0-1
|
||||
nlmsg_reserve@libnl_3 3.5.0-1
|
||||
nlmsg_set_creds@Base 3.5.0-1
|
||||
nlmsg_set_creds@libnl_3 3.5.0-1
|
||||
nlmsg_set_default_size@Base 3.5.0-1
|
||||
nlmsg_set_default_size@libnl_3 3.5.0-1
|
||||
nlmsg_set_dst@Base 3.5.0-1
|
||||
nlmsg_set_dst@libnl_3 3.5.0-1
|
||||
nlmsg_set_proto@Base 3.5.0-1
|
||||
nlmsg_set_proto@libnl_3 3.5.0-1
|
||||
nlmsg_set_src@Base 3.5.0-1
|
||||
nlmsg_set_src@libnl_3 3.5.0-1
|
||||
nlmsg_size@Base 3.5.0-1
|
||||
nlmsg_size@libnl_3 3.5.0-1
|
||||
nlmsg_tail@Base 3.5.0-1
|
||||
nlmsg_tail@libnl_3 3.5.0-1
|
||||
nlmsg_total_size@Base 3.5.0-1
|
||||
nlmsg_total_size@libnl_3 3.5.0-1
|
||||
nlmsg_valid_hdr@Base 3.5.0-1
|
||||
nlmsg_valid_hdr@libnl_3 3.5.0-1
|
||||
nlmsg_validate@Base 3.5.0-1
|
||||
nlmsg_validate@libnl_3 3.5.0-1
|
5
src/libnl3/debian/libnl-3-dev.install
Executable file
5
src/libnl3/debian/libnl-3-dev.install
Executable file
@ -0,0 +1,5 @@
|
||||
#!/usr/bin/dh-exec
|
||||
debian/tmp/usr/include/*
|
||||
debian/tmp/usr/lib/*/pkgconfig/libnl-3*
|
||||
debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/libnl-3.so lib/${DEB_HOST_MULTIARCH}/
|
||||
debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/libnl-3.a lib/${DEB_HOST_MULTIARCH}/
|
4
src/libnl3/debian/libnl-cli-3-200.install
Executable file
4
src/libnl3/debian/libnl-cli-3-200.install
Executable file
@ -0,0 +1,4 @@
|
||||
#!/usr/bin/dh-exec
|
||||
debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/libnl-cli-3*.so.*
|
||||
debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/libnl/cli/cls/*.so usr/lib/${DEB_HOST_MULTIARCH}/libnl-3/cli/cls
|
||||
debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/libnl/cli/qdisc/*.so usr/lib/${DEB_HOST_MULTIARCH}/libnl-3/cli/qdisc
|
226
src/libnl3/debian/libnl-cli-3-200.symbols
Normal file
226
src/libnl3/debian/libnl-cli-3-200.symbols
Normal file
@ -0,0 +1,226 @@
|
||||
basic.so libnl-cli-3-200 #MINVER#
|
||||
bfifo.so libnl-cli-3-200 #MINVER#
|
||||
blackhole.so libnl-cli-3-200 #MINVER#
|
||||
cgroup.so libnl-cli-3-200 #MINVER#
|
||||
fq_codel.so libnl-cli-3-200 #MINVER#
|
||||
hfsc.so libnl-cli-3-200 #MINVER#
|
||||
htb.so libnl-cli-3-200 #MINVER#
|
||||
ingress.so libnl-cli-3-200 #MINVER#
|
||||
libnl-cli-3.so.200 libnl-cli-3-200 #MINVER#
|
||||
libnl_3@libnl_3 3.5.0-1
|
||||
libnl_3_2_28@libnl_3_2_28 3.5.0-1
|
||||
nl_cli_addr_alloc@Base 3.5.0-1
|
||||
nl_cli_addr_alloc@libnl_3 3.5.0-1
|
||||
nl_cli_addr_parse@Base 3.5.0-1
|
||||
nl_cli_addr_parse@libnl_3 3.5.0-1
|
||||
nl_cli_addr_parse_broadcast@Base 3.5.0-1
|
||||
nl_cli_addr_parse_broadcast@libnl_3 3.5.0-1
|
||||
nl_cli_addr_parse_dev@Base 3.5.0-1
|
||||
nl_cli_addr_parse_dev@libnl_3 3.5.0-1
|
||||
nl_cli_addr_parse_family@Base 3.5.0-1
|
||||
nl_cli_addr_parse_family@libnl_3 3.5.0-1
|
||||
nl_cli_addr_parse_label@Base 3.5.0-1
|
||||
nl_cli_addr_parse_label@libnl_3 3.5.0-1
|
||||
nl_cli_addr_parse_local@Base 3.5.0-1
|
||||
nl_cli_addr_parse_local@libnl_3 3.5.0-1
|
||||
nl_cli_addr_parse_peer@Base 3.5.0-1
|
||||
nl_cli_addr_parse_peer@libnl_3 3.5.0-1
|
||||
nl_cli_addr_parse_preferred@Base 3.5.0-1
|
||||
nl_cli_addr_parse_preferred@libnl_3 3.5.0-1
|
||||
nl_cli_addr_parse_scope@Base 3.5.0-1
|
||||
nl_cli_addr_parse_scope@libnl_3 3.5.0-1
|
||||
nl_cli_addr_parse_valid@Base 3.5.0-1
|
||||
nl_cli_addr_parse_valid@libnl_3 3.5.0-1
|
||||
nl_cli_alloc_cache@Base 3.5.0-1
|
||||
nl_cli_alloc_cache@libnl_3 3.5.0-1
|
||||
nl_cli_alloc_cache_flags@libnl_3_2_28 3.5.0-1
|
||||
nl_cli_alloc_socket@Base 3.5.0-1
|
||||
nl_cli_alloc_socket@libnl_3 3.5.0-1
|
||||
nl_cli_class_alloc@Base 3.5.0-1
|
||||
nl_cli_class_alloc@libnl_3 3.5.0-1
|
||||
nl_cli_class_alloc_cache@Base 3.5.0-1
|
||||
nl_cli_class_alloc_cache@libnl_3 3.5.0-1
|
||||
nl_cli_cls_alloc@Base 3.5.0-1
|
||||
nl_cli_cls_alloc@libnl_3 3.5.0-1
|
||||
nl_cli_cls_alloc_cache@Base 3.5.0-1
|
||||
nl_cli_cls_alloc_cache@libnl_3 3.5.0-1
|
||||
nl_cli_cls_parse_ematch@Base 3.5.0-1
|
||||
nl_cli_cls_parse_ematch@libnl_3 3.5.0-1
|
||||
nl_cli_cls_parse_proto@Base 3.5.0-1
|
||||
nl_cli_cls_parse_proto@libnl_3 3.5.0-1
|
||||
nl_cli_confirm@Base 3.5.0-1
|
||||
nl_cli_confirm@libnl_3 3.5.0-1
|
||||
nl_cli_connect@Base 3.5.0-1
|
||||
nl_cli_connect@libnl_3 3.5.0-1
|
||||
nl_cli_ct_alloc@Base 3.5.0-1
|
||||
nl_cli_ct_alloc@libnl_3 3.5.0-1
|
||||
nl_cli_ct_alloc_cache@Base 3.5.0-1
|
||||
nl_cli_ct_alloc_cache@libnl_3 3.5.0-1
|
||||
nl_cli_ct_parse_dst@Base 3.5.0-1
|
||||
nl_cli_ct_parse_dst@libnl_3 3.5.0-1
|
||||
nl_cli_ct_parse_dst_port@Base 3.5.0-1
|
||||
nl_cli_ct_parse_dst_port@libnl_3 3.5.0-1
|
||||
nl_cli_ct_parse_family@Base 3.5.0-1
|
||||
nl_cli_ct_parse_family@libnl_3 3.5.0-1
|
||||
nl_cli_ct_parse_id@Base 3.5.0-1
|
||||
nl_cli_ct_parse_id@libnl_3 3.5.0-1
|
||||
nl_cli_ct_parse_mark@Base 3.5.0-1
|
||||
nl_cli_ct_parse_mark@libnl_3 3.5.0-1
|
||||
nl_cli_ct_parse_protocol@Base 3.5.0-1
|
||||
nl_cli_ct_parse_protocol@libnl_3 3.5.0-1
|
||||
nl_cli_ct_parse_src@Base 3.5.0-1
|
||||
nl_cli_ct_parse_src@libnl_3 3.5.0-1
|
||||
nl_cli_ct_parse_src_port@Base 3.5.0-1
|
||||
nl_cli_ct_parse_src_port@libnl_3 3.5.0-1
|
||||
nl_cli_ct_parse_status@Base 3.5.0-1
|
||||
nl_cli_ct_parse_status@libnl_3 3.5.0-1
|
||||
nl_cli_ct_parse_tcp_state@Base 3.5.0-1
|
||||
nl_cli_ct_parse_tcp_state@libnl_3 3.5.0-1
|
||||
nl_cli_ct_parse_timeout@Base 3.5.0-1
|
||||
nl_cli_ct_parse_timeout@libnl_3 3.5.0-1
|
||||
nl_cli_ct_parse_use@Base 3.5.0-1
|
||||
nl_cli_ct_parse_use@libnl_3 3.5.0-1
|
||||
nl_cli_ct_parse_zone@Base 3.5.0-1
|
||||
nl_cli_ct_parse_zone@libnl_3 3.5.0-1
|
||||
nl_cli_exp_alloc@Base 3.5.0-1
|
||||
nl_cli_exp_alloc@libnl_3 3.5.0-1
|
||||
nl_cli_exp_alloc_cache@Base 3.5.0-1
|
||||
nl_cli_exp_alloc_cache@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_class@Base 3.5.0-1
|
||||
nl_cli_exp_parse_class@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_dst@Base 3.5.0-1
|
||||
nl_cli_exp_parse_dst@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_dst_port@Base 3.5.0-1
|
||||
nl_cli_exp_parse_dst_port@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_family@Base 3.5.0-1
|
||||
nl_cli_exp_parse_family@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_flags@Base 3.5.0-1
|
||||
nl_cli_exp_parse_flags@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_fn@Base 3.5.0-1
|
||||
nl_cli_exp_parse_fn@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_helper_name@Base 3.5.0-1
|
||||
nl_cli_exp_parse_helper_name@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_icmp_code@Base 3.5.0-1
|
||||
nl_cli_exp_parse_icmp_code@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_icmp_id@Base 3.5.0-1
|
||||
nl_cli_exp_parse_icmp_id@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_icmp_type@Base 3.5.0-1
|
||||
nl_cli_exp_parse_icmp_type@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_id@Base 3.5.0-1
|
||||
nl_cli_exp_parse_id@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_l4protonum@Base 3.5.0-1
|
||||
nl_cli_exp_parse_l4protonum@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_nat_dir@Base 3.5.0-1
|
||||
nl_cli_exp_parse_nat_dir@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_src@Base 3.5.0-1
|
||||
nl_cli_exp_parse_src@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_src_port@Base 3.5.0-1
|
||||
nl_cli_exp_parse_src_port@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_timeout@Base 3.5.0-1
|
||||
nl_cli_exp_parse_timeout@libnl_3 3.5.0-1
|
||||
nl_cli_exp_parse_zone@Base 3.5.0-1
|
||||
nl_cli_exp_parse_zone@libnl_3 3.5.0-1
|
||||
nl_cli_fatal@Base 3.5.0-1
|
||||
nl_cli_fatal@libnl_3 3.5.0-1
|
||||
nl_cli_link_alloc@Base 3.5.0-1
|
||||
nl_cli_link_alloc@libnl_3 3.5.0-1
|
||||
nl_cli_link_alloc_cache@Base 3.5.0-1
|
||||
nl_cli_link_alloc_cache@libnl_3 3.5.0-1
|
||||
nl_cli_link_alloc_cache_family@Base 3.5.0-1
|
||||
nl_cli_link_alloc_cache_family@libnl_3 3.5.0-1
|
||||
nl_cli_link_alloc_cache_family_flags@libnl_3_2_28 3.5.0-1
|
||||
nl_cli_link_alloc_cache_flags@libnl_3_2_28 3.5.0-1
|
||||
nl_cli_link_parse_family@Base 3.5.0-1
|
||||
nl_cli_link_parse_family@libnl_3 3.5.0-1
|
||||
nl_cli_link_parse_ifalias@Base 3.5.0-1
|
||||
nl_cli_link_parse_ifalias@libnl_3 3.5.0-1
|
||||
nl_cli_link_parse_ifindex@Base 3.5.0-1
|
||||
nl_cli_link_parse_ifindex@libnl_3 3.5.0-1
|
||||
nl_cli_link_parse_mtu@Base 3.5.0-1
|
||||
nl_cli_link_parse_mtu@libnl_3 3.5.0-1
|
||||
nl_cli_link_parse_name@Base 3.5.0-1
|
||||
nl_cli_link_parse_name@libnl_3 3.5.0-1
|
||||
nl_cli_link_parse_txqlen@Base 3.5.0-1
|
||||
nl_cli_link_parse_txqlen@libnl_3 3.5.0-1
|
||||
nl_cli_link_parse_weight@Base 3.5.0-1
|
||||
nl_cli_link_parse_weight@libnl_3 3.5.0-1
|
||||
nl_cli_load_module@Base 3.5.0-1
|
||||
nl_cli_load_module@libnl_3 3.5.0-1
|
||||
nl_cli_neigh_alloc@Base 3.5.0-1
|
||||
nl_cli_neigh_alloc@libnl_3 3.5.0-1
|
||||
nl_cli_neigh_parse_dev@Base 3.5.0-1
|
||||
nl_cli_neigh_parse_dev@libnl_3 3.5.0-1
|
||||
nl_cli_neigh_parse_dst@Base 3.5.0-1
|
||||
nl_cli_neigh_parse_dst@libnl_3 3.5.0-1
|
||||
nl_cli_neigh_parse_family@Base 3.5.0-1
|
||||
nl_cli_neigh_parse_family@libnl_3 3.5.0-1
|
||||
nl_cli_neigh_parse_lladdr@Base 3.5.0-1
|
||||
nl_cli_neigh_parse_lladdr@libnl_3 3.5.0-1
|
||||
nl_cli_neigh_parse_state@Base 3.5.0-1
|
||||
nl_cli_neigh_parse_state@libnl_3 3.5.0-1
|
||||
nl_cli_parse_dumptype@Base 3.5.0-1
|
||||
nl_cli_parse_dumptype@libnl_3 3.5.0-1
|
||||
nl_cli_parse_u32@Base 3.5.0-1
|
||||
nl_cli_parse_u32@libnl_3 3.5.0-1
|
||||
nl_cli_print_version@Base 3.5.0-1
|
||||
nl_cli_print_version@libnl_3 3.5.0-1
|
||||
nl_cli_qdisc_alloc@Base 3.5.0-1
|
||||
nl_cli_qdisc_alloc@libnl_3 3.5.0-1
|
||||
nl_cli_route_alloc@Base 3.5.0-1
|
||||
nl_cli_route_alloc@libnl_3 3.5.0-1
|
||||
nl_cli_route_alloc_cache@Base 3.5.0-1
|
||||
nl_cli_route_alloc_cache@libnl_3 3.5.0-1
|
||||
nl_cli_route_parse_dst@Base 3.5.0-1
|
||||
nl_cli_route_parse_dst@libnl_3 3.5.0-1
|
||||
nl_cli_route_parse_family@Base 3.5.0-1
|
||||
nl_cli_route_parse_family@libnl_3 3.5.0-1
|
||||
nl_cli_route_parse_iif@Base 3.5.0-1
|
||||
nl_cli_route_parse_iif@libnl_3 3.5.0-1
|
||||
nl_cli_route_parse_metric@Base 3.5.0-1
|
||||
nl_cli_route_parse_metric@libnl_3 3.5.0-1
|
||||
nl_cli_route_parse_nexthop@Base 3.5.0-1
|
||||
nl_cli_route_parse_nexthop@libnl_3 3.5.0-1
|
||||
nl_cli_route_parse_pref_src@Base 3.5.0-1
|
||||
nl_cli_route_parse_pref_src@libnl_3 3.5.0-1
|
||||
nl_cli_route_parse_prio@Base 3.5.0-1
|
||||
nl_cli_route_parse_prio@libnl_3 3.5.0-1
|
||||
nl_cli_route_parse_protocol@Base 3.5.0-1
|
||||
nl_cli_route_parse_protocol@libnl_3 3.5.0-1
|
||||
nl_cli_route_parse_scope@Base 3.5.0-1
|
||||
nl_cli_route_parse_scope@libnl_3 3.5.0-1
|
||||
nl_cli_route_parse_src@Base 3.5.0-1
|
||||
nl_cli_route_parse_src@libnl_3 3.5.0-1
|
||||
nl_cli_route_parse_table@Base 3.5.0-1
|
||||
nl_cli_route_parse_table@libnl_3 3.5.0-1
|
||||
nl_cli_route_parse_type@Base 3.5.0-1
|
||||
nl_cli_route_parse_type@libnl_3 3.5.0-1
|
||||
nl_cli_rule_alloc@Base 3.5.0-1
|
||||
nl_cli_rule_alloc@libnl_3 3.5.0-1
|
||||
nl_cli_rule_alloc_cache@Base 3.5.0-1
|
||||
nl_cli_rule_alloc_cache@libnl_3 3.5.0-1
|
||||
nl_cli_rule_parse_family@Base 3.5.0-1
|
||||
nl_cli_rule_parse_family@libnl_3 3.5.0-1
|
||||
nl_cli_tc_lookup@Base 3.5.0-1
|
||||
nl_cli_tc_lookup@libnl_3 3.5.0-1
|
||||
nl_cli_tc_parse_dev@Base 3.5.0-1
|
||||
nl_cli_tc_parse_dev@libnl_3 3.5.0-1
|
||||
nl_cli_tc_parse_handle@Base 3.5.0-1
|
||||
nl_cli_tc_parse_handle@libnl_3 3.5.0-1
|
||||
nl_cli_tc_parse_kind@Base 3.5.0-1
|
||||
nl_cli_tc_parse_kind@libnl_3 3.5.0-1
|
||||
nl_cli_tc_parse_linktype@Base 3.5.0-1
|
||||
nl_cli_tc_parse_linktype@libnl_3 3.5.0-1
|
||||
nl_cli_tc_parse_mpu@Base 3.5.0-1
|
||||
nl_cli_tc_parse_mpu@libnl_3 3.5.0-1
|
||||
nl_cli_tc_parse_mtu@Base 3.5.0-1
|
||||
nl_cli_tc_parse_mtu@libnl_3 3.5.0-1
|
||||
nl_cli_tc_parse_overhead@Base 3.5.0-1
|
||||
nl_cli_tc_parse_overhead@libnl_3 3.5.0-1
|
||||
nl_cli_tc_parse_parent@Base 3.5.0-1
|
||||
nl_cli_tc_parse_parent@libnl_3 3.5.0-1
|
||||
nl_cli_tc_register@Base 3.5.0-1
|
||||
nl_cli_tc_register@libnl_3 3.5.0-1
|
||||
nl_cli_tc_unregister@Base 3.5.0-1
|
||||
nl_cli_tc_unregister@libnl_3 3.5.0-1
|
||||
pfifo.so libnl-cli-3-200 #MINVER#
|
||||
plug.so libnl-cli-3-200 #MINVER#
|
3
src/libnl3/debian/libnl-cli-3-dev.install
Normal file
3
src/libnl3/debian/libnl-cli-3-dev.install
Normal file
@ -0,0 +1,3 @@
|
||||
debian/tmp/usr/lib/*/pkgconfig/libnl-cli-3*
|
||||
debian/tmp/usr/lib/*/libnl-cli-3*.so
|
||||
debian/tmp/usr/lib/*/libnl-cli-3*.a
|
2
src/libnl3/debian/libnl-genl-3-200-udeb.install
Executable file
2
src/libnl3/debian/libnl-genl-3-200-udeb.install
Executable file
@ -0,0 +1,2 @@
|
||||
#!/usr/bin/dh-exec
|
||||
usr/lib/${DEB_HOST_MULTIARCH}/libnl-genl-3.so.* lib/${DEB_HOST_MULTIARCH}/
|
2
src/libnl3/debian/libnl-genl-3-200.install
Executable file
2
src/libnl3/debian/libnl-genl-3-200.install
Executable file
@ -0,0 +1,2 @@
|
||||
#!/usr/bin/dh-exec
|
||||
debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/libnl-genl-3*.so.* lib/${DEB_HOST_MULTIARCH}/
|
88
src/libnl3/debian/libnl-genl-3-200.symbols
Normal file
88
src/libnl3/debian/libnl-genl-3-200.symbols
Normal file
@ -0,0 +1,88 @@
|
||||
libnl-genl-3.so.200 libnl-genl-3-200 #MINVER#
|
||||
genl_connect@Base 3.5.0-1
|
||||
genl_connect@libnl_3 3.5.0-1
|
||||
genl_ctrl_alloc_cache@Base 3.5.0-1
|
||||
genl_ctrl_alloc_cache@libnl_3 3.5.0-1
|
||||
genl_ctrl_resolve@Base 3.5.0-1
|
||||
genl_ctrl_resolve@libnl_3 3.5.0-1
|
||||
genl_ctrl_resolve_grp@Base 3.5.0-1
|
||||
genl_ctrl_resolve_grp@libnl_3 3.5.0-1
|
||||
genl_ctrl_search@Base 3.5.0-1
|
||||
genl_ctrl_search@libnl_3 3.5.0-1
|
||||
genl_ctrl_search_by_name@Base 3.5.0-1
|
||||
genl_ctrl_search_by_name@libnl_3 3.5.0-1
|
||||
genl_family_add_grp@Base 3.5.0-1
|
||||
genl_family_add_grp@libnl_3 3.5.0-1
|
||||
genl_family_add_op@Base 3.5.0-1
|
||||
genl_family_add_op@libnl_3 3.5.0-1
|
||||
genl_family_alloc@Base 3.5.0-1
|
||||
genl_family_alloc@libnl_3 3.5.0-1
|
||||
genl_family_get_hdrsize@Base 3.5.0-1
|
||||
genl_family_get_hdrsize@libnl_3 3.5.0-1
|
||||
genl_family_get_id@Base 3.5.0-1
|
||||
genl_family_get_id@libnl_3 3.5.0-1
|
||||
genl_family_get_maxattr@Base 3.5.0-1
|
||||
genl_family_get_maxattr@libnl_3 3.5.0-1
|
||||
genl_family_get_name@Base 3.5.0-1
|
||||
genl_family_get_name@libnl_3 3.5.0-1
|
||||
genl_family_get_version@Base 3.5.0-1
|
||||
genl_family_get_version@libnl_3 3.5.0-1
|
||||
genl_family_ops@Base 3.5.0-1
|
||||
genl_family_ops@libnl_3 3.5.0-1
|
||||
genl_family_put@Base 3.5.0-1
|
||||
genl_family_put@libnl_3 3.5.0-1
|
||||
genl_family_set_hdrsize@Base 3.5.0-1
|
||||
genl_family_set_hdrsize@libnl_3 3.5.0-1
|
||||
genl_family_set_id@Base 3.5.0-1
|
||||
genl_family_set_id@libnl_3 3.5.0-1
|
||||
genl_family_set_maxattr@Base 3.5.0-1
|
||||
genl_family_set_maxattr@libnl_3 3.5.0-1
|
||||
genl_family_set_name@Base 3.5.0-1
|
||||
genl_family_set_name@libnl_3 3.5.0-1
|
||||
genl_family_set_version@Base 3.5.0-1
|
||||
genl_family_set_version@libnl_3 3.5.0-1
|
||||
genl_handle_msg@Base 3.5.0-1
|
||||
genl_handle_msg@libnl_3 3.5.0-1
|
||||
genl_mngt_resolve@Base 3.5.0-1
|
||||
genl_mngt_resolve@libnl_3 3.5.0-1
|
||||
genl_op2name@Base 3.5.0-1
|
||||
genl_op2name@libnl_3 3.5.0-1
|
||||
genl_ops_resolve@Base 3.5.0-1
|
||||
genl_ops_resolve@libnl_3 3.5.0-1
|
||||
genl_register@Base 3.5.0-1
|
||||
genl_register@libnl_3 3.5.0-1
|
||||
genl_register_family@Base 3.5.0-1
|
||||
genl_register_family@libnl_3 3.5.0-1
|
||||
genl_resolve_id@Base 3.5.0-1
|
||||
genl_resolve_id@libnl_3 3.5.0-1
|
||||
genl_send_simple@Base 3.5.0-1
|
||||
genl_send_simple@libnl_3 3.5.0-1
|
||||
genl_unregister@Base 3.5.0-1
|
||||
genl_unregister@libnl_3 3.5.0-1
|
||||
genl_unregister_family@Base 3.5.0-1
|
||||
genl_unregister_family@libnl_3 3.5.0-1
|
||||
genlmsg_attrdata@Base 3.5.0-1
|
||||
genlmsg_attrdata@libnl_3 3.5.0-1
|
||||
genlmsg_attrlen@Base 3.5.0-1
|
||||
genlmsg_attrlen@libnl_3 3.5.0-1
|
||||
genlmsg_data@Base 3.5.0-1
|
||||
genlmsg_data@libnl_3 3.5.0-1
|
||||
genlmsg_hdr@Base 3.5.0-1
|
||||
genlmsg_hdr@libnl_3 3.5.0-1
|
||||
genlmsg_len@Base 3.5.0-1
|
||||
genlmsg_len@libnl_3 3.5.0-1
|
||||
genlmsg_parse@Base 3.5.0-1
|
||||
genlmsg_parse@libnl_3 3.5.0-1
|
||||
genlmsg_put@Base 3.5.0-1
|
||||
genlmsg_put@libnl_3 3.5.0-1
|
||||
genlmsg_user_data@Base 3.5.0-1
|
||||
genlmsg_user_data@libnl_3 3.5.0-1
|
||||
genlmsg_user_datalen@Base 3.5.0-1
|
||||
genlmsg_user_datalen@libnl_3 3.5.0-1
|
||||
genlmsg_user_hdr@Base 3.5.0-1
|
||||
genlmsg_user_hdr@libnl_3 3.5.0-1
|
||||
genlmsg_valid_hdr@Base 3.5.0-1
|
||||
genlmsg_valid_hdr@libnl_3 3.5.0-1
|
||||
genlmsg_validate@Base 3.5.0-1
|
||||
genlmsg_validate@libnl_3 3.5.0-1
|
||||
libnl_3@libnl_3 3.5.0-1
|
4
src/libnl3/debian/libnl-genl-3-dev.install
Executable file
4
src/libnl3/debian/libnl-genl-3-dev.install
Executable file
@ -0,0 +1,4 @@
|
||||
#!/usr/bin/dh-exec
|
||||
debian/tmp/usr/lib/*/pkgconfig/libnl-genl-3*
|
||||
debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/libnl-genl-3*.so lib/${DEB_HOST_MULTIARCH}/
|
||||
debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/libnl-genl-3*.a lib/${DEB_HOST_MULTIARCH}/
|
1
src/libnl3/debian/libnl-idiag-3-200.install
Normal file
1
src/libnl3/debian/libnl-idiag-3-200.install
Normal file
@ -0,0 +1 @@
|
||||
debian/tmp/usr/lib/*/libnl-idiag-3*.so.*
|
206
src/libnl3/debian/libnl-idiag-3-200.symbols
Normal file
206
src/libnl3/debian/libnl-idiag-3-200.symbols
Normal file
@ -0,0 +1,206 @@
|
||||
libnl-idiag-3.so.200 libnl-idiag-3-200 #MINVER#
|
||||
idiagnl_attrs2str@Base 3.5.0-1
|
||||
idiagnl_attrs2str@libnl_3 3.5.0-1
|
||||
idiagnl_connect@Base 3.5.0-1
|
||||
idiagnl_connect@libnl_3 3.5.0-1
|
||||
idiagnl_exts2str@Base 3.5.0-1
|
||||
idiagnl_exts2str@libnl_3 3.5.0-1
|
||||
idiagnl_meminfo_alloc@Base 3.5.0-1
|
||||
idiagnl_meminfo_alloc@libnl_3 3.5.0-1
|
||||
idiagnl_meminfo_get@Base 3.5.0-1
|
||||
idiagnl_meminfo_get@libnl_3 3.5.0-1
|
||||
idiagnl_meminfo_get_fmem@Base 3.5.0-1
|
||||
idiagnl_meminfo_get_fmem@libnl_3 3.5.0-1
|
||||
idiagnl_meminfo_get_rmem@Base 3.5.0-1
|
||||
idiagnl_meminfo_get_rmem@libnl_3 3.5.0-1
|
||||
idiagnl_meminfo_get_tmem@Base 3.5.0-1
|
||||
idiagnl_meminfo_get_tmem@libnl_3 3.5.0-1
|
||||
idiagnl_meminfo_get_wmem@Base 3.5.0-1
|
||||
idiagnl_meminfo_get_wmem@libnl_3 3.5.0-1
|
||||
idiagnl_meminfo_obj_ops@Base 3.5.0-1
|
||||
idiagnl_meminfo_obj_ops@libnl_3 3.5.0-1
|
||||
idiagnl_meminfo_put@Base 3.5.0-1
|
||||
idiagnl_meminfo_put@libnl_3 3.5.0-1
|
||||
idiagnl_meminfo_set_fmem@Base 3.5.0-1
|
||||
idiagnl_meminfo_set_fmem@libnl_3 3.5.0-1
|
||||
idiagnl_meminfo_set_rmem@Base 3.5.0-1
|
||||
idiagnl_meminfo_set_rmem@libnl_3 3.5.0-1
|
||||
idiagnl_meminfo_set_tmem@Base 3.5.0-1
|
||||
idiagnl_meminfo_set_tmem@libnl_3 3.5.0-1
|
||||
idiagnl_meminfo_set_wmem@Base 3.5.0-1
|
||||
idiagnl_meminfo_set_wmem@libnl_3 3.5.0-1
|
||||
idiagnl_msg_alloc@Base 3.5.0-1
|
||||
idiagnl_msg_alloc@libnl_3 3.5.0-1
|
||||
idiagnl_msg_alloc_cache@Base 3.5.0-1
|
||||
idiagnl_msg_alloc_cache@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get@Base 3.5.0-1
|
||||
idiagnl_msg_get@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_cong@Base 3.5.0-1
|
||||
idiagnl_msg_get_cong@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_dport@Base 3.5.0-1
|
||||
idiagnl_msg_get_dport@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_dst@Base 3.5.0-1
|
||||
idiagnl_msg_get_dst@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_expires@Base 3.5.0-1
|
||||
idiagnl_msg_get_expires@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_family@Base 3.5.0-1
|
||||
idiagnl_msg_get_family@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_ifindex@Base 3.5.0-1
|
||||
idiagnl_msg_get_ifindex@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_inode@Base 3.5.0-1
|
||||
idiagnl_msg_get_inode@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_meminfo@Base 3.5.0-1
|
||||
idiagnl_msg_get_meminfo@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_retrans@Base 3.5.0-1
|
||||
idiagnl_msg_get_retrans@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_rqueue@Base 3.5.0-1
|
||||
idiagnl_msg_get_rqueue@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_shutdown@Base 3.5.0-1
|
||||
idiagnl_msg_get_shutdown@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_sport@Base 3.5.0-1
|
||||
idiagnl_msg_get_sport@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_src@Base 3.5.0-1
|
||||
idiagnl_msg_get_src@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_state@Base 3.5.0-1
|
||||
idiagnl_msg_get_state@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_tclass@Base 3.5.0-1
|
||||
idiagnl_msg_get_tclass@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_tcpinfo@Base 3.5.0-1
|
||||
idiagnl_msg_get_tcpinfo@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_timer@Base 3.5.0-1
|
||||
idiagnl_msg_get_timer@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_tos@Base 3.5.0-1
|
||||
idiagnl_msg_get_tos@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_uid@Base 3.5.0-1
|
||||
idiagnl_msg_get_uid@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_vegasinfo@Base 3.5.0-1
|
||||
idiagnl_msg_get_vegasinfo@libnl_3 3.5.0-1
|
||||
idiagnl_msg_get_wqueue@Base 3.5.0-1
|
||||
idiagnl_msg_get_wqueue@libnl_3 3.5.0-1
|
||||
idiagnl_msg_obj_ops@Base 3.5.0-1
|
||||
idiagnl_msg_obj_ops@libnl_3 3.5.0-1
|
||||
idiagnl_msg_parse@Base 3.5.0-1
|
||||
idiagnl_msg_parse@libnl_3 3.5.0-1
|
||||
idiagnl_msg_put@Base 3.5.0-1
|
||||
idiagnl_msg_put@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_cong@Base 3.5.0-1
|
||||
idiagnl_msg_set_cong@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_dport@Base 3.5.0-1
|
||||
idiagnl_msg_set_dport@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_dst@Base 3.5.0-1
|
||||
idiagnl_msg_set_dst@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_expires@Base 3.5.0-1
|
||||
idiagnl_msg_set_expires@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_family@Base 3.5.0-1
|
||||
idiagnl_msg_set_family@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_ifindex@Base 3.5.0-1
|
||||
idiagnl_msg_set_ifindex@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_inode@Base 3.5.0-1
|
||||
idiagnl_msg_set_inode@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_meminfo@Base 3.5.0-1
|
||||
idiagnl_msg_set_meminfo@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_retrans@Base 3.5.0-1
|
||||
idiagnl_msg_set_retrans@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_rqueue@Base 3.5.0-1
|
||||
idiagnl_msg_set_rqueue@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_shutdown@Base 3.5.0-1
|
||||
idiagnl_msg_set_shutdown@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_sport@Base 3.5.0-1
|
||||
idiagnl_msg_set_sport@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_src@Base 3.5.0-1
|
||||
idiagnl_msg_set_src@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_state@Base 3.5.0-1
|
||||
idiagnl_msg_set_state@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_tclass@Base 3.5.0-1
|
||||
idiagnl_msg_set_tclass@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_tcpinfo@Base 3.5.0-1
|
||||
idiagnl_msg_set_tcpinfo@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_timer@Base 3.5.0-1
|
||||
idiagnl_msg_set_timer@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_tos@Base 3.5.0-1
|
||||
idiagnl_msg_set_tos@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_uid@Base 3.5.0-1
|
||||
idiagnl_msg_set_uid@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_vegasinfo@Base 3.5.0-1
|
||||
idiagnl_msg_set_vegasinfo@libnl_3 3.5.0-1
|
||||
idiagnl_msg_set_wqueue@Base 3.5.0-1
|
||||
idiagnl_msg_set_wqueue@libnl_3 3.5.0-1
|
||||
idiagnl_req_alloc@Base 3.5.0-1
|
||||
idiagnl_req_alloc@libnl_3 3.5.0-1
|
||||
idiagnl_req_get@Base 3.5.0-1
|
||||
idiagnl_req_get@libnl_3 3.5.0-1
|
||||
idiagnl_req_get_dbs@Base 3.5.0-1
|
||||
idiagnl_req_get_dbs@libnl_3 3.5.0-1
|
||||
idiagnl_req_get_dst@Base 3.5.0-1
|
||||
idiagnl_req_get_dst@libnl_3 3.5.0-1
|
||||
idiagnl_req_get_ext@Base 3.5.0-1
|
||||
idiagnl_req_get_ext@libnl_3 3.5.0-1
|
||||
idiagnl_req_get_family@Base 3.5.0-1
|
||||
idiagnl_req_get_family@libnl_3 3.5.0-1
|
||||
idiagnl_req_get_ifindex@Base 3.5.0-1
|
||||
idiagnl_req_get_ifindex@libnl_3 3.5.0-1
|
||||
idiagnl_req_get_src@Base 3.5.0-1
|
||||
idiagnl_req_get_src@libnl_3 3.5.0-1
|
||||
idiagnl_req_get_states@Base 3.5.0-1
|
||||
idiagnl_req_get_states@libnl_3 3.5.0-1
|
||||
idiagnl_req_obj_ops@Base 3.5.0-1
|
||||
idiagnl_req_obj_ops@libnl_3 3.5.0-1
|
||||
idiagnl_req_parse@Base 3.5.0-1
|
||||
idiagnl_req_parse@libnl_3 3.5.0-1
|
||||
idiagnl_req_put@Base 3.5.0-1
|
||||
idiagnl_req_put@libnl_3 3.5.0-1
|
||||
idiagnl_req_set_dbs@Base 3.5.0-1
|
||||
idiagnl_req_set_dbs@libnl_3 3.5.0-1
|
||||
idiagnl_req_set_dst@Base 3.5.0-1
|
||||
idiagnl_req_set_dst@libnl_3 3.5.0-1
|
||||
idiagnl_req_set_ext@Base 3.5.0-1
|
||||
idiagnl_req_set_ext@libnl_3 3.5.0-1
|
||||
idiagnl_req_set_family@Base 3.5.0-1
|
||||
idiagnl_req_set_family@libnl_3 3.5.0-1
|
||||
idiagnl_req_set_ifindex@Base 3.5.0-1
|
||||
idiagnl_req_set_ifindex@libnl_3 3.5.0-1
|
||||
idiagnl_req_set_src@Base 3.5.0-1
|
||||
idiagnl_req_set_src@libnl_3 3.5.0-1
|
||||
idiagnl_req_set_states@Base 3.5.0-1
|
||||
idiagnl_req_set_states@libnl_3 3.5.0-1
|
||||
idiagnl_send_simple@Base 3.5.0-1
|
||||
idiagnl_send_simple@libnl_3 3.5.0-1
|
||||
idiagnl_shutdown2str@Base 3.5.0-1
|
||||
idiagnl_shutdown2str@libnl_3 3.5.0-1
|
||||
idiagnl_state2str@Base 3.5.0-1
|
||||
idiagnl_state2str@libnl_3 3.5.0-1
|
||||
idiagnl_str2state@Base 3.5.0-1
|
||||
idiagnl_str2state@libnl_3 3.5.0-1
|
||||
idiagnl_str2timer@Base 3.5.0-1
|
||||
idiagnl_str2timer@libnl_3 3.5.0-1
|
||||
idiagnl_tcpopts2str@Base 3.5.0-1
|
||||
idiagnl_tcpopts2str@libnl_3 3.5.0-1
|
||||
idiagnl_tcpstate2str@Base 3.5.0-1
|
||||
idiagnl_tcpstate2str@libnl_3 3.5.0-1
|
||||
idiagnl_timer2str@Base 3.5.0-1
|
||||
idiagnl_timer2str@libnl_3 3.5.0-1
|
||||
idiagnl_vegasinfo_alloc@Base 3.5.0-1
|
||||
idiagnl_vegasinfo_alloc@libnl_3 3.5.0-1
|
||||
idiagnl_vegasinfo_get@Base 3.5.0-1
|
||||
idiagnl_vegasinfo_get@libnl_3 3.5.0-1
|
||||
idiagnl_vegasinfo_get_enabled@Base 3.5.0-1
|
||||
idiagnl_vegasinfo_get_enabled@libnl_3 3.5.0-1
|
||||
idiagnl_vegasinfo_get_minrtt@Base 3.5.0-1
|
||||
idiagnl_vegasinfo_get_minrtt@libnl_3 3.5.0-1
|
||||
idiagnl_vegasinfo_get_rtt@Base 3.5.0-1
|
||||
idiagnl_vegasinfo_get_rtt@libnl_3 3.5.0-1
|
||||
idiagnl_vegasinfo_get_rttcnt@Base 3.5.0-1
|
||||
idiagnl_vegasinfo_get_rttcnt@libnl_3 3.5.0-1
|
||||
idiagnl_vegasinfo_obj_ops@Base 3.5.0-1
|
||||
idiagnl_vegasinfo_obj_ops@libnl_3 3.5.0-1
|
||||
idiagnl_vegasinfo_put@Base 3.5.0-1
|
||||
idiagnl_vegasinfo_put@libnl_3 3.5.0-1
|
||||
idiagnl_vegasinfo_set_enabled@Base 3.5.0-1
|
||||
idiagnl_vegasinfo_set_enabled@libnl_3 3.5.0-1
|
||||
idiagnl_vegasinfo_set_minrtt@Base 3.5.0-1
|
||||
idiagnl_vegasinfo_set_minrtt@libnl_3 3.5.0-1
|
||||
idiagnl_vegasinfo_set_rtt@Base 3.5.0-1
|
||||
idiagnl_vegasinfo_set_rtt@libnl_3 3.5.0-1
|
||||
idiagnl_vegasinfo_set_rttcnt@Base 3.5.0-1
|
||||
idiagnl_vegasinfo_set_rttcnt@libnl_3 3.5.0-1
|
||||
libnl_3@libnl_3 3.5.0-1
|
3
src/libnl3/debian/libnl-idiag-3-dev.install
Normal file
3
src/libnl3/debian/libnl-idiag-3-dev.install
Normal file
@ -0,0 +1,3 @@
|
||||
debian/tmp/usr/lib/*/pkgconfig/libnl-idiag-3*
|
||||
debian/tmp/usr/lib/*/libnl-idiag-3*.so
|
||||
debian/tmp/usr/lib/*/libnl-idiag-3*.a
|
1
src/libnl3/debian/libnl-nf-3-200.install
Normal file
1
src/libnl3/debian/libnl-nf-3-200.install
Normal file
@ -0,0 +1 @@
|
||||
debian/tmp/usr/lib/*/libnl-nf-3*.so.*
|
620
src/libnl3/debian/libnl-nf-3-200.symbols
Normal file
620
src/libnl3/debian/libnl-nf-3-200.symbols
Normal file
@ -0,0 +1,620 @@
|
||||
libnl-nf-3.so.200 libnl-nf-3-200 #MINVER#
|
||||
ct_obj_ops@Base 3.5.0-1
|
||||
ct_obj_ops@libnl_3 3.5.0-1
|
||||
exp_obj_ops@Base 3.5.0-1
|
||||
exp_obj_ops@libnl_3 3.5.0-1
|
||||
libnl_3@libnl_3 3.5.0-1
|
||||
log_msg_obj_ops@Base 3.5.0-1
|
||||
log_msg_obj_ops@libnl_3 3.5.0-1
|
||||
log_obj_ops@Base 3.5.0-1
|
||||
log_obj_ops@libnl_3 3.5.0-1
|
||||
nfnl_connect@Base 3.5.0-1
|
||||
nfnl_connect@libnl_3 3.5.0-1
|
||||
nfnl_ct_add@Base 3.5.0-1
|
||||
nfnl_ct_add@libnl_3 3.5.0-1
|
||||
nfnl_ct_alloc@Base 3.5.0-1
|
||||
nfnl_ct_alloc@libnl_3 3.5.0-1
|
||||
nfnl_ct_alloc_cache@Base 3.5.0-1
|
||||
nfnl_ct_alloc_cache@libnl_3 3.5.0-1
|
||||
nfnl_ct_build_add_request@Base 3.5.0-1
|
||||
nfnl_ct_build_add_request@libnl_3 3.5.0-1
|
||||
nfnl_ct_build_delete_request@Base 3.5.0-1
|
||||
nfnl_ct_build_delete_request@libnl_3 3.5.0-1
|
||||
nfnl_ct_build_query_request@Base 3.5.0-1
|
||||
nfnl_ct_build_query_request@libnl_3 3.5.0-1
|
||||
nfnl_ct_del@Base 3.5.0-1
|
||||
nfnl_ct_del@libnl_3 3.5.0-1
|
||||
nfnl_ct_dump_request@Base 3.5.0-1
|
||||
nfnl_ct_dump_request@libnl_3 3.5.0-1
|
||||
nfnl_ct_get@Base 3.5.0-1
|
||||
nfnl_ct_get@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_bytes@Base 3.5.0-1
|
||||
nfnl_ct_get_bytes@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_dst@Base 3.5.0-1
|
||||
nfnl_ct_get_dst@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_dst_port@Base 3.5.0-1
|
||||
nfnl_ct_get_dst_port@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_family@Base 3.5.0-1
|
||||
nfnl_ct_get_family@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_icmp_code@Base 3.5.0-1
|
||||
nfnl_ct_get_icmp_code@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_icmp_id@Base 3.5.0-1
|
||||
nfnl_ct_get_icmp_id@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_icmp_type@Base 3.5.0-1
|
||||
nfnl_ct_get_icmp_type@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_id@Base 3.5.0-1
|
||||
nfnl_ct_get_id@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_mark@Base 3.5.0-1
|
||||
nfnl_ct_get_mark@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_packets@Base 3.5.0-1
|
||||
nfnl_ct_get_packets@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_proto@Base 3.5.0-1
|
||||
nfnl_ct_get_proto@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_src@Base 3.5.0-1
|
||||
nfnl_ct_get_src@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_src_port@Base 3.5.0-1
|
||||
nfnl_ct_get_src_port@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_status@Base 3.5.0-1
|
||||
nfnl_ct_get_status@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_tcp_state@Base 3.5.0-1
|
||||
nfnl_ct_get_tcp_state@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_timeout@Base 3.5.0-1
|
||||
nfnl_ct_get_timeout@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_timestamp@Base 3.5.0-1
|
||||
nfnl_ct_get_timestamp@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_use@Base 3.5.0-1
|
||||
nfnl_ct_get_use@libnl_3 3.5.0-1
|
||||
nfnl_ct_get_zone@Base 3.5.0-1
|
||||
nfnl_ct_get_zone@libnl_3 3.5.0-1
|
||||
nfnl_ct_put@Base 3.5.0-1
|
||||
nfnl_ct_put@libnl_3 3.5.0-1
|
||||
nfnl_ct_query@Base 3.5.0-1
|
||||
nfnl_ct_query@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_bytes@Base 3.5.0-1
|
||||
nfnl_ct_set_bytes@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_dst@Base 3.5.0-1
|
||||
nfnl_ct_set_dst@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_dst_port@Base 3.5.0-1
|
||||
nfnl_ct_set_dst_port@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_family@Base 3.5.0-1
|
||||
nfnl_ct_set_family@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_icmp_code@Base 3.5.0-1
|
||||
nfnl_ct_set_icmp_code@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_icmp_id@Base 3.5.0-1
|
||||
nfnl_ct_set_icmp_id@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_icmp_type@Base 3.5.0-1
|
||||
nfnl_ct_set_icmp_type@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_id@Base 3.5.0-1
|
||||
nfnl_ct_set_id@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_mark@Base 3.5.0-1
|
||||
nfnl_ct_set_mark@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_packets@Base 3.5.0-1
|
||||
nfnl_ct_set_packets@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_proto@Base 3.5.0-1
|
||||
nfnl_ct_set_proto@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_src@Base 3.5.0-1
|
||||
nfnl_ct_set_src@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_src_port@Base 3.5.0-1
|
||||
nfnl_ct_set_src_port@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_status@Base 3.5.0-1
|
||||
nfnl_ct_set_status@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_tcp_state@Base 3.5.0-1
|
||||
nfnl_ct_set_tcp_state@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_timeout@Base 3.5.0-1
|
||||
nfnl_ct_set_timeout@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_timestamp@Base 3.5.0-1
|
||||
nfnl_ct_set_timestamp@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_use@Base 3.5.0-1
|
||||
nfnl_ct_set_use@libnl_3 3.5.0-1
|
||||
nfnl_ct_set_zone@Base 3.5.0-1
|
||||
nfnl_ct_set_zone@libnl_3 3.5.0-1
|
||||
nfnl_ct_status2str@Base 3.5.0-1
|
||||
nfnl_ct_status2str@libnl_3 3.5.0-1
|
||||
nfnl_ct_str2status@Base 3.5.0-1
|
||||
nfnl_ct_str2status@libnl_3 3.5.0-1
|
||||
nfnl_ct_str2tcp_state@Base 3.5.0-1
|
||||
nfnl_ct_str2tcp_state@libnl_3 3.5.0-1
|
||||
nfnl_ct_tcp_state2str@Base 3.5.0-1
|
||||
nfnl_ct_tcp_state2str@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_bytes@Base 3.5.0-1
|
||||
nfnl_ct_test_bytes@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_dst_port@Base 3.5.0-1
|
||||
nfnl_ct_test_dst_port@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_icmp_code@Base 3.5.0-1
|
||||
nfnl_ct_test_icmp_code@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_icmp_id@Base 3.5.0-1
|
||||
nfnl_ct_test_icmp_id@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_icmp_type@Base 3.5.0-1
|
||||
nfnl_ct_test_icmp_type@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_id@Base 3.5.0-1
|
||||
nfnl_ct_test_id@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_mark@Base 3.5.0-1
|
||||
nfnl_ct_test_mark@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_packets@Base 3.5.0-1
|
||||
nfnl_ct_test_packets@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_proto@Base 3.5.0-1
|
||||
nfnl_ct_test_proto@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_src_port@Base 3.5.0-1
|
||||
nfnl_ct_test_src_port@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_status@Base 3.5.0-1
|
||||
nfnl_ct_test_status@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_tcp_state@Base 3.5.0-1
|
||||
nfnl_ct_test_tcp_state@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_timeout@Base 3.5.0-1
|
||||
nfnl_ct_test_timeout@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_timestamp@Base 3.5.0-1
|
||||
nfnl_ct_test_timestamp@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_use@Base 3.5.0-1
|
||||
nfnl_ct_test_use@libnl_3 3.5.0-1
|
||||
nfnl_ct_test_zone@Base 3.5.0-1
|
||||
nfnl_ct_test_zone@libnl_3 3.5.0-1
|
||||
nfnl_ct_unset_status@Base 3.5.0-1
|
||||
nfnl_ct_unset_status@libnl_3 3.5.0-1
|
||||
nfnl_exp_add@Base 3.5.0-1
|
||||
nfnl_exp_add@libnl_3 3.5.0-1
|
||||
nfnl_exp_alloc@Base 3.5.0-1
|
||||
nfnl_exp_alloc@libnl_3 3.5.0-1
|
||||
nfnl_exp_alloc_cache@Base 3.5.0-1
|
||||
nfnl_exp_alloc_cache@libnl_3 3.5.0-1
|
||||
nfnl_exp_build_add_request@Base 3.5.0-1
|
||||
nfnl_exp_build_add_request@libnl_3 3.5.0-1
|
||||
nfnl_exp_build_delete_request@Base 3.5.0-1
|
||||
nfnl_exp_build_delete_request@libnl_3 3.5.0-1
|
||||
nfnl_exp_build_query_request@Base 3.5.0-1
|
||||
nfnl_exp_build_query_request@libnl_3 3.5.0-1
|
||||
nfnl_exp_del@Base 3.5.0-1
|
||||
nfnl_exp_del@libnl_3 3.5.0-1
|
||||
nfnl_exp_dump_request@Base 3.5.0-1
|
||||
nfnl_exp_dump_request@libnl_3 3.5.0-1
|
||||
nfnl_exp_flags2str@Base 3.5.0-1
|
||||
nfnl_exp_flags2str@libnl_3 3.5.0-1
|
||||
nfnl_exp_get@Base 3.5.0-1
|
||||
nfnl_exp_get@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_class@Base 3.5.0-1
|
||||
nfnl_exp_get_class@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_dst@Base 3.5.0-1
|
||||
nfnl_exp_get_dst@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_dst_port@Base 3.5.0-1
|
||||
nfnl_exp_get_dst_port@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_family@Base 3.5.0-1
|
||||
nfnl_exp_get_family@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_flags@Base 3.5.0-1
|
||||
nfnl_exp_get_flags@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_fn@Base 3.5.0-1
|
||||
nfnl_exp_get_fn@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_helper_name@Base 3.5.0-1
|
||||
nfnl_exp_get_helper_name@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_icmp_code@Base 3.5.0-1
|
||||
nfnl_exp_get_icmp_code@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_icmp_id@Base 3.5.0-1
|
||||
nfnl_exp_get_icmp_id@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_icmp_type@Base 3.5.0-1
|
||||
nfnl_exp_get_icmp_type@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_id@Base 3.5.0-1
|
||||
nfnl_exp_get_id@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_l4protonum@Base 3.5.0-1
|
||||
nfnl_exp_get_l4protonum@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_nat_dir@Base 3.5.0-1
|
||||
nfnl_exp_get_nat_dir@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_src@Base 3.5.0-1
|
||||
nfnl_exp_get_src@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_src_port@Base 3.5.0-1
|
||||
nfnl_exp_get_src_port@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_timeout@Base 3.5.0-1
|
||||
nfnl_exp_get_timeout@libnl_3 3.5.0-1
|
||||
nfnl_exp_get_zone@Base 3.5.0-1
|
||||
nfnl_exp_get_zone@libnl_3 3.5.0-1
|
||||
nfnl_exp_put@Base 3.5.0-1
|
||||
nfnl_exp_put@libnl_3 3.5.0-1
|
||||
nfnl_exp_query@Base 3.5.0-1
|
||||
nfnl_exp_query@libnl_3 3.5.0-1
|
||||
nfnl_exp_set_class@Base 3.5.0-1
|
||||
nfnl_exp_set_class@libnl_3 3.5.0-1
|
||||
nfnl_exp_set_dst@Base 3.5.0-1
|
||||
nfnl_exp_set_dst@libnl_3 3.5.0-1
|
||||
nfnl_exp_set_family@Base 3.5.0-1
|
||||
nfnl_exp_set_family@libnl_3 3.5.0-1
|
||||
nfnl_exp_set_flags@Base 3.5.0-1
|
||||
nfnl_exp_set_flags@libnl_3 3.5.0-1
|
||||
nfnl_exp_set_fn@Base 3.5.0-1
|
||||
nfnl_exp_set_fn@libnl_3 3.5.0-1
|
||||
nfnl_exp_set_helper_name@Base 3.5.0-1
|
||||
nfnl_exp_set_helper_name@libnl_3 3.5.0-1
|
||||
nfnl_exp_set_icmp@Base 3.5.0-1
|
||||
nfnl_exp_set_icmp@libnl_3 3.5.0-1
|
||||
nfnl_exp_set_id@Base 3.5.0-1
|
||||
nfnl_exp_set_id@libnl_3 3.5.0-1
|
||||
nfnl_exp_set_l4protonum@Base 3.5.0-1
|
||||
nfnl_exp_set_l4protonum@libnl_3 3.5.0-1
|
||||
nfnl_exp_set_nat_dir@Base 3.5.0-1
|
||||
nfnl_exp_set_nat_dir@libnl_3 3.5.0-1
|
||||
nfnl_exp_set_ports@Base 3.5.0-1
|
||||
nfnl_exp_set_ports@libnl_3 3.5.0-1
|
||||
nfnl_exp_set_src@Base 3.5.0-1
|
||||
nfnl_exp_set_src@libnl_3 3.5.0-1
|
||||
nfnl_exp_set_timeout@Base 3.5.0-1
|
||||
nfnl_exp_set_timeout@libnl_3 3.5.0-1
|
||||
nfnl_exp_set_zone@Base 3.5.0-1
|
||||
nfnl_exp_set_zone@libnl_3 3.5.0-1
|
||||
nfnl_exp_str2flags@Base 3.5.0-1
|
||||
nfnl_exp_str2flags@libnl_3 3.5.0-1
|
||||
nfnl_exp_test_class@Base 3.5.0-1
|
||||
nfnl_exp_test_class@libnl_3 3.5.0-1
|
||||
nfnl_exp_test_dst@Base 3.5.0-1
|
||||
nfnl_exp_test_dst@libnl_3 3.5.0-1
|
||||
nfnl_exp_test_flags@Base 3.5.0-1
|
||||
nfnl_exp_test_flags@libnl_3 3.5.0-1
|
||||
nfnl_exp_test_fn@Base 3.5.0-1
|
||||
nfnl_exp_test_fn@libnl_3 3.5.0-1
|
||||
nfnl_exp_test_helper_name@Base 3.5.0-1
|
||||
nfnl_exp_test_helper_name@libnl_3 3.5.0-1
|
||||
nfnl_exp_test_icmp@Base 3.5.0-1
|
||||
nfnl_exp_test_icmp@libnl_3 3.5.0-1
|
||||
nfnl_exp_test_id@Base 3.5.0-1
|
||||
nfnl_exp_test_id@libnl_3 3.5.0-1
|
||||
nfnl_exp_test_l4protonum@Base 3.5.0-1
|
||||
nfnl_exp_test_l4protonum@libnl_3 3.5.0-1
|
||||
nfnl_exp_test_nat_dir@Base 3.5.0-1
|
||||
nfnl_exp_test_nat_dir@libnl_3 3.5.0-1
|
||||
nfnl_exp_test_ports@Base 3.5.0-1
|
||||
nfnl_exp_test_ports@libnl_3 3.5.0-1
|
||||
nfnl_exp_test_src@Base 3.5.0-1
|
||||
nfnl_exp_test_src@libnl_3 3.5.0-1
|
||||
nfnl_exp_test_timeout@Base 3.5.0-1
|
||||
nfnl_exp_test_timeout@libnl_3 3.5.0-1
|
||||
nfnl_exp_test_zone@Base 3.5.0-1
|
||||
nfnl_exp_test_zone@libnl_3 3.5.0-1
|
||||
nfnl_exp_unset_flags@Base 3.5.0-1
|
||||
nfnl_exp_unset_flags@libnl_3 3.5.0-1
|
||||
nfnl_inet_hook2str@Base 3.5.0-1
|
||||
nfnl_inet_hook2str@libnl_3 3.5.0-1
|
||||
nfnl_log_alloc@Base 3.5.0-1
|
||||
nfnl_log_alloc@libnl_3 3.5.0-1
|
||||
nfnl_log_build_change_request@Base 3.5.0-1
|
||||
nfnl_log_build_change_request@libnl_3 3.5.0-1
|
||||
nfnl_log_build_create_request@Base 3.5.0-1
|
||||
nfnl_log_build_create_request@libnl_3 3.5.0-1
|
||||
nfnl_log_build_delete_request@Base 3.5.0-1
|
||||
nfnl_log_build_delete_request@libnl_3 3.5.0-1
|
||||
nfnl_log_build_pf_bind@Base 3.5.0-1
|
||||
nfnl_log_build_pf_bind@libnl_3 3.5.0-1
|
||||
nfnl_log_build_pf_unbind@Base 3.5.0-1
|
||||
nfnl_log_build_pf_unbind@libnl_3 3.5.0-1
|
||||
nfnl_log_change@Base 3.5.0-1
|
||||
nfnl_log_change@libnl_3 3.5.0-1
|
||||
nfnl_log_copy_mode2str@Base 3.5.0-1
|
||||
nfnl_log_copy_mode2str@libnl_3 3.5.0-1
|
||||
nfnl_log_create@Base 3.5.0-1
|
||||
nfnl_log_create@libnl_3 3.5.0-1
|
||||
nfnl_log_delete@Base 3.5.0-1
|
||||
nfnl_log_delete@libnl_3 3.5.0-1
|
||||
nfnl_log_flags2str@Base 3.5.0-1
|
||||
nfnl_log_flags2str@libnl_3 3.5.0-1
|
||||
nfnl_log_get@Base 3.5.0-1
|
||||
nfnl_log_get@libnl_3 3.5.0-1
|
||||
nfnl_log_get_alloc_size@Base 3.5.0-1
|
||||
nfnl_log_get_alloc_size@libnl_3 3.5.0-1
|
||||
nfnl_log_get_copy_mode@Base 3.5.0-1
|
||||
nfnl_log_get_copy_mode@libnl_3 3.5.0-1
|
||||
nfnl_log_get_copy_range@Base 3.5.0-1
|
||||
nfnl_log_get_copy_range@libnl_3 3.5.0-1
|
||||
nfnl_log_get_flush_timeout@Base 3.5.0-1
|
||||
nfnl_log_get_flush_timeout@libnl_3 3.5.0-1
|
||||
nfnl_log_get_group@Base 3.5.0-1
|
||||
nfnl_log_get_group@libnl_3 3.5.0-1
|
||||
nfnl_log_get_queue_threshold@Base 3.5.0-1
|
||||
nfnl_log_get_queue_threshold@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_alloc@Base 3.5.0-1
|
||||
nfnl_log_msg_alloc@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get@Base 3.5.0-1
|
||||
nfnl_log_msg_get@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_family@Base 3.5.0-1
|
||||
nfnl_log_msg_get_family@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_gid@Base 3.5.0-1
|
||||
nfnl_log_msg_get_gid@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_hook@Base 3.5.0-1
|
||||
nfnl_log_msg_get_hook@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_hwaddr@Base 3.5.0-1
|
||||
nfnl_log_msg_get_hwaddr@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_hwproto@Base 3.5.0-1
|
||||
nfnl_log_msg_get_hwproto@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_indev@Base 3.5.0-1
|
||||
nfnl_log_msg_get_indev@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_mark@Base 3.5.0-1
|
||||
nfnl_log_msg_get_mark@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_outdev@Base 3.5.0-1
|
||||
nfnl_log_msg_get_outdev@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_payload@Base 3.5.0-1
|
||||
nfnl_log_msg_get_payload@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_physindev@Base 3.5.0-1
|
||||
nfnl_log_msg_get_physindev@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_physoutdev@Base 3.5.0-1
|
||||
nfnl_log_msg_get_physoutdev@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_prefix@Base 3.5.0-1
|
||||
nfnl_log_msg_get_prefix@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_seq@Base 3.5.0-1
|
||||
nfnl_log_msg_get_seq@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_seq_global@Base 3.5.0-1
|
||||
nfnl_log_msg_get_seq_global@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_timestamp@Base 3.5.0-1
|
||||
nfnl_log_msg_get_timestamp@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_get_uid@Base 3.5.0-1
|
||||
nfnl_log_msg_get_uid@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_put@Base 3.5.0-1
|
||||
nfnl_log_msg_put@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_family@Base 3.5.0-1
|
||||
nfnl_log_msg_set_family@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_gid@Base 3.5.0-1
|
||||
nfnl_log_msg_set_gid@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_hook@Base 3.5.0-1
|
||||
nfnl_log_msg_set_hook@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_hwaddr@Base 3.5.0-1
|
||||
nfnl_log_msg_set_hwaddr@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_hwproto@Base 3.5.0-1
|
||||
nfnl_log_msg_set_hwproto@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_indev@Base 3.5.0-1
|
||||
nfnl_log_msg_set_indev@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_mark@Base 3.5.0-1
|
||||
nfnl_log_msg_set_mark@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_outdev@Base 3.5.0-1
|
||||
nfnl_log_msg_set_outdev@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_payload@Base 3.5.0-1
|
||||
nfnl_log_msg_set_payload@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_physindev@Base 3.5.0-1
|
||||
nfnl_log_msg_set_physindev@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_physoutdev@Base 3.5.0-1
|
||||
nfnl_log_msg_set_physoutdev@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_prefix@Base 3.5.0-1
|
||||
nfnl_log_msg_set_prefix@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_seq@Base 3.5.0-1
|
||||
nfnl_log_msg_set_seq@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_seq_global@Base 3.5.0-1
|
||||
nfnl_log_msg_set_seq_global@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_timestamp@Base 3.5.0-1
|
||||
nfnl_log_msg_set_timestamp@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_set_uid@Base 3.5.0-1
|
||||
nfnl_log_msg_set_uid@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_test_gid@Base 3.5.0-1
|
||||
nfnl_log_msg_test_gid@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_test_hook@Base 3.5.0-1
|
||||
nfnl_log_msg_test_hook@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_test_hwproto@Base 3.5.0-1
|
||||
nfnl_log_msg_test_hwproto@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_test_mark@Base 3.5.0-1
|
||||
nfnl_log_msg_test_mark@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_test_seq@Base 3.5.0-1
|
||||
nfnl_log_msg_test_seq@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_test_seq_global@Base 3.5.0-1
|
||||
nfnl_log_msg_test_seq_global@libnl_3 3.5.0-1
|
||||
nfnl_log_msg_test_uid@Base 3.5.0-1
|
||||
nfnl_log_msg_test_uid@libnl_3 3.5.0-1
|
||||
nfnl_log_pf_bind@Base 3.5.0-1
|
||||
nfnl_log_pf_bind@libnl_3 3.5.0-1
|
||||
nfnl_log_pf_unbind@Base 3.5.0-1
|
||||
nfnl_log_pf_unbind@libnl_3 3.5.0-1
|
||||
nfnl_log_put@Base 3.5.0-1
|
||||
nfnl_log_put@libnl_3 3.5.0-1
|
||||
nfnl_log_set_alloc_size@Base 3.5.0-1
|
||||
nfnl_log_set_alloc_size@libnl_3 3.5.0-1
|
||||
nfnl_log_set_copy_mode@Base 3.5.0-1
|
||||
nfnl_log_set_copy_mode@libnl_3 3.5.0-1
|
||||
nfnl_log_set_copy_range@Base 3.5.0-1
|
||||
nfnl_log_set_copy_range@libnl_3 3.5.0-1
|
||||
nfnl_log_set_flags@Base 3.5.0-1
|
||||
nfnl_log_set_flags@libnl_3 3.5.0-1
|
||||
nfnl_log_set_flush_timeout@Base 3.5.0-1
|
||||
nfnl_log_set_flush_timeout@libnl_3 3.5.0-1
|
||||
nfnl_log_set_group@Base 3.5.0-1
|
||||
nfnl_log_set_group@libnl_3 3.5.0-1
|
||||
nfnl_log_set_queue_threshold@Base 3.5.0-1
|
||||
nfnl_log_set_queue_threshold@libnl_3 3.5.0-1
|
||||
nfnl_log_str2copy_mode@Base 3.5.0-1
|
||||
nfnl_log_str2copy_mode@libnl_3 3.5.0-1
|
||||
nfnl_log_str2flags@Base 3.5.0-1
|
||||
nfnl_log_str2flags@libnl_3 3.5.0-1
|
||||
nfnl_log_test_alloc_size@Base 3.5.0-1
|
||||
nfnl_log_test_alloc_size@libnl_3 3.5.0-1
|
||||
nfnl_log_test_copy_mode@Base 3.5.0-1
|
||||
nfnl_log_test_copy_mode@libnl_3 3.5.0-1
|
||||
nfnl_log_test_copy_range@Base 3.5.0-1
|
||||
nfnl_log_test_copy_range@libnl_3 3.5.0-1
|
||||
nfnl_log_test_flush_timeout@Base 3.5.0-1
|
||||
nfnl_log_test_flush_timeout@libnl_3 3.5.0-1
|
||||
nfnl_log_test_group@Base 3.5.0-1
|
||||
nfnl_log_test_group@libnl_3 3.5.0-1
|
||||
nfnl_log_test_queue_threshold@Base 3.5.0-1
|
||||
nfnl_log_test_queue_threshold@libnl_3 3.5.0-1
|
||||
nfnl_log_unset_flags@Base 3.5.0-1
|
||||
nfnl_log_unset_flags@libnl_3 3.5.0-1
|
||||
nfnl_queue_alloc@Base 3.5.0-1
|
||||
nfnl_queue_alloc@libnl_3 3.5.0-1
|
||||
nfnl_queue_build_change_request@Base 3.5.0-1
|
||||
nfnl_queue_build_change_request@libnl_3 3.5.0-1
|
||||
nfnl_queue_build_create_request@Base 3.5.0-1
|
||||
nfnl_queue_build_create_request@libnl_3 3.5.0-1
|
||||
nfnl_queue_build_delete_request@Base 3.5.0-1
|
||||
nfnl_queue_build_delete_request@libnl_3 3.5.0-1
|
||||
nfnl_queue_build_pf_bind@Base 3.5.0-1
|
||||
nfnl_queue_build_pf_bind@libnl_3 3.5.0-1
|
||||
nfnl_queue_build_pf_unbind@Base 3.5.0-1
|
||||
nfnl_queue_build_pf_unbind@libnl_3 3.5.0-1
|
||||
nfnl_queue_change@Base 3.5.0-1
|
||||
nfnl_queue_change@libnl_3 3.5.0-1
|
||||
nfnl_queue_copy_mode2str@Base 3.5.0-1
|
||||
nfnl_queue_copy_mode2str@libnl_3 3.5.0-1
|
||||
nfnl_queue_create@Base 3.5.0-1
|
||||
nfnl_queue_create@libnl_3 3.5.0-1
|
||||
nfnl_queue_delete@Base 3.5.0-1
|
||||
nfnl_queue_delete@libnl_3 3.5.0-1
|
||||
nfnl_queue_get@Base 3.5.0-1
|
||||
nfnl_queue_get@libnl_3 3.5.0-1
|
||||
nfnl_queue_get_copy_mode@Base 3.5.0-1
|
||||
nfnl_queue_get_copy_mode@libnl_3 3.5.0-1
|
||||
nfnl_queue_get_copy_range@Base 3.5.0-1
|
||||
nfnl_queue_get_copy_range@libnl_3 3.5.0-1
|
||||
nfnl_queue_get_group@Base 3.5.0-1
|
||||
nfnl_queue_get_group@libnl_3 3.5.0-1
|
||||
nfnl_queue_get_maxlen@Base 3.5.0-1
|
||||
nfnl_queue_get_maxlen@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_alloc@Base 3.5.0-1
|
||||
nfnl_queue_msg_alloc@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_build_verdict@Base 3.5.0-1
|
||||
nfnl_queue_msg_build_verdict@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_build_verdict_batch@Base 3.5.0-1
|
||||
nfnl_queue_msg_build_verdict_batch@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get@Base 3.5.0-1
|
||||
nfnl_queue_msg_get@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get_family@Base 3.5.0-1
|
||||
nfnl_queue_msg_get_family@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get_group@Base 3.5.0-1
|
||||
nfnl_queue_msg_get_group@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get_hook@Base 3.5.0-1
|
||||
nfnl_queue_msg_get_hook@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get_hwaddr@Base 3.5.0-1
|
||||
nfnl_queue_msg_get_hwaddr@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get_hwproto@Base 3.5.0-1
|
||||
nfnl_queue_msg_get_hwproto@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get_indev@Base 3.5.0-1
|
||||
nfnl_queue_msg_get_indev@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get_mark@Base 3.5.0-1
|
||||
nfnl_queue_msg_get_mark@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get_outdev@Base 3.5.0-1
|
||||
nfnl_queue_msg_get_outdev@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get_packetid@Base 3.5.0-1
|
||||
nfnl_queue_msg_get_packetid@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get_payload@Base 3.5.0-1
|
||||
nfnl_queue_msg_get_payload@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get_physindev@Base 3.5.0-1
|
||||
nfnl_queue_msg_get_physindev@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get_physoutdev@Base 3.5.0-1
|
||||
nfnl_queue_msg_get_physoutdev@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get_timestamp@Base 3.5.0-1
|
||||
nfnl_queue_msg_get_timestamp@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_get_verdict@Base 3.5.0-1
|
||||
nfnl_queue_msg_get_verdict@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_put@Base 3.5.0-1
|
||||
nfnl_queue_msg_put@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_send_verdict@Base 3.5.0-1
|
||||
nfnl_queue_msg_send_verdict@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_send_verdict_batch@Base 3.5.0-1
|
||||
nfnl_queue_msg_send_verdict_batch@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_send_verdict_payload@Base 3.5.0-1
|
||||
nfnl_queue_msg_send_verdict_payload@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_set_family@Base 3.5.0-1
|
||||
nfnl_queue_msg_set_family@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_set_group@Base 3.5.0-1
|
||||
nfnl_queue_msg_set_group@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_set_hook@Base 3.5.0-1
|
||||
nfnl_queue_msg_set_hook@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_set_hwaddr@Base 3.5.0-1
|
||||
nfnl_queue_msg_set_hwaddr@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_set_hwproto@Base 3.5.0-1
|
||||
nfnl_queue_msg_set_hwproto@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_set_indev@Base 3.5.0-1
|
||||
nfnl_queue_msg_set_indev@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_set_mark@Base 3.5.0-1
|
||||
nfnl_queue_msg_set_mark@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_set_outdev@Base 3.5.0-1
|
||||
nfnl_queue_msg_set_outdev@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_set_packetid@Base 3.5.0-1
|
||||
nfnl_queue_msg_set_packetid@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_set_payload@Base 3.5.0-1
|
||||
nfnl_queue_msg_set_payload@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_set_physindev@Base 3.5.0-1
|
||||
nfnl_queue_msg_set_physindev@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_set_physoutdev@Base 3.5.0-1
|
||||
nfnl_queue_msg_set_physoutdev@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_set_timestamp@Base 3.5.0-1
|
||||
nfnl_queue_msg_set_timestamp@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_set_verdict@Base 3.5.0-1
|
||||
nfnl_queue_msg_set_verdict@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_test_family@Base 3.5.0-1
|
||||
nfnl_queue_msg_test_family@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_test_group@Base 3.5.0-1
|
||||
nfnl_queue_msg_test_group@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_test_hook@Base 3.5.0-1
|
||||
nfnl_queue_msg_test_hook@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_test_hwaddr@Base 3.5.0-1
|
||||
nfnl_queue_msg_test_hwaddr@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_test_hwproto@Base 3.5.0-1
|
||||
nfnl_queue_msg_test_hwproto@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_test_indev@Base 3.5.0-1
|
||||
nfnl_queue_msg_test_indev@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_test_mark@Base 3.5.0-1
|
||||
nfnl_queue_msg_test_mark@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_test_outdev@Base 3.5.0-1
|
||||
nfnl_queue_msg_test_outdev@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_test_packetid@Base 3.5.0-1
|
||||
nfnl_queue_msg_test_packetid@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_test_payload@Base 3.5.0-1
|
||||
nfnl_queue_msg_test_payload@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_test_physindev@Base 3.5.0-1
|
||||
nfnl_queue_msg_test_physindev@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_test_physoutdev@Base 3.5.0-1
|
||||
nfnl_queue_msg_test_physoutdev@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_test_timestamp@Base 3.5.0-1
|
||||
nfnl_queue_msg_test_timestamp@libnl_3 3.5.0-1
|
||||
nfnl_queue_msg_test_verdict@Base 3.5.0-1
|
||||
nfnl_queue_msg_test_verdict@libnl_3 3.5.0-1
|
||||
nfnl_queue_pf_bind@Base 3.5.0-1
|
||||
nfnl_queue_pf_bind@libnl_3 3.5.0-1
|
||||
nfnl_queue_pf_unbind@Base 3.5.0-1
|
||||
nfnl_queue_pf_unbind@libnl_3 3.5.0-1
|
||||
nfnl_queue_put@Base 3.5.0-1
|
||||
nfnl_queue_put@libnl_3 3.5.0-1
|
||||
nfnl_queue_set_copy_mode@Base 3.5.0-1
|
||||
nfnl_queue_set_copy_mode@libnl_3 3.5.0-1
|
||||
nfnl_queue_set_copy_range@Base 3.5.0-1
|
||||
nfnl_queue_set_copy_range@libnl_3 3.5.0-1
|
||||
nfnl_queue_set_group@Base 3.5.0-1
|
||||
nfnl_queue_set_group@libnl_3 3.5.0-1
|
||||
nfnl_queue_set_maxlen@Base 3.5.0-1
|
||||
nfnl_queue_set_maxlen@libnl_3 3.5.0-1
|
||||
nfnl_queue_socket_alloc@Base 3.5.0-1
|
||||
nfnl_queue_socket_alloc@libnl_3 3.5.0-1
|
||||
nfnl_queue_str2copy_mode@Base 3.5.0-1
|
||||
nfnl_queue_str2copy_mode@libnl_3 3.5.0-1
|
||||
nfnl_queue_test_copy_mode@Base 3.5.0-1
|
||||
nfnl_queue_test_copy_mode@libnl_3 3.5.0-1
|
||||
nfnl_queue_test_copy_range@Base 3.5.0-1
|
||||
nfnl_queue_test_copy_range@libnl_3 3.5.0-1
|
||||
nfnl_queue_test_group@Base 3.5.0-1
|
||||
nfnl_queue_test_group@libnl_3 3.5.0-1
|
||||
nfnl_queue_test_maxlen@Base 3.5.0-1
|
||||
nfnl_queue_test_maxlen@libnl_3 3.5.0-1
|
||||
nfnl_send_simple@Base 3.5.0-1
|
||||
nfnl_send_simple@libnl_3 3.5.0-1
|
||||
nfnl_str2inet_hook@Base 3.5.0-1
|
||||
nfnl_str2inet_hook@libnl_3 3.5.0-1
|
||||
nfnl_str2verdict@Base 3.5.0-1
|
||||
nfnl_str2verdict@libnl_3 3.5.0-1
|
||||
nfnl_verdict2str@Base 3.5.0-1
|
||||
nfnl_verdict2str@libnl_3 3.5.0-1
|
||||
nfnlmsg_alloc_simple@Base 3.5.0-1
|
||||
nfnlmsg_alloc_simple@libnl_3 3.5.0-1
|
||||
nfnlmsg_ct_group@Base 3.5.0-1
|
||||
nfnlmsg_ct_group@libnl_3 3.5.0-1
|
||||
nfnlmsg_ct_parse@Base 3.5.0-1
|
||||
nfnlmsg_ct_parse@libnl_3 3.5.0-1
|
||||
nfnlmsg_exp_group@Base 3.5.0-1
|
||||
nfnlmsg_exp_group@libnl_3 3.5.0-1
|
||||
nfnlmsg_exp_parse@Base 3.5.0-1
|
||||
nfnlmsg_exp_parse@libnl_3 3.5.0-1
|
||||
nfnlmsg_family@Base 3.5.0-1
|
||||
nfnlmsg_family@libnl_3 3.5.0-1
|
||||
nfnlmsg_log_msg_parse@Base 3.5.0-1
|
||||
nfnlmsg_log_msg_parse@libnl_3 3.5.0-1
|
||||
nfnlmsg_put@Base 3.5.0-1
|
||||
nfnlmsg_put@libnl_3 3.5.0-1
|
||||
nfnlmsg_queue_msg_parse@Base 3.5.0-1
|
||||
nfnlmsg_queue_msg_parse@libnl_3 3.5.0-1
|
||||
nfnlmsg_res_id@Base 3.5.0-1
|
||||
nfnlmsg_res_id@libnl_3 3.5.0-1
|
||||
nfnlmsg_subsys@Base 3.5.0-1
|
||||
nfnlmsg_subsys@libnl_3 3.5.0-1
|
||||
nfnlmsg_subtype@Base 3.5.0-1
|
||||
nfnlmsg_subtype@libnl_3 3.5.0-1
|
||||
queue_msg_obj_ops@Base 3.5.0-1
|
||||
queue_msg_obj_ops@libnl_3 3.5.0-1
|
||||
queue_obj_ops@Base 3.5.0-1
|
||||
queue_obj_ops@libnl_3 3.5.0-1
|
3
src/libnl3/debian/libnl-nf-3-dev.install
Normal file
3
src/libnl3/debian/libnl-nf-3-dev.install
Normal file
@ -0,0 +1,3 @@
|
||||
debian/tmp/usr/lib/*/pkgconfig/libnl-nf-3*
|
||||
debian/tmp/usr/lib/*/libnl-nf-3*.so
|
||||
debian/tmp/usr/lib/*/libnl-nf-3*.a
|
1
src/libnl3/debian/libnl-route-3-200.install
Normal file
1
src/libnl3/debian/libnl-route-3-200.install
Normal file
@ -0,0 +1 @@
|
||||
debian/tmp/usr/lib/*/libnl-route-3*.so.*
|
2051
src/libnl3/debian/libnl-route-3-200.symbols
Normal file
2051
src/libnl3/debian/libnl-route-3-200.symbols
Normal file
File diff suppressed because it is too large
Load Diff
3
src/libnl3/debian/libnl-route-3-dev.install
Normal file
3
src/libnl3/debian/libnl-route-3-dev.install
Normal file
@ -0,0 +1,3 @@
|
||||
debian/tmp/usr/lib/*/pkgconfig/libnl-route-3*
|
||||
debian/tmp/usr/lib/*/libnl-route-3*.so
|
||||
debian/tmp/usr/lib/*/libnl-route-3*.a
|
1
src/libnl3/debian/libnl-utils.install
Normal file
1
src/libnl3/debian/libnl-utils.install
Normal file
@ -0,0 +1 @@
|
||||
debian/tmp/usr/bin/*
|
1
src/libnl3/debian/libnl-utils.manpages
Normal file
1
src/libnl3/debian/libnl-utils.manpages
Normal file
@ -0,0 +1 @@
|
||||
debian/tmp/usr/share/man/man8/*
|
1
src/libnl3/debian/libnl-xfrm-3-200.install
Normal file
1
src/libnl3/debian/libnl-xfrm-3-200.install
Normal file
@ -0,0 +1 @@
|
||||
debian/tmp/usr/lib/*/libnl-xfrm-3*.so.*
|
484
src/libnl3/debian/libnl-xfrm-3-200.symbols
Normal file
484
src/libnl3/debian/libnl-xfrm-3-200.symbols
Normal file
@ -0,0 +1,484 @@
|
||||
libnl-xfrm-3.so.200 libnl-xfrm-3-200 #MINVER#
|
||||
libnl_3@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_alloc@Base 3.5.0-1
|
||||
xfrmnl_ae_alloc@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_build_get_request@Base 3.5.0-1
|
||||
xfrmnl_ae_build_get_request@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_flags2str@Base 3.5.0-1
|
||||
xfrmnl_ae_flags2str@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_get_curlifetime@Base 3.5.0-1
|
||||
xfrmnl_ae_get_curlifetime@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_get_daddr@Base 3.5.0-1
|
||||
xfrmnl_ae_get_daddr@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_get_family@Base 3.5.0-1
|
||||
xfrmnl_ae_get_family@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_get_flags@Base 3.5.0-1
|
||||
xfrmnl_ae_get_flags@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_get_kernel@Base 3.5.0-1
|
||||
xfrmnl_ae_get_kernel@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_get_mark@Base 3.5.0-1
|
||||
xfrmnl_ae_get_mark@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_get_proto@Base 3.5.0-1
|
||||
xfrmnl_ae_get_proto@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_get_replay_maxage@Base 3.5.0-1
|
||||
xfrmnl_ae_get_replay_maxage@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_get_replay_maxdiff@Base 3.5.0-1
|
||||
xfrmnl_ae_get_replay_maxdiff@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_get_replay_state@Base 3.5.0-1
|
||||
xfrmnl_ae_get_replay_state@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_get_replay_state_esn@Base 3.5.0-1
|
||||
xfrmnl_ae_get_replay_state_esn@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_get_reqid@Base 3.5.0-1
|
||||
xfrmnl_ae_get_reqid@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_get_saddr@Base 3.5.0-1
|
||||
xfrmnl_ae_get_saddr@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_get_spi@Base 3.5.0-1
|
||||
xfrmnl_ae_get_spi@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_parse@Base 3.5.0-1
|
||||
xfrmnl_ae_parse@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_put@Base 3.5.0-1
|
||||
xfrmnl_ae_put@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_set@Base 3.5.0-1
|
||||
xfrmnl_ae_set@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_set_curlifetime@Base 3.5.0-1
|
||||
xfrmnl_ae_set_curlifetime@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_set_daddr@Base 3.5.0-1
|
||||
xfrmnl_ae_set_daddr@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_set_family@Base 3.5.0-1
|
||||
xfrmnl_ae_set_family@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_set_flags@Base 3.5.0-1
|
||||
xfrmnl_ae_set_flags@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_set_mark@Base 3.5.0-1
|
||||
xfrmnl_ae_set_mark@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_set_proto@Base 3.5.0-1
|
||||
xfrmnl_ae_set_proto@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_set_replay_maxage@Base 3.5.0-1
|
||||
xfrmnl_ae_set_replay_maxage@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_set_replay_maxdiff@Base 3.5.0-1
|
||||
xfrmnl_ae_set_replay_maxdiff@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_set_replay_state@Base 3.5.0-1
|
||||
xfrmnl_ae_set_replay_state@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_set_replay_state_esn@Base 3.5.0-1
|
||||
xfrmnl_ae_set_replay_state_esn@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_set_reqid@Base 3.5.0-1
|
||||
xfrmnl_ae_set_reqid@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_set_saddr@Base 3.5.0-1
|
||||
xfrmnl_ae_set_saddr@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_set_spi@Base 3.5.0-1
|
||||
xfrmnl_ae_set_spi@libnl_3 3.5.0-1
|
||||
xfrmnl_ae_str2flag@Base 3.5.0-1
|
||||
xfrmnl_ae_str2flag@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_alloc@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_alloc@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_clone@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_clone@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_cmp@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_cmp@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_hard_addexpires@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_hard_addexpires@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_hard_bytelimit@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_hard_bytelimit@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_hard_packetlimit@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_hard_packetlimit@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_hard_useexpires@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_hard_useexpires@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_soft_addexpires@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_soft_addexpires@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_soft_bytelimit@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_soft_bytelimit@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_soft_packetlimit@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_soft_packetlimit@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_soft_useexpires@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_get_soft_useexpires@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_put@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_put@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_hard_addexpires@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_hard_addexpires@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_hard_bytelimit@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_hard_bytelimit@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_hard_packetlimit@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_hard_packetlimit@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_hard_useexpires@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_hard_useexpires@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_soft_addexpires@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_soft_addexpires@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_soft_bytelimit@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_soft_bytelimit@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_soft_packetlimit@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_soft_packetlimit@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_soft_useexpires@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_set_soft_useexpires@libnl_3 3.5.0-1
|
||||
xfrmnl_ltime_cfg_shared@Base 3.5.0-1
|
||||
xfrmnl_ltime_cfg_shared@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_add@Base 3.5.0-1
|
||||
xfrmnl_sa_add@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_alloc@Base 3.5.0-1
|
||||
xfrmnl_sa_alloc@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_alloc_cache@Base 3.5.0-1
|
||||
xfrmnl_sa_alloc_cache@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_build_add_request@Base 3.5.0-1
|
||||
xfrmnl_sa_build_add_request@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_build_delete_request@Base 3.5.0-1
|
||||
xfrmnl_sa_build_delete_request@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_build_get_request@Base 3.5.0-1
|
||||
xfrmnl_sa_build_get_request@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_build_update_request@Base 3.5.0-1
|
||||
xfrmnl_sa_build_update_request@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_delete@Base 3.5.0-1
|
||||
xfrmnl_sa_delete@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_flags2str@Base 3.5.0-1
|
||||
xfrmnl_sa_flags2str@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get@Base 3.5.0-1
|
||||
xfrmnl_sa_get@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_aead_params@Base 3.5.0-1
|
||||
xfrmnl_sa_get_aead_params@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_auth_params@Base 3.5.0-1
|
||||
xfrmnl_sa_get_auth_params@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_coaddr@Base 3.5.0-1
|
||||
xfrmnl_sa_get_coaddr@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_comp_params@Base 3.5.0-1
|
||||
xfrmnl_sa_get_comp_params@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_crypto_params@Base 3.5.0-1
|
||||
xfrmnl_sa_get_crypto_params@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_curlifetime@Base 3.5.0-1
|
||||
xfrmnl_sa_get_curlifetime@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_daddr@Base 3.5.0-1
|
||||
xfrmnl_sa_get_daddr@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_encap_tmpl@Base 3.5.0-1
|
||||
xfrmnl_sa_get_encap_tmpl@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_family@Base 3.5.0-1
|
||||
xfrmnl_sa_get_family@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_flags@Base 3.5.0-1
|
||||
xfrmnl_sa_get_flags@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_kernel@Base 3.5.0-1
|
||||
xfrmnl_sa_get_kernel@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_lifetime_cfg@Base 3.5.0-1
|
||||
xfrmnl_sa_get_lifetime_cfg@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_mark@Base 3.5.0-1
|
||||
xfrmnl_sa_get_mark@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_mode@Base 3.5.0-1
|
||||
xfrmnl_sa_get_mode@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_proto@Base 3.5.0-1
|
||||
xfrmnl_sa_get_proto@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_replay_maxage@Base 3.5.0-1
|
||||
xfrmnl_sa_get_replay_maxage@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_replay_maxdiff@Base 3.5.0-1
|
||||
xfrmnl_sa_get_replay_maxdiff@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_replay_state@Base 3.5.0-1
|
||||
xfrmnl_sa_get_replay_state@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_replay_state_esn@Base 3.5.0-1
|
||||
xfrmnl_sa_get_replay_state_esn@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_replay_window@Base 3.5.0-1
|
||||
xfrmnl_sa_get_replay_window@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_reqid@Base 3.5.0-1
|
||||
xfrmnl_sa_get_reqid@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_saddr@Base 3.5.0-1
|
||||
xfrmnl_sa_get_saddr@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_sec_ctx@Base 3.5.0-1
|
||||
xfrmnl_sa_get_sec_ctx@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_sel@Base 3.5.0-1
|
||||
xfrmnl_sa_get_sel@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_seq@Base 3.5.0-1
|
||||
xfrmnl_sa_get_seq@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_spi@Base 3.5.0-1
|
||||
xfrmnl_sa_get_spi@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_stats@Base 3.5.0-1
|
||||
xfrmnl_sa_get_stats@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_get_tfcpad@Base 3.5.0-1
|
||||
xfrmnl_sa_get_tfcpad@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_is_expiry_reached@Base 3.5.0-1
|
||||
xfrmnl_sa_is_expiry_reached@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_is_hardexpiry_reached@Base 3.5.0-1
|
||||
xfrmnl_sa_is_hardexpiry_reached@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_mode2str@Base 3.5.0-1
|
||||
xfrmnl_sa_mode2str@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_parse@Base 3.5.0-1
|
||||
xfrmnl_sa_parse@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_put@Base 3.5.0-1
|
||||
xfrmnl_sa_put@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_aead_params@Base 3.5.0-1
|
||||
xfrmnl_sa_set_aead_params@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_auth_params@Base 3.5.0-1
|
||||
xfrmnl_sa_set_auth_params@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_coaddr@Base 3.5.0-1
|
||||
xfrmnl_sa_set_coaddr@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_comp_params@Base 3.5.0-1
|
||||
xfrmnl_sa_set_comp_params@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_crypto_params@Base 3.5.0-1
|
||||
xfrmnl_sa_set_crypto_params@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_daddr@Base 3.5.0-1
|
||||
xfrmnl_sa_set_daddr@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_encap_tmpl@Base 3.5.0-1
|
||||
xfrmnl_sa_set_encap_tmpl@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_family@Base 3.5.0-1
|
||||
xfrmnl_sa_set_family@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_flags@Base 3.5.0-1
|
||||
xfrmnl_sa_set_flags@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_lifetime_cfg@Base 3.5.0-1
|
||||
xfrmnl_sa_set_lifetime_cfg@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_mark@Base 3.5.0-1
|
||||
xfrmnl_sa_set_mark@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_mode@Base 3.5.0-1
|
||||
xfrmnl_sa_set_mode@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_proto@Base 3.5.0-1
|
||||
xfrmnl_sa_set_proto@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_replay_maxage@Base 3.5.0-1
|
||||
xfrmnl_sa_set_replay_maxage@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_replay_maxdiff@Base 3.5.0-1
|
||||
xfrmnl_sa_set_replay_maxdiff@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_replay_state@Base 3.5.0-1
|
||||
xfrmnl_sa_set_replay_state@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_replay_state_esn@Base 3.5.0-1
|
||||
xfrmnl_sa_set_replay_state_esn@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_replay_window@Base 3.5.0-1
|
||||
xfrmnl_sa_set_replay_window@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_reqid@Base 3.5.0-1
|
||||
xfrmnl_sa_set_reqid@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_saddr@Base 3.5.0-1
|
||||
xfrmnl_sa_set_saddr@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_sec_ctx@Base 3.5.0-1
|
||||
xfrmnl_sa_set_sec_ctx@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_sel@Base 3.5.0-1
|
||||
xfrmnl_sa_set_sel@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_spi@Base 3.5.0-1
|
||||
xfrmnl_sa_set_spi@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_set_tfcpad@Base 3.5.0-1
|
||||
xfrmnl_sa_set_tfcpad@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_str2flag@Base 3.5.0-1
|
||||
xfrmnl_sa_str2flag@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_str2mode@Base 3.5.0-1
|
||||
xfrmnl_sa_str2mode@libnl_3 3.5.0-1
|
||||
xfrmnl_sa_update@Base 3.5.0-1
|
||||
xfrmnl_sa_update@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_alloc@Base 3.5.0-1
|
||||
xfrmnl_sel_alloc@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_clone@Base 3.5.0-1
|
||||
xfrmnl_sel_clone@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_cmp@Base 3.5.0-1
|
||||
xfrmnl_sel_cmp@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_dump@Base 3.5.0-1
|
||||
xfrmnl_sel_dump@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_get@Base 3.5.0-1
|
||||
xfrmnl_sel_get@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_get_daddr@Base 3.5.0-1
|
||||
xfrmnl_sel_get_daddr@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_get_dport@Base 3.5.0-1
|
||||
xfrmnl_sel_get_dport@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_get_dportmask@Base 3.5.0-1
|
||||
xfrmnl_sel_get_dportmask@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_get_family@Base 3.5.0-1
|
||||
xfrmnl_sel_get_family@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_get_ifindex@Base 3.5.0-1
|
||||
xfrmnl_sel_get_ifindex@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_get_prefixlen_d@Base 3.5.0-1
|
||||
xfrmnl_sel_get_prefixlen_d@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_get_prefixlen_s@Base 3.5.0-1
|
||||
xfrmnl_sel_get_prefixlen_s@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_get_proto@Base 3.5.0-1
|
||||
xfrmnl_sel_get_proto@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_get_saddr@Base 3.5.0-1
|
||||
xfrmnl_sel_get_saddr@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_get_sport@Base 3.5.0-1
|
||||
xfrmnl_sel_get_sport@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_get_sportmask@Base 3.5.0-1
|
||||
xfrmnl_sel_get_sportmask@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_get_userid@Base 3.5.0-1
|
||||
xfrmnl_sel_get_userid@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_put@Base 3.5.0-1
|
||||
xfrmnl_sel_put@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_set_daddr@Base 3.5.0-1
|
||||
xfrmnl_sel_set_daddr@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_set_dport@Base 3.5.0-1
|
||||
xfrmnl_sel_set_dport@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_set_dportmask@Base 3.5.0-1
|
||||
xfrmnl_sel_set_dportmask@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_set_family@Base 3.5.0-1
|
||||
xfrmnl_sel_set_family@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_set_ifindex@Base 3.5.0-1
|
||||
xfrmnl_sel_set_ifindex@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_set_prefixlen_d@Base 3.5.0-1
|
||||
xfrmnl_sel_set_prefixlen_d@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_set_prefixlen_s@Base 3.5.0-1
|
||||
xfrmnl_sel_set_prefixlen_s@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_set_proto@Base 3.5.0-1
|
||||
xfrmnl_sel_set_proto@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_set_saddr@Base 3.5.0-1
|
||||
xfrmnl_sel_set_saddr@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_set_sport@Base 3.5.0-1
|
||||
xfrmnl_sel_set_sport@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_set_sportmask@Base 3.5.0-1
|
||||
xfrmnl_sel_set_sportmask@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_set_userid@Base 3.5.0-1
|
||||
xfrmnl_sel_set_userid@libnl_3 3.5.0-1
|
||||
xfrmnl_sel_shared@Base 3.5.0-1
|
||||
xfrmnl_sel_shared@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_action2str@Base 3.5.0-1
|
||||
xfrmnl_sp_action2str@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_add@Base 3.5.0-1
|
||||
xfrmnl_sp_add@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_add_usertemplate@Base 3.5.0-1
|
||||
xfrmnl_sp_add_usertemplate@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_alloc@Base 3.5.0-1
|
||||
xfrmnl_sp_alloc@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_alloc_cache@Base 3.5.0-1
|
||||
xfrmnl_sp_alloc_cache@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_build_add_request@Base 3.5.0-1
|
||||
xfrmnl_sp_build_add_request@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_build_delete_request@Base 3.5.0-1
|
||||
xfrmnl_sp_build_delete_request@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_build_get_request@Base 3.5.0-1
|
||||
xfrmnl_sp_build_get_request@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_build_update_request@Base 3.5.0-1
|
||||
xfrmnl_sp_build_update_request@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_delete@Base 3.5.0-1
|
||||
xfrmnl_sp_delete@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_dir2str@Base 3.5.0-1
|
||||
xfrmnl_sp_dir2str@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_flags2str@Base 3.5.0-1
|
||||
xfrmnl_sp_flags2str@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_foreach_usertemplate@Base 3.5.0-1
|
||||
xfrmnl_sp_foreach_usertemplate@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get@Base 3.5.0-1
|
||||
xfrmnl_sp_get@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_action@Base 3.5.0-1
|
||||
xfrmnl_sp_get_action@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_curlifetime@Base 3.5.0-1
|
||||
xfrmnl_sp_get_curlifetime@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_dir@Base 3.5.0-1
|
||||
xfrmnl_sp_get_dir@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_flags@Base 3.5.0-1
|
||||
xfrmnl_sp_get_flags@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_index@Base 3.5.0-1
|
||||
xfrmnl_sp_get_index@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_kernel@Base 3.5.0-1
|
||||
xfrmnl_sp_get_kernel@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_lifetime_cfg@Base 3.5.0-1
|
||||
xfrmnl_sp_get_lifetime_cfg@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_mark@Base 3.5.0-1
|
||||
xfrmnl_sp_get_mark@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_nusertemplates@Base 3.5.0-1
|
||||
xfrmnl_sp_get_nusertemplates@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_priority@Base 3.5.0-1
|
||||
xfrmnl_sp_get_priority@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_sec_ctx@Base 3.5.0-1
|
||||
xfrmnl_sp_get_sec_ctx@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_sel@Base 3.5.0-1
|
||||
xfrmnl_sp_get_sel@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_share@Base 3.5.0-1
|
||||
xfrmnl_sp_get_share@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_userpolicy_type@Base 3.5.0-1
|
||||
xfrmnl_sp_get_userpolicy_type@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_get_usertemplates@Base 3.5.0-1
|
||||
xfrmnl_sp_get_usertemplates@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_index2dir@Base 3.5.0-1
|
||||
xfrmnl_sp_index2dir@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_parse@Base 3.5.0-1
|
||||
xfrmnl_sp_parse@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_put@Base 3.5.0-1
|
||||
xfrmnl_sp_put@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_remove_usertemplate@Base 3.5.0-1
|
||||
xfrmnl_sp_remove_usertemplate@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_set_action@Base 3.5.0-1
|
||||
xfrmnl_sp_set_action@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_set_dir@Base 3.5.0-1
|
||||
xfrmnl_sp_set_dir@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_set_flags@Base 3.5.0-1
|
||||
xfrmnl_sp_set_flags@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_set_index@Base 3.5.0-1
|
||||
xfrmnl_sp_set_index@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_set_lifetime_cfg@Base 3.5.0-1
|
||||
xfrmnl_sp_set_lifetime_cfg@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_set_mark@Base 3.5.0-1
|
||||
xfrmnl_sp_set_mark@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_set_priority@Base 3.5.0-1
|
||||
xfrmnl_sp_set_priority@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_set_sec_ctx@Base 3.5.0-1
|
||||
xfrmnl_sp_set_sec_ctx@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_set_sel@Base 3.5.0-1
|
||||
xfrmnl_sp_set_sel@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_set_share@Base 3.5.0-1
|
||||
xfrmnl_sp_set_share@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_set_userpolicy_type@Base 3.5.0-1
|
||||
xfrmnl_sp_set_userpolicy_type@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_share2str@Base 3.5.0-1
|
||||
xfrmnl_sp_share2str@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_str2action@Base 3.5.0-1
|
||||
xfrmnl_sp_str2action@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_str2dir@Base 3.5.0-1
|
||||
xfrmnl_sp_str2dir@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_str2flag@Base 3.5.0-1
|
||||
xfrmnl_sp_str2flag@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_str2share@Base 3.5.0-1
|
||||
xfrmnl_sp_str2share@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_str2type@Base 3.5.0-1
|
||||
xfrmnl_sp_str2type@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_type2str@Base 3.5.0-1
|
||||
xfrmnl_sp_type2str@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_update@Base 3.5.0-1
|
||||
xfrmnl_sp_update@libnl_3 3.5.0-1
|
||||
xfrmnl_sp_usertemplate_n@Base 3.5.0-1
|
||||
xfrmnl_sp_usertemplate_n@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_alloc@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_alloc@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_clone@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_clone@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_cmp@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_cmp@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_dump@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_dump@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_free@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_free@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_aalgos@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_aalgos@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_calgos@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_calgos@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_daddr@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_daddr@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_ealgos@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_ealgos@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_family@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_family@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_mode@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_mode@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_optional@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_optional@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_proto@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_proto@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_reqid@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_reqid@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_saddr@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_saddr@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_share@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_share@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_spi@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_get_spi@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_mode2str@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_mode2str@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_aalgos@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_aalgos@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_calgos@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_calgos@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_daddr@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_daddr@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_ealgos@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_ealgos@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_family@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_family@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_mode@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_mode@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_optional@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_optional@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_proto@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_proto@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_reqid@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_reqid@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_saddr@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_saddr@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_share@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_share@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_spi@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_set_spi@libnl_3 3.5.0-1
|
||||
xfrmnl_user_tmpl_str2mode@Base 3.5.0-1
|
||||
xfrmnl_user_tmpl_str2mode@libnl_3 3.5.0-1
|
3
src/libnl3/debian/libnl-xfrm-3-dev.install
Normal file
3
src/libnl3/debian/libnl-xfrm-3-dev.install
Normal file
@ -0,0 +1,3 @@
|
||||
debian/tmp/usr/lib/*/pkgconfig/libnl-xfrm-3*
|
||||
debian/tmp/usr/lib/*/libnl-xfrm-3*.so
|
||||
debian/tmp/usr/lib/*/libnl-xfrm-3*.a
|
0
src/libnl3/debian/patches/series
Normal file
0
src/libnl3/debian/patches/series
Normal file
39
src/libnl3/debian/rules
Executable file
39
src/libnl3/debian/rules
Executable file
@ -0,0 +1,39 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
DEB_BUILDDIR = debian/build
|
||||
DEB_MAKE_FLAVORS = main udeb
|
||||
|
||||
udeb_libnl=libnl-3-200-udeb
|
||||
udeb_libnl_genl=libnl-genl-3-200-udeb
|
||||
|
||||
TG_BRANCHES := debian/etc-libnl-3,debian/out-of-tree,debian/no-symvers
|
||||
|
||||
-include /usr/share/topgit/tg2quilt.mk
|
||||
|
||||
# to export the patch series use
|
||||
# debian/rules tg-clean
|
||||
# debian/rules tg-export
|
||||
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
include /usr/share/cdbs/1/rules/autoreconf.mk
|
||||
include /usr/share/cdbs/1/class/autotools.mk
|
||||
|
||||
# FIXME: not honoured
|
||||
#CFLAGS_udeb += $(CFLAGS) -Os
|
||||
CFLAGS += $(if $(findstring udeb,$(cdbs_make_curflavor)),-Os)
|
||||
|
||||
DEB_DH_STRIP_ARGS := --dbg-package=libnl-3-200-dbg
|
||||
DEB_DH_MAKESHLIBS_ARGS_libnl-3-200 := --add-udeb=$(udeb_libnl)
|
||||
DEB_DH_MAKESHLIBS_ARGS_libnl-genl-3-200 := --add-udeb=$(udeb_libnl_genl)
|
||||
|
||||
DEB_MAKE_DESTDIRSKEL = $(CURDIR)/debian/tmp
|
||||
DEB_MAKE_DESTDIRSKEL_udeb = $(CURDIR)/debian/tmp/udeb
|
||||
|
||||
DEB_DH_INSTALL_ARGS_$(udeb) += --sourcedir=debian/tmp/udeb
|
||||
|
||||
DEB_CONFIGURE_EXTRA_FLAGS += --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH)
|
||||
|
||||
clean::
|
||||
# from some unknown reason CDBS does not remove the builddir
|
||||
rm -rf $(DEB_BUILDDIR)
|
1
src/libnl3/debian/source/format
Normal file
1
src/libnl3/debian/source/format
Normal file
@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
2
src/libnl3/debian/watch
Normal file
2
src/libnl3/debian/watch
Normal file
@ -0,0 +1,2 @@
|
||||
version=3
|
||||
https://github.com/thom311/libnl/releases/libnl-(.*)\.tar\.gz
|
Loading…
Reference in New Issue
Block a user