diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-04-30 23:43:46 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-04-30 23:43:46 +0000 |
commit | 145baf8763889aab2840b745c660e6ceebbd38d0 (patch) | |
tree | 6b8b4e25583002b0eee3f8c3a74fcdb408ab8808 /pkg/tcpip/stack/packet_buffer.go | |
parent | d8ea80babf328851bf642707c71dfe6f025db888 (diff) | |
parent | ae15d90436ec5ecd8795bed2a357b1990123e8fd (diff) |
Merge release-20200422.0-7-gae15d90 (automated)
Diffstat (limited to 'pkg/tcpip/stack/packet_buffer.go')
-rwxr-xr-x | pkg/tcpip/stack/packet_buffer.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/tcpip/stack/packet_buffer.go b/pkg/tcpip/stack/packet_buffer.go index dc125f25e..06d312207 100755 --- a/pkg/tcpip/stack/packet_buffer.go +++ b/pkg/tcpip/stack/packet_buffer.go @@ -60,6 +60,12 @@ type PacketBuffer struct { // Owner is implemented by task to get the uid and gid. // Only set for locally generated packets. Owner tcpip.PacketOwner + + // The following fields are only set by the qdisc layer when the packet + // is added to a queue. + EgressRoute *Route + GSOOptions *GSO + NetworkProtocolNumber tcpip.NetworkProtocolNumber } // Clone makes a copy of pk. It clones the Data field, which creates a new |