aboutsummaryrefslogtreecommitdiffstats
path: root/lib/keepalive_dummy.go
blob: 205b577b5d746b8466847c5122e8cd91733f8be1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
//+build !linux

package lib

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

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