diff options
Diffstat (limited to 'libgo/go/net/sendfile_stub.go')
-rw-r--r-- | libgo/go/net/sendfile_stub.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libgo/go/net/sendfile_stub.go b/libgo/go/net/sendfile_stub.go new file mode 100644 index 00000000000..43e8104e94c --- /dev/null +++ b/libgo/go/net/sendfile_stub.go @@ -0,0 +1,14 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package net + +import ( + "io" + "os" +) + +func sendFile(c *netFD, r io.Reader) (n int64, err os.Error, handled bool) { + return 0, nil, false +} |