diff options
Diffstat (limited to 'src/vnet/replication.h')
-rw-r--r-- | src/vnet/replication.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vnet/replication.h b/src/vnet/replication.h index 42ec69a43ff..531a61c2fd1 100644 --- a/src/vnet/replication.h +++ b/src/vnet/replication.h @@ -43,12 +43,13 @@ typedef struct /* data saved from the original packet and restored for each replica */ u64 l2_header[3]; /* 24B (must be at least 22B for l2 packets) */ + u32 flags; /* vnet buffer flags */ u16 ip_tos; /* v4 and v6 */ u16 ip4_checksum; /* needed for v4 only */ /* data saved from the vlib buffer header and restored for each replica */ i16 current_data; /* offset of first byte of packet in packet data */ - u8 pad[6]; /* to 64B */ + u8 pad[2]; /* to 64B */ u8 l2_packet; /* flag for l2 vs l3 packet data */ } replication_context_t; /* 128B */ |