2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 14:25:26 +00:00

userspace: add gre sequence number support.

The patch adds support for gre sequence number.
Default is disable.  When enable with 'options:seq=true',
the outgoing gre packet will have its sequence number
incremented by one.

Signed-off-by: William Tu <u9012063@gmail.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
This commit is contained in:
William Tu
2018-05-15 16:10:49 -04:00
committed by Ben Pfaff
parent 754f8acb45
commit 0ffff49753
5 changed files with 42 additions and 6 deletions

View File

@@ -127,6 +127,9 @@ struct netdev_tunnel_config {
bool csum;
bool dont_fragment;
enum netdev_pt_mode pt_mode;
bool set_seq;
uint32_t seqno;
};
void netdev_run(void);