4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-07-15 08:58:55 +00:00

Update dependencies (#1628)

This commit is contained in:
Wim
2021-10-30 15:17:50 +02:00
committed by GitHub
parent f65b18c2f6
commit 835dd2635a
9 changed files with 93 additions and 29 deletions

View File

@ -2,13 +2,13 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build (js && wasm) || plan9 || windows
// +build js,wasm plan9 windows
//go:build (js && wasm) || plan9 || solaris || windows
// +build js,wasm plan9 solaris windows
package agent
import "syscall"
func setsockoptReuseAddrAndPort(network, address string, c syscall.RawConn) error {
func setReuseAddrAndPortSockopts(network, address string, c syscall.RawConn) error {
return nil
}