mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 01:57:12 -05:00
Merge branch 'master' of https://github.com/v2ray/v2ray-core
This commit is contained in:
commit
5dbfd75542
@ -644,14 +644,14 @@ func TestVMessNone(t *testing.T) {
|
||||
})
|
||||
assert.Error(err).IsNil()
|
||||
|
||||
payload := make([]byte, 10240*1024)
|
||||
payload := make([]byte, 1024*1024)
|
||||
rand.Read(payload)
|
||||
|
||||
nBytes, err := conn.Write(payload)
|
||||
assert.Error(err).IsNil()
|
||||
assert.Int(nBytes).Equals(len(payload))
|
||||
|
||||
response := readFrom(conn, time.Second*20, 10240*1024)
|
||||
response := readFrom(conn, time.Second*20, 1024*1024)
|
||||
assert.Bytes(response).Equals(xor(payload))
|
||||
assert.Error(conn.Close()).IsNil()
|
||||
wg.Done()
|
||||
|
Loading…
Reference in New Issue
Block a user