diff options
author | 2016-03-03 18:13:14 +0200 | |
---|---|---|
committer | 2016-03-03 18:13:14 +0200 | |
commit | 9de81123201e66eddc82b8b70c7a4e458225211f (patch) | |
tree | 060262f1e1bbbd405dc3681999e5a9e4f23abc2d /release_notes.asciidoc | |
parent | abf927bcfde6e5cf11b54cbfab233daf84d649f1 (diff) |
v.194
Diffstat (limited to 'release_notes.asciidoc')
-rwxr-xr-x | release_notes.asciidoc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/release_notes.asciidoc b/release_notes.asciidoc index f052a72e..84eaf608 100755 --- a/release_notes.asciidoc +++ b/release_notes.asciidoc @@ -20,6 +20,29 @@ ifdef::backend-docbook[] endif::backend-docbook[] +== Release 1.94 == + +* Fix Python API stop/sync issue. Now TX counters are synced in case of stop API +* Improve performance of Python API, ~2000 cycles/sec of load/start/stop +* Add per stream Tx/Rx statistics for XL710/X710 NICS work in flow-director hardware + +[source,python] +---- +class STLS1(object): + + def get_streams (self, direction = 0): + return [STLStream(packet = + STLPktBuilder( + pkt ="stl/yaml/udp_64B_no_crc.pcap"), + mode = STLTXCont(pps=10), + rx_stats = STLRxStats(user_id = 7)) <1> + ] +---- +<1> Configure this stream to be count on all RX ports as user_id=7 + +* Add HTLAPI full example (examples `examples/hlt_udp_simple.py`) + + == Release 1.93 == * Support port attribute API and Console command. See `$portattr -a --prom` |