├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── errors.go ├── example_unbuffered_test.go ├── semaphore.go ├── semaphore_test.go ├── tunnel.go └── tunnel_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | tags 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.12 5 | 6 | notifications: 7 | email: false 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atedja/gtunnel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atedja/gtunnel/HEAD/README.md -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atedja/gtunnel/HEAD/errors.go -------------------------------------------------------------------------------- /example_unbuffered_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atedja/gtunnel/HEAD/example_unbuffered_test.go -------------------------------------------------------------------------------- /semaphore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atedja/gtunnel/HEAD/semaphore.go -------------------------------------------------------------------------------- /semaphore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atedja/gtunnel/HEAD/semaphore_test.go -------------------------------------------------------------------------------- /tunnel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atedja/gtunnel/HEAD/tunnel.go -------------------------------------------------------------------------------- /tunnel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atedja/gtunnel/HEAD/tunnel_test.go --------------------------------------------------------------------------------