Score: 125/100
Finished: 25.04.2024
The purpose of this project is to code a small data exchange program using UNIX signals.
Use make
to compile the program. The server and client executables will be created.
Run the server with ./server
and the client with ./client [server_pid] [message]
.
$ ./server
Server PID: 1234
$ ./client 1234 "Hello, world!"
After recieving the whole message, the server will print it out. The server confirms every bit as well as the reception of the whole message to the client.