Releases: antrea-io/ofnet
Releases · antrea-io/ofnet
v0.7.1
Add concurrency control for tableDb,groupDb and meterDb in OFSwitch (…
v0.6.10
For ofnet v0.6.10 (#56) * Bump up golangci-lint version to 1.52.1 (#54) Signed-off-by: wenyingd <[email protected]> * Add concurrency control for tableDb,groupDb and meterDb in OFSwitch (#52) Signed-off-by: Ruochen <[email protected]>
v0.7.0
Consume NXAST_Controller2/NX_PacketIn2 (#49) 1. Support NX_Controller2 action, the caller can descide to use NX_Controller or NX_Controller2 by setting property Controller.Version2 2. Support nx_packet_in2 message 3. Add support for NXT_RESUME message Signed-off-by: wenyingd <[email protected]>
v0.6.9
Add EthernetPacket field to PacketOut (#47) Provide an easy way to send an ethernet packet via PacketOut without filling all L2/3/4 headers. Signed-off-by: graysonwu <[email protected]>
v0.6.8
Fix Github action golangci-lint issue. (#48) Signed-off-by: Hongliang Liu <[email protected]>
v0.6.7
Update go module dependency (#44) Signed-off-by: wenyingd <[email protected]>
v0.6.6
Enable test on github actions (#41) Add support to run test with Github actions Signed-off-by: wenyingd <[email protected]>
v0.6.5
Add support for ct_ipv6_src/ct_ipv6_dst with netmask (#40) Signed-off-by: Hongliang Liu <[email protected]>
v0.6.4
Make some struct fields from private to public (#39) In this repo, some struct fields without related getter methods are private. When this repo is used by external projects, most struct fields are public and can be accessed by external projects code directly. There are also some struct fields are private, like `actions` of `NXActionConnTrack`, and it will be used by Antrea unit test code. This PR is to change some struct fields from private to public, then they can be accessed by external projects. Signed-off-by: Hongliang Liu <[email protected]>
v0.6.3
Add method GetMessage to interface OpenFlowModMessage (#38) Add method `GetMessage` to interface `OpenFlowModMessage` to get the member `message` of the struct which implements the interface `OpenFlowModMessage`. Signed-off-by: Hongliang Liu <[email protected]>