moby--moby/vendor/github.com/moby/ipvs
Sebastiaan van Stijn c51d34dcfb
vendor: github.com/moby/ipvs v1.0.2
full diff: https://github.com/moby/ipvs/compare/v1.0.1...v1.0.2

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-05-31 15:40:51 +02:00
..
.gitignore vendor: regenerate 2022-01-18 15:46:04 +01:00
LICENSE vendor: vishvananda/netlink v1.1.0 2020-03-12 22:57:23 +01:00
README.md vendor: vishvananda/netlink v1.1.0 2020-03-12 22:57:23 +01:00
constants.go vendor: github.com/moby/ipvs v1.0.2 2022-05-31 15:40:51 +02:00
doc.go vendor: vishvananda/netlink v1.1.0 2020-03-12 22:57:23 +01:00
ipvs.go vendor: vishvananda/netlink v1.1.0 2020-03-12 22:57:23 +01:00
netlink.go vendor: github.com/moby/ipvs v1.0.2 2022-05-31 15:40:51 +02:00

README.md

ipvs - networking for containers

Test GoDoc Go Report Card

ipvs provides a native Go implementation for communicating with IPVS kernel module using a netlink socket.

Using ipvs

import (
	"log"

	"github.com/moby/ipvs"
)

func main() {
	handle, err := ipvs.New("")
	if err != nil {
		log.Fatalf("ipvs.New: %s", err)
	}
	svcs, err := handle.GetServices()
	if err != nil {
		log.Fatalf("handle.GetServices: %s", err)
	}
}

Contributing

Want to hack on ipvs? Docker's contributions guidelines apply.

Code and documentation copyright 2015 Docker, inc. Code released under the Apache 2.0 license. Docs released under Creative commons.