1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-06 09:15:37 -05:00

fix windows reader

This commit is contained in:
Darien Raymond
2018-08-25 23:27:09 +02:00
parent 7c9c66601e
commit b4d065610a
2 changed files with 1 additions and 5 deletions

View File

@@ -3,7 +3,6 @@
package buf
import (
"fmt"
"syscall"
)
@@ -16,7 +15,7 @@ func (r *windowsReader) Init(bs []*Buffer) {
r.bufs = make([]syscall.WSABuf, 0, len(bs))
}
for _, b := range bs {
r.bufs = append(r.bufs, syscall.WSABuf{Len: uint32(b.Len()), Buf: &b.v[0]})
r.bufs = append(r.bufs, syscall.WSABuf{Len: uint32(Size), Buf: &b.v[0]})
}
}
@@ -32,7 +31,6 @@ func (r *windowsReader) Read(fd uintptr) int32 {
var flags uint32
err := syscall.WSARecv(syscall.Handle(fd), &r.bufs[0], uint32(len(r.bufs)), &nBytes, &flags, nil, nil)
if err != nil {
fmt.Println("Err=", err)
return -1
}
return int32(nBytes)