about summary refs log tree commit diff stats
path: root/lib/keepalive_dummy.go
blob: d455a4269ab2a6c66e83eb0d58bf3adf6a1f17c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
//go:build !linux
// +build !linux

package lib

func SetTcpKeepaliveProbes(fd, count int) error {
	return nil
}

func SetTcpKeepaliveInterval(fd, interval int) error {
	return nil
}