https://github.com/marcusvinix/minitalk42
The purpose of this project is to code a small data exchange program using UNIX signals.
https://github.com/marcusvinix/minitalk42
42 42school c minitalk42 signal
Last synced: 3 months ago
JSON representation
The purpose of this project is to code a small data exchange program using UNIX signals.
- Host: GitHub
- URL: https://github.com/marcusvinix/minitalk42
- Owner: MarcusVinix
- Created: 2021-08-30T17:33:18.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-02T15:41:44.000Z (almost 4 years ago)
- Last Synced: 2025-01-01T12:12:12.021Z (5 months ago)
- Topics: 42, 42school, c, minitalk42, signal
- Language: C
- Homepage:
- Size: 1.05 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MiniTalk
## Description
This project is about create a communication between a server and client, using signal UNIX.
The server will be launched and display the pid, and whit that pid the client can send a message.## How use
To use you just need create the compiled files server and client, executing make, this will create their both. First you will start the server `./server` the server will be started and the pid for the connection will show at terminal, now in another terminal you just need execute the client `./client PID "MESSAGE"` the message will appear int the server terminal, enjoy!## Bonus
* Unicode work.
* The client received a signal from the server when the message is received.