https://github.com/antonio-pedro99/real-time-chat-with-socket
https://github.com/antonio-pedro99/real-time-chat-with-socket
c linux-kernel socket system-programming
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/antonio-pedro99/real-time-chat-with-socket
- Owner: antonio-pedro99
- License: apache-2.0
- Created: 2022-01-06T15:17:13.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-06T15:37:33.000Z (almost 4 years ago)
- Last Synced: 2025-07-27T12:02:41.690Z (3 months ago)
- Topics: c, linux-kernel, socket, system-programming
- Language: C
- Homepage:
- Size: 8.79 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Real time chat with socket in C
I used to socket() to implement real time chat that run with two c programs.
Socket is one of the byte stream data transfers comunitation facility available in Unix like operating System. Each read operation may read an arbitrary number of bytes from the IPC facility, regardless of the size of blocks written by the writer.I have create one socket to read and and to write.
## How to compile
run make## How to run
run ./a.out
run ./b.out## How to clean
run make clean## How the program works

Credts: Antonio Pedro