Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(72)

Delta Between Two Patch Sets: src/pkg/net/sendfile_stub.go

Issue 4538088: code review 4538088: http,io,net: sendfile support (Closed)
Left Patch Set: Created 13 years, 10 months ago
Right Patch Set: diff -r 58102fac10c6 https://go.googlecode.com/hg Created 13 years, 10 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« src/pkg/io/io.go ('K') | « src/pkg/net/sendfile_linux.go ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b