syncthing/utils.go

29 lines
561 B
Go
Raw Normal View History

2015-06-24 11:39:46 +00:00
// Copyright (C) 2015 Audrius Butkevicius and Contributors (see the CONTRIBUTORS file).
package main
import (
"errors"
"net"
)
func setTCPOptions(conn net.Conn) error {
tcpConn, ok := conn.(*net.TCPConn)
if !ok {
return errors.New("Not a TCP connection")
}
if err := tcpConn.SetLinger(0); err != nil {
return err
}
if err := tcpConn.SetNoDelay(true); err != nil {
return err
}
2015-06-28 00:52:01 +00:00
if err := tcpConn.SetKeepAlivePeriod(networkTimeout); err != nil {
2015-06-24 11:39:46 +00:00
return err
}
if err := tcpConn.SetKeepAlive(true); err != nil {
return err
}
return nil
}