tidwall 555e47036c Replaced net package with evio
- Added threads startup flag
- Replaced net package with evio
- Refactored controller into server
2018-10-28 15:51:47 -07:00

12 lines
354 B
Go

// Copyright 2017 Joshua J Baker. All rights reserved.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
package internal
// SetKeepAlive sets the keepalive for the connection
func SetKeepAlive(fd, secs int) error {
// OpenBSD has no user-settable per-socket TCP keepalive options.
return nil
}