Learn Network Protocol and Programming Using C
Prerequisite
Basics of computer networks
Intermediate in C language
Purpose
The Purpose of learning this course is to understand the various network layer, transport layer and application layer protocols and it also helps to design and implement the protocols using socking programming.
List Of Experiment
Study of necessary header files with respect to socket programming.
Study of Basic Functions of Socket Programming.
Simple TCP/IP Client Server Communication.
UDP Echo Client Server Communication.
Concurrent TCP/IP Day-Time Server.
Half Duplex Chat Using TCP/IP.
Full Duplex Chat Using TCP/IP.
Implementation of File Transfer Protocol.
Remote Command Execution Using UDP.
Arp Implementation Using UDP.
Tips for using the repository
Use
make
. Example :make fileName
(without extention C)It will make server and client file for you.
Test using
./server
in a terminal separately and./client
in a different terminal.