The purpose of this project is to code a small data exchange program using UNIX signals.
This project is written in C language and thus you must have gcc compiler and some standart C libraries. If you afford them, you also need "libft". You can find in my repositories. All done.
To compile, go to the project path and run:
make all
To test the program you have to run the "server" and the "client" in different shell tabs with the following:
./server
This will show your PID to make the client work and will stay waiting to receive a message from the "client"
./client "PID" "Your message string"
Now you can see "Your message string" on the server window.
Here are some related projects