~vtuson/scopecreator/twitter-template

« back to all changes in this revision

Viewing changes to src/go/src/code.google.com/p/go.net/ipv4/sockopt_stub.go

  • Committer: Victor Palau
  • Date: 2015-03-11 14:24:42 UTC
  • Revision ID: vtuson@gmail.com-20150311142442-f2pxp111c8ynv232
public release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2012 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.
 
4
 
 
5
// +build nacl plan9 solaris
 
6
 
 
7
package ipv4
 
8
 
 
9
func ipv4HeaderPrepend(fd int) (bool, error) {
 
10
        // TODO(mikio): Implement this
 
11
        return false, errOpNoSupport
 
12
}
 
13
 
 
14
func setIPv4HeaderPrepend(fd int, v bool) error {
 
15
        // TODO(mikio): Implement this
 
16
        return errOpNoSupport
 
17
}