diff options
author | Susant Sahani <ssahani@users.noreply.github.com> | 2016-08-30 20:22:04 +0530 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-08-30 16:52:04 +0200 |
commit | 50725d10e3417fd357abe1df2f177b8458027ac7 (patch) | |
tree | 4f047ea153910172de4f2e782b4ad5ef6f2fd587 /src/udev/net/link-config.h | |
parent | a908cf0a126a332a209670ad5c769efa231fd002 (diff) |
link : add support to configure Offload features (#4017)
This patch supports these features to be on or off
Generic Segmentation Offload
TCP Segmentation Offload
UDP Segmentation Offload
fixes #432
Diffstat (limited to 'src/udev/net/link-config.h')
-rw-r--r-- | src/udev/net/link-config.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/udev/net/link-config.h b/src/udev/net/link-config.h index 9df5529d05..91cc0357c4 100644 --- a/src/udev/net/link-config.h +++ b/src/udev/net/link-config.h @@ -70,6 +70,7 @@ struct link_config { size_t speed; Duplex duplex; WakeOnLan wol; + NetDevFeature features[_NET_DEV_FEAT_MAX]; LIST_FIELDS(link_config, links); }; |