Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abdulsamie10/clientserverudp
This repository contains client server communication using UDP protocol.
https://github.com/abdulsamie10/clientserverudp
c c-plus-plus client client-server communication-protocol server ubuntu udp udp-protocol
Last synced: about 8 hours ago
JSON representation
This repository contains client server communication using UDP protocol.
- Host: GitHub
- URL: https://github.com/abdulsamie10/clientserverudp
- Owner: abdulsamie10
- Created: 2023-01-09T07:35:56.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-09T07:48:05.000Z (almost 2 years ago)
- Last Synced: 2024-04-28T04:56:18.187Z (6 months ago)
- Topics: c, c-plus-plus, client, client-server, communication-protocol, server, ubuntu, udp, udp-protocol
- Language: C
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ClientServerUDP
This repository contains client server communication using UDP protocol. This contains two questions.# Question 1
Write a pair of UDP client/server programs showing the two-way communication between client and server. Each message should display the number of bytes of the message received.# Question 2
Design UDP iterative Client Server application to reverse the given input string. An iterative server is the one that deals with one client at a time but never Exit. (Client will send the string, server will reverse and display the output)# OS Dependency
Ubuntu/Linux# Import and Run
Firstly run server using following commnds.For compiling:
gcc -o s.out server.cFor running:
./s.out
After creating server, here comes the command for compiling and running client.For compiling:
gcc -o c.out client.cFor running:
./c.out