features_default.go 250 B

123456789101112131415
  1. //go:build !linux
  2. // +build !linux
  3. /* SPDX-License-Identifier: MIT
  4. *
  5. * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved.
  6. */
  7. package conn
  8. import "net"
  9. func supportsUDPOffload(conn *net.UDPConn) (txOffload, rxOffload bool) {
  10. return
  11. }