summaryrefslogtreecommitdiffstats
path: root/scripts/stl/udp_1pkt_mac_step.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/stl/udp_1pkt_mac_step.py')
-rw-r--r--scripts/stl/udp_1pkt_mac_step.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/stl/udp_1pkt_mac_step.py b/scripts/stl/udp_1pkt_mac_step.py
index 0ebd035d..a2444905 100644
--- a/scripts/stl/udp_1pkt_mac_step.py
+++ b/scripts/stl/udp_1pkt_mac_step.py
@@ -9,8 +9,8 @@ class STLS1(object):
def create_stream (self):
- # create a base packet and pad it to size
- size = self.fsize - 4; # no FCS
+ # Create base packet and pad it to size
+ size = self.fsize - 4; # HW will add 4 bytes ethernet FCS
base_pkt = Ether()/IP(src="16.0.0.1",dst="48.0.0.1")/UDP(dport=12,sport=1025)
pad = max(0, size - len(base_pkt)) * 'x'