Update gvisor to 20241007.0

This commit is contained in:
世界 2024-10-19 09:15:40 +08:00
parent b2b56ffcf8
commit f8191b7dc0
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 39 additions and 15 deletions

View file

@ -26,6 +26,9 @@ func (e *WintunEndpoint) MTU() uint32 {
return e.tun.options.MTU
}
func (e *WintunEndpoint) SetMTU(mtu uint32) {
}
func (e *WintunEndpoint) MaxHeaderLength() uint16 {
return 0
}
@ -34,6 +37,9 @@ func (e *WintunEndpoint) LinkAddress() tcpip.LinkAddress {
return ""
}
func (e *WintunEndpoint) SetLinkAddress(addr tcpip.LinkAddress) {
}
func (e *WintunEndpoint) Capabilities() stack.LinkEndpointCapabilities {
return stack.CapabilityRXChecksumOffload
}
@ -117,3 +123,9 @@ func (e *WintunEndpoint) WritePackets(packetBufferList stack.PacketBufferList) (
}
return n, nil
}
func (e *WintunEndpoint) Close() {
}
func (e *WintunEndpoint) SetOnCloseAction(f func()) {
}