ipld-eth-server/vendor/github.com/aristanetworks/goarista
Matt K 293dd2e848 Add vendor dir (#16) (#4)
* Add vendor dir so builds dont require dep

* Pin specific version go-eth version
2018-01-29 13:44:18 -06:00
..
areflect Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
cmd Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
dscp Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
elasticsearch Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
gnmi Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
kafka Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
key Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
lanz Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
monitor Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
monotime Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
netns Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
openconfig Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
path Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
pathmap Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
test Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
value Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
.travis.yml Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
AUTHORS Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
check_copyright_notice.sh Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
check_line_len.awk Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
COPYING Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
Dockerfile Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
iptables.sh Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
Makefile Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
README.md Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00
rpmbuild.sh Add vendor dir (#16) (#4) 2018-01-29 13:44:18 -06:00

Arista Go library Build Status codecov.io GoDoc Go Report Card

areflect

Helper functions to work with the reflect package. Contains ForceExport(), which bypasses the check in reflect.Value that prevents accessing unexported attributes.

monotime

Provides access to a fast monotonic clock source, to fill in the gap in the Go standard library, which lacks one. Don't use time.Now() in code that needs to time things or otherwise assume that time passes at a constant rate, instead use monotime.Now().

cmd

See the cmd directory.

dscp

Provides ListenTCPWithTOS(), which is a replacement for net.ListenTCP() that allows specifying the ToS (Type of Service), to specify DSCP / ECN / class of service flags to use for incoming connections. Requires go1.9.

key

Provides a common type used across various Arista projects, named key.Key, which is used to work around the fact that Go can't let one use a non-hashable type as a key to a map, and we sometimes need to use a map[string]interface{} (or something containing one) as a key to maps. As a result, we frequently use map[key.Key]interface{} instead of just map[interface{}]interface{} when we need a generic key-value collection.

path

Provides a common type used across various Arista projects, named path.Path, which is the representation of a path broken down into individual elements. Each element is a key.Key. The type path.Map may be used for mapping paths to values. It allows for some fuzzy matching.

lanz

A client for LANZ streaming servers. It connects to a LANZ streaming server, listens for notifications, decodes them and sends the LANZ protobuf on the provided channel.

monitor

A library to help expose monitoring metrics on top of the expvar infrastructure.

netns

netns.Do(namespace, cb) provides a handy mechanism to execute the given callback cb in the given network namespace.

pathmap

DEPRECATED; usepath.Map instead.

test

This is a Go library to help in writing unit tests.

Examples

TBD