├── .github └── workflows │ ├── go.yml │ └── tests.yml ├── LICENSE ├── README.md ├── actions.go ├── conn.go ├── disconnect.go ├── encoding.go ├── errors.go ├── example └── ip_reputation.go ├── frame.go ├── frame_test.go ├── frames_test.go ├── go.mod ├── go.sum ├── hello.go ├── hello_test.go ├── notify.go ├── notify_test.go ├── spoe.go ├── spoe_test.go ├── utils.go └── utils_test.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/README.md -------------------------------------------------------------------------------- /actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/actions.go -------------------------------------------------------------------------------- /conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/conn.go -------------------------------------------------------------------------------- /disconnect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/disconnect.go -------------------------------------------------------------------------------- /encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/encoding.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/errors.go -------------------------------------------------------------------------------- /example/ip_reputation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/example/ip_reputation.go -------------------------------------------------------------------------------- /frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/frame.go -------------------------------------------------------------------------------- /frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/frame_test.go -------------------------------------------------------------------------------- /frames_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/frames_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/go.sum -------------------------------------------------------------------------------- /hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/hello.go -------------------------------------------------------------------------------- /hello_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/hello_test.go -------------------------------------------------------------------------------- /notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/notify.go -------------------------------------------------------------------------------- /notify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/notify_test.go -------------------------------------------------------------------------------- /spoe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/spoe.go -------------------------------------------------------------------------------- /spoe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/spoe_test.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/utils.go -------------------------------------------------------------------------------- /utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/haproxy-spoe-go/HEAD/utils_test.go --------------------------------------------------------------------------------