Left: | ||
Right: |
LEFT | RIGHT |
---|---|
(no file at all) | |
1 // Copyright 2011 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 package net | |
6 | |
7 import ( | |
8 "io" | |
9 "os" | |
10 "syscall" | |
11 ) | |
12 | |
13 func (c *TCPConn) SendFile(f *os.File, n int64) (int64, os.Error) { | |
r
2011/05/24 03:00:29
this is no longer a stub. the file should be sendf
r
2011/05/24 03:00:29
shouldn't there be a doc comment here?
| |
14 if n < 0 { | |
15 return io.BufferedCopy(c, r) | |
16 } | |
17 return io.BufferedCopyn(c, r, n) | |
r
2011/05/24 03:00:29
why doesn't BufferedCopyn have the same if stateme
| |
18 } | |
LEFT | RIGHT |