Implementing a Network Simulator Project for CS 143.
###1. Hosts:
- End points of a network.
###2. Routers:
- Route packets through the network.
###3. Links:
- Connect hosts and routers.
###4.Packets :
- Units of data that are sent through the network
- Since we are implementing a TCP protocol, the packets follow TCP packet regulation:
- Source Port: 16bits
- Destination Port: 16 bits
- Sequence Number: 32 bits
- Acknoweledgement Number: 32 bits
- For more details about TCP, please refer to http://www.freesoft.org/CIE/Course/Section4/8.htm
###5.Flows :
- Represent data being sent from one host to another"# Network-Simulator"
