1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-21 17:46:58 -05:00

fix windows reader

This commit is contained in:
Darien Raymond 2018-08-25 23:27:09 +02:00
parent 7c9c66601e
commit b4d065610a
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
2 changed files with 1 additions and 5 deletions

View File

@ -2,7 +2,6 @@ package buf_test
import (
"crypto/rand"
"fmt"
"net"
"testing"
@ -51,7 +50,6 @@ func TestReadvReader(t *testing.T) {
t.Fatal("unexpected error: ", err)
}
rmb.AppendMulti(mb)
fmt.Println("Len=", rmb.Len())
if rmb.Len() == size {
break
}

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)