UDP Socket Programming (single-client)- Hamming Code

Configure a single-client UDP server. The client sends a data word to the server from the user. With the Hamming code error correction technique, the server will…

TCP Socket Programming (multi-client)- CRC

Set up a multi-client TCP server. The client will take the user’s data word and divisor and send them to the server. Using CRC, the server will…

Program to determine the Class, Network ID, Host ID, Broadcast ID, and Default Mask ID of an IPv4 address

Input an IPv4 address. Create a C program that checks which class it belongs to. In addition, print comments for the network address, the host address, the…

TCP Socket Programming (single client)- Bit Stuffing

Write C programs to implement TCP Socket. The client will take a bit stream from the user and send it to the server. The server will implement…

Client-Server application using Unix File Socket communication in C

Write C programs to implement a simple Client-Server application using Unix File Socket communication. A client will send N integers to the server, which will sort them…