├── .gitignore ├── README.md ├── cmd ├── client │ └── client.go ├── server │ └── server.go └── stress_testing │ └── client.go ├── conn.go ├── epoll.go ├── go.mod ├── go.sum ├── jsclient ├── index.html └── main.js ├── message.go ├── server.go └── tls ├── cert.pem └── key.pem /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widaT/crab/HEAD/README.md -------------------------------------------------------------------------------- /cmd/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widaT/crab/HEAD/cmd/client/client.go -------------------------------------------------------------------------------- /cmd/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widaT/crab/HEAD/cmd/server/server.go -------------------------------------------------------------------------------- /cmd/stress_testing/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widaT/crab/HEAD/cmd/stress_testing/client.go -------------------------------------------------------------------------------- /conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widaT/crab/HEAD/conn.go -------------------------------------------------------------------------------- /epoll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widaT/crab/HEAD/epoll.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widaT/crab/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widaT/crab/HEAD/go.sum -------------------------------------------------------------------------------- /jsclient/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widaT/crab/HEAD/jsclient/index.html -------------------------------------------------------------------------------- /jsclient/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widaT/crab/HEAD/jsclient/main.js -------------------------------------------------------------------------------- /message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widaT/crab/HEAD/message.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widaT/crab/HEAD/server.go -------------------------------------------------------------------------------- /tls/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widaT/crab/HEAD/tls/cert.pem -------------------------------------------------------------------------------- /tls/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widaT/crab/HEAD/tls/key.pem --------------------------------------------------------------------------------