Implement the TODOs in server.cpp and client.cpp.
server.cpp: Runs a server that listens for messages from clients.client.cpp: Creates a client that sends a single message to the server.
$ git clone https://github.com/eecs482/bgreeves.sockets.starter.git
The Makefile has recipes to build the client and server programs on CAEN or Mac OS using:
# To build
$ make client
$ make server
# To clean
$ make clean
In one terminal, run the server and specify a port to listen on:
$ ./server 8888
Starting server on port 8888
In another terminal, spawn a client to send a message to the server:
$ ./client localhost 8888 "hello server"
Sending message hello server to localhost:8888
Server responds with status code 42
The server should print the message it receives to the terminal:
$ ./server 8888
Starting server on port 8888
New connection 4
Client 4 says "hello server"
In order to run a server and a client in two separate terminals over SSH, you have to be connected to the same CAEN machine.
To do this, first, from one terminal, SSH into CAEN normally and determine the hostname of the machine you logged into:
$ ssh [email protected]
$ hostname
caen-vnc-vmXX.engin.umich.edu
Then you can SSH directly into this machine from another terminal:
$ ssh [email protected]