summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/link/fdbased/endpoint.go
diff options
context:
space:
mode:
authorTamir Duberstein <tamird@google.com>2018-09-14 16:38:45 -0700
committerShentubot <shentubot@google.com>2018-09-14 16:39:56 -0700
commit75c66f871b56a8f4e83dc9ccec29cf3d2c38fea4 (patch)
tree137a5e51dcc786e76bc96e34ac36be8fdb5ac304 /pkg/tcpip/link/fdbased/endpoint.go
parent3aa50f18a4102429aa40f5d0e518357ceaed2373 (diff)
Remove buffer.Prependable.UsedBytes
It is the same as buffer.Prependable.View. PiperOrigin-RevId: 213064166 Change-Id: Ib33b8a2c4da864209d9a0be0a1c113be10b520d3
Diffstat (limited to 'pkg/tcpip/link/fdbased/endpoint.go')
-rw-r--r--pkg/tcpip/link/fdbased/endpoint.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/tcpip/link/fdbased/endpoint.go b/pkg/tcpip/link/fdbased/endpoint.go
index 0b0d6c1e2..40a10eb9b 100644
--- a/pkg/tcpip/link/fdbased/endpoint.go
+++ b/pkg/tcpip/link/fdbased/endpoint.go
@@ -178,10 +178,10 @@ func (e *endpoint) WritePacket(r *stack.Route, hdr buffer.Prependable, payload b
}
if payload.Size() == 0 {
- return rawfile.NonBlockingWrite(e.fd, hdr.UsedBytes())
+ return rawfile.NonBlockingWrite(e.fd, hdr.View())
}
- return rawfile.NonBlockingWrite2(e.fd, hdr.UsedBytes(), payload.ToView())
+ return rawfile.NonBlockingWrite2(e.fd, hdr.View(), payload.ToView())
}
func (e *endpoint) capViews(n int, buffers []int) int {