node_exporter/vendor/github.com/mdlayher/netlink
Ben Kochie f9e91156d0
Update vendoring (#801)
* Update vendor github.com/godbus/dbus@v4.1.0

* Update vendor github.com/golang/protobuf/proto

* Update vendor github.com/mdlayher/netlink/...

* Update vendor github.com/prometheus/client_golang/prometheus/...

* Update vendor github.com/prometheus/client_model/go

* Update vendor github.com/prometheus/common/...

* Update vendor github.com/prometheus/procfs/...

* Update vendor github.com/sirupsen/logrus@v1.0.4

* Update vendor golang.org/x/...

* Update vendor gopkg.in/alecthomas/kingpin.v2

* Remove obsolete vendor github.com/mdlayher/netlink/genetlink
2018-01-25 18:20:39 +01:00
..
nlenc Update vendoring (#722) 2017-11-02 12:30:34 +01:00
align.go Vendor github.com/mdlayher/wifi and dependencies 2017-01-10 11:29:00 -05:00
attribute.go Update vendoring (#722) 2017-11-02 12:30:34 +01:00
conn.go Update vendoring (#801) 2018-01-25 18:20:39 +01:00
conn_linux.go Update vendoring (#801) 2018-01-25 18:20:39 +01:00
conn_others.go Update vendoring (#722) 2017-11-02 12:30:34 +01:00
doc.go Vendor github.com/mdlayher/wifi and dependencies 2017-01-10 11:29:00 -05:00
fuzz.go Vendor github.com/mdlayher/wifi and dependencies 2017-01-10 11:29:00 -05:00
LICENSE.md Update vendoring (#722) 2017-11-02 12:30:34 +01:00
message.go Update vendoring (#801) 2018-01-25 18:20:39 +01:00
README.md Update vendoring (#722) 2017-11-02 12:30:34 +01:00
sockopt_linux.go Update vendored packages 2017-02-28 18:20:24 -04:00
sockopt_linux_386.go Add initial wifi collector, bump netlink to fix 32-bit builds 2017-01-11 10:08:44 -05:00
sockopt_linux_386.s Vendor github.com/mdlayher/wifi and dependencies 2017-01-10 11:29:00 -05:00

netlink Build Status GoDoc Go Report Card

Package netlink provides low-level access to Linux netlink sockets. MIT Licensed.

For more information about how netlink works, check out my blog series on Linux, Netlink, and Go.

If you're looking for package genetlink, it's been moved to its own repository at github.com/mdlayher/genetlink.

Why?

A number of netlink packages are already available for Go, but I wasn't able to find one that aligned with what I wanted in a netlink package:

  • Simple, idiomatic API
  • Well tested
  • Well documented
  • Makes use of Go best practices
  • Doesn't need root to work

My goal for this package is to use it as a building block for the creation of other netlink family packages.