The purpose of this project is to code a small data exchange program using UNIX signals.
At 42 School, almost every project must be written in accordance to the Norm, the school's coding standard. As a result, the implementation of certain parts may appear strange and for sure had room for improvement.
To use this project, compile the project and :
- Run the server with :
$ ./server
The terminal return the PID of the server.
- Run the client with the PID of the server and a message in another shell :
$ ./client XXXXXX "Hello World"
The message is send to the server terminal !
To install the project, clone this repository :
$ git@github.com:julienhouyet/42-minitalk.git
To compile the project, run :
$ make
To re-compile the project :
$ make re
To wipes all object files :
$ make clean
To delete the project and all object files
$ make fclean