diff options
author | 2016-01-26 16:57:41 -0500 | |
---|---|---|
committer | 2016-01-26 16:57:41 -0500 | |
commit | ea3f39cd42ea667d1928564a25bffca19275cfeb (patch) | |
tree | e66c13220f660857f5adc69f36d5241c2ed1e80a /api | |
parent | db6254e3c59ef887ff41ff2aff44349010bd6bad (diff) |
1. fixed failing regression test
2. enabled STL nose tests
3. fixed packet size padding to 60
Diffstat (limited to 'api')
-rw-r--r-- | api/stl/examples/stl_simple_burst.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/stl/examples/stl_simple_burst.py b/api/stl/examples/stl_simple_burst.py index 49355890..ff159289 100644 --- a/api/stl/examples/stl_simple_burst.py +++ b/api/stl/examples/stl_simple_burst.py @@ -27,7 +27,7 @@ def simple_burst (): pkt_bld.set_layer_attr("l4_tcp", "flags", 0) pkt_bld.set_layer_attr("l4_tcp", "win", 32768) pkt_bld.set_layer_attr("l4_tcp", "seq", 0) - pkt_bld.set_pkt_payload("abcdefgh") + #pkt_bld.set_pkt_payload("abcdefgh") pkt_bld.set_layer_attr("l3_ip", "len", len(pkt_bld.get_layer('l3_ip'))) |