Daily bump.
[official-gcc.git] / libgo / go / net / tcpsockopt_windows.go
blob0bf4312f248b04befe5acf13ed2784fec466fff0
1 // Copyright 2009 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 windows
7 package net
9 import (
10 "time"
13 func setKeepAlivePeriod(fd *netFD, d time.Duration) error {
14 if err := fd.incref(); err != nil {
15 return err
17 defer fd.decref()
19 // We can't actually set this per connection. Act as a noop rather than an error.
20 return nil