File: control

package info (click to toggle)
golang-github-vishvananda-netlink 0.0~git20170117.0.ebdfb74-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 572 kB
  • sloc: makefile: 24
file content (34 lines) | stat: -rw-r--r-- 1,715 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Source: golang-github-vishvananda-netlink
Section: devel
Priority: extra
Maintainer: pkg-go <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Tianon Gravi <tianon@debian.org>, Tim Potter <tpot@hpe.com>
Build-Depends: debhelper (>= 9),
               dh-golang,
               golang,
               golang-github-vishvananda-netns-dev
Standards-Version: 3.9.8
Homepage: https://github.com/vishvananda/netlink
Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-vishvananda-netlink.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-vishvananda-netlink.git
XS-Go-Import-Path: github.com/vishvananda/netlink

Package: golang-github-vishvananda-netlink-dev
Architecture: all
Depends: golang-github-vishvananda-netns-dev,
         ${misc:Depends},
         ${shlibs:Depends}
Description: netlink library for go
 The netlink package provides a simple netlink library for go. Netlink is the
 interface a user-space program in Linux uses to communicate with the kernel. It
 can be used to add and remove interfaces, set ip addresses and routes, and
 configure ipsec. Netlink communication requires elevated privileges, so in most
 cases this code needs to be run as root. Since low-level netlink messages are
 inscrutable at best, the library attempts to provide an API that is loosely
 modeled on the CLI provied by iproute2. Actions like ip link add will be
 accomplished via a similarly named function like AddLink(). This library began
 its life as a fork of the netlink functionality in docker/libcontainer but was
 heavily rewritten to improve testability, performance, and to add new
 functionality like ipsec xfrm handling.
 .
 This package contains the source.