https://github.com/hectorta1989/peer-to-peer-chat-app-in-c
https://github.com/hectorta1989/peer-to-peer-chat-app-in-c
c chatapplication socket-programming udp
Last synced: 30 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hectorta1989/peer-to-peer-chat-app-in-c
- Owner: HectorTa1989
- Created: 2021-05-11T23:16:08.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-12T12:41:24.000Z (over 4 years ago)
- Last Synced: 2025-01-07T06:47:53.976Z (9 months ago)
- Topics: c, chatapplication, socket-programming, udp
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Peer to peer chat application written in C for CS course
run make to compile the code
to run tracker program, it takes in one optional parameter:
./tracker %tracker_port%
This will create two UDP sockets at ports %tracker_port% and %tracker_port+1%.
If %tracker_port% is not specified, it uses 8080. So, the ports used are 8080 and 8081to run peer program, it takes in 3 parameters:
./peer %tracker_ip% %tracker_port% %peer_port%
peer program takes user inputs, and below is the input format:
to request a list of all available rooms and number of peers in each room:
-rto request to create a new room:
-c
to request to join or switch to a new room:
-j %new_chatroom_number%
to request to leave a room
-l
to send a message to peers in the chatroom:
-m %message_that_you_want_to_send%