├── README.md ├── example ├── client │ └── client.go ├── protocol │ ├── body_readwriter.go │ ├── dispatcher.go │ ├── protocol.go │ ├── protocol_define.go │ └── stream.go └── server │ └── server.go ├── server.go └── session.go /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahydra/swnet/HEAD/README.md -------------------------------------------------------------------------------- /example/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahydra/swnet/HEAD/example/client/client.go -------------------------------------------------------------------------------- /example/protocol/body_readwriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahydra/swnet/HEAD/example/protocol/body_readwriter.go -------------------------------------------------------------------------------- /example/protocol/dispatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahydra/swnet/HEAD/example/protocol/dispatcher.go -------------------------------------------------------------------------------- /example/protocol/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahydra/swnet/HEAD/example/protocol/protocol.go -------------------------------------------------------------------------------- /example/protocol/protocol_define.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahydra/swnet/HEAD/example/protocol/protocol_define.go -------------------------------------------------------------------------------- /example/protocol/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahydra/swnet/HEAD/example/protocol/stream.go -------------------------------------------------------------------------------- /example/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahydra/swnet/HEAD/example/server/server.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahydra/swnet/HEAD/server.go -------------------------------------------------------------------------------- /session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eahydra/swnet/HEAD/session.go --------------------------------------------------------------------------------