forked from tkn-tub/ns3-gym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tcp_newreno.py
56 lines (46 loc) · 1.55 KB
/
tcp_newreno.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from tcp_base import TcpEventBased
__author__ = "Piotr Gawlowicz"
__copyright__ = "Copyright (c) 2018, Technische Universität Berlin"
__version__ = "0.1.0"
__email__ = "[email protected]"
class TcpNewReno(TcpEventBased):
"""docstring for TcpNewReno"""
def __init__(self):
super(TcpNewReno, self).__init__()
def get_action(self, obs, reward, done, info):
# unique socket ID
socketUuid = obs[0]
# TCP env type: event-based = 0 / time-based = 1
envType = obs[1]
# sim time in us
simTime_us = obs[2]
# unique node ID
nodeId = obs[3]
# current ssThreshold
ssThresh = obs[4]
# current contention window size
cWnd = obs[5]
# segment size
segmentSize = obs[6]
# number of acked segments
segmentsAcked = obs[7]
# estimated bytes in flight
bytesInFlight = obs[8]
new_cWnd = 1
new_ssThresh = 1
# IncreaseWindow
if (cWnd < ssThresh):
# slow start
if (segmentsAcked >= 1):
new_cWnd = cWnd + segmentSize
if (cWnd >= ssThresh):
# congestion avoidance
if (segmentsAcked > 0):
adder = 1.0 * (segmentSize * segmentSize) / cWnd;
adder = int(max (1.0, adder))
new_cWnd = cWnd + adder
# GetSsThresh
new_ssThresh = int(max (2 * segmentSize, bytesInFlight / 2))
# return actions
actions = [new_ssThresh, new_cWnd]
return actions