You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
551 B
30 lines
551 B
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package ipnlocal
|
|
|
|
import (
|
|
"log"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func init() {
|
|
breakTCPConns = breakTCPConnsLinux
|
|
}
|
|
|
|
func breakTCPConnsLinux() error {
|
|
var matched int
|
|
for fd := range 1000 {
|
|
_, err := unix.GetsockoptTCPInfo(fd, unix.IPPROTO_TCP, unix.TCP_INFO)
|
|
if err == nil {
|
|
matched++
|
|
err = unix.Close(fd)
|
|
log.Printf("debug: closed TCP fd %v: %v", fd, err)
|
|
}
|
|
}
|
|
if matched == 0 {
|
|
log.Printf("debug: no TCP connections found")
|
|
}
|
|
return nil
|
|
}
|
|
|