203554620d
The sticky socket code stays in the device package for now, as it reaches deeply into the peer list. This is the first step in an effort to split some code out of the very busy device package. Signed-off-by: David Crawshaw <crawshaw@tailscale.com>
13 lines
220 B
Go
13 lines
220 B
Go
// +build !linux,!openbsd,!freebsd
|
|
|
|
/* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
|
|
*/
|
|
|
|
package conn
|
|
|
|
func (bind *nativeBind) SetMark(mark uint32) error {
|
|
return nil
|
|
}
|