1 // Copyright 2014 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // TCP socket options for plan9
13 // Set keep alive period.
14 func setKeepAlivePeriod(fd
*netFD
, d time
.Duration
) error
{
15 cmd
:= "keepalive " + string(int64(d
/time
.Millisecond
))
16 _
, e
:= fd
.ctl
.WriteAt([]byte(cmd
), 0)