You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The purpose of this project is to code a small data exchange program
6
+
using UNIX signals.
7
+
8
+
9
+
10
+
## 🛠️ Usage
11
+
12
+
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.
13
+
14
+
To compile, go to the project path and run:
15
+
```javascript
16
+
make all
17
+
```
18
+
To test the program you have to run the "server" and the "client" in different shell tabs with the following:
19
+
```javascript
20
+
./server
21
+
```
22
+
This will show your PID to make the client work and will stay waiting to receive a message from the "client"
23
+
```javascript
24
+
./client "PID""Your message string"
25
+
```
26
+
Now you can see "Your message string" on the server window.
0 commit comments