Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 470 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 470 Bytes

ToyServer

bazel build

To build the server and client with bazel
bazel build //exe/...

To run the server
./bazel-bin/server_main hostname port

To run the client
./bazel-bin/client_main hostname port

GNU make

To build the server and client with make
make

To run the server
server_main hostname port

To run the client
client_main hostname port