###Instructions on how to set up the network:
The network topology is generated by parsing the input.txt file. The format is as follows:
####Hosts:
- String name of host
- IP Address, decimal
- Algorithm running on host as source
######Example:
Host1,1,TCP Reno
Host2,3,TCP Tahoe
####Routers:
- String name of router
- IP Address, decimal
######Example:
Router1,2
###Links:
- String name of link
- rate in Mbps
- delay in ms
- buffer size in KB
- Name of first connection
- Name of second connection
######Example:
Link1,10,1,64,Host1,Router1
###Flows:
- String name of flow
- string name of source host
- string name of destination host
- exponent of 2 (i.e. 22 -> 2^22) bytes in flow
- Start time of flow in seconds
- port number of receiver
- port number of destination
######Example:
Flow1,Host1,Host2,12,1,80,80