├── .gitignore ├── LICENSE ├── README.md ├── examples └── tcp.js ├── go.mod ├── go.sum └── tcp.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAlexandrov/xk6-tcp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAlexandrov/xk6-tcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAlexandrov/xk6-tcp/HEAD/README.md -------------------------------------------------------------------------------- /examples/tcp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAlexandrov/xk6-tcp/HEAD/examples/tcp.js -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAlexandrov/xk6-tcp/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAlexandrov/xk6-tcp/HEAD/go.sum -------------------------------------------------------------------------------- /tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAlexandrov/xk6-tcp/HEAD/tcp.go --------------------------------------------------------------------------------