errors_default.go raw

   1  //go:build !linux
   2  
   3  /* SPDX-License-Identifier: MIT
   4   *
   5   * Copyright (C) 2017-2025 WireGuard LLC. All Rights Reserved.
   6   */
   7  
   8  package conn
   9  
  10  func errShouldDisableUDPGSO(_ error) bool {
  11  	return false
  12  }
  13