* Rename IFCAP_TSO to IFCAP_TSO4 to make things crystal clear, keeping
the old name for compatibility
* Add IFCAP_TSO6 for the future
#define IFCAP_JUMBO_MTU 0x00020 /* 9000 byte MTU support */
#define IFCAP_RSS 0x00040 /* Receive Side Scaling for IPv4 */
#define IFCAP_VLAN_HWCSUM 0x00080 /* can do IFCAP_HWCSUM on VLANs */
-#define IFCAP_TSO 0x00100 /* can offload TCP segementation */
+#define IFCAP_TSO4 0x00100 /* can offload TCP segmentation */
+#define IFCAP_TSO IFCAP_TSO4
+#define IFCAP_TSO6 0x00200 /* can offload TCP6 segmentation */
#define IFCAP_HWCSUM (IFCAP_RXCSUM | IFCAP_TXCSUM)