├── .travis.yml ├── HISTORY.md ├── LICENSE ├── README.md ├── api.go ├── channel.go ├── codec ├── bufio.go ├── bufio_test.go ├── fixlen.go ├── fixlen_test.go ├── json.go └── json_test.go ├── example └── json_toy │ └── main.go ├── manager.go ├── server.go ├── session.go └── session_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/README.md -------------------------------------------------------------------------------- /api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/api.go -------------------------------------------------------------------------------- /channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/channel.go -------------------------------------------------------------------------------- /codec/bufio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/codec/bufio.go -------------------------------------------------------------------------------- /codec/bufio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/codec/bufio_test.go -------------------------------------------------------------------------------- /codec/fixlen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/codec/fixlen.go -------------------------------------------------------------------------------- /codec/fixlen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/codec/fixlen_test.go -------------------------------------------------------------------------------- /codec/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/codec/json.go -------------------------------------------------------------------------------- /codec/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/codec/json_test.go -------------------------------------------------------------------------------- /example/json_toy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/example/json_toy/main.go -------------------------------------------------------------------------------- /manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/manager.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/server.go -------------------------------------------------------------------------------- /session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/session.go -------------------------------------------------------------------------------- /session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funny/link/HEAD/session_test.go --------------------------------------------------------------------------------