This is a simple echo server that listens on a Unix domain socket and echos back any data it receives.
To run the server, follow these steps:
-
Clone the repository:
git clone <this repo>
-
Change into the project directory:
cd unix-socket-echo-server
-
Build server and client:
make
-
Run the server a terminal:
./server
-
In another terminal, run the client:
./client
-
Type a message in the client terminal and press enter. The server will echo the message back to the client.