mirror of https://github.com/v2ray/v2ray-core
parent
e7d45d8d63
commit
55a4c8a464
|
@ -260,6 +260,7 @@ func TestAutoIssuingCertificate(t *testing.T) {
|
|||
servers, err := InitializeServerConfigs(serverConfig, clientConfig)
|
||||
assert(err, IsNil)
|
||||
|
||||
for i := 0; i < 10; i++ {
|
||||
conn, err := net.DialTCP("tcp", nil, &net.TCPAddr{
|
||||
IP: []byte{127, 0, 0, 1},
|
||||
Port: int(clientPort),
|
||||
|
@ -274,6 +275,7 @@ func TestAutoIssuingCertificate(t *testing.T) {
|
|||
response := readFrom(conn, time.Second*2, len(payload))
|
||||
assert(response, Equals, xor([]byte(payload)))
|
||||
assert(conn.Close(), IsNil)
|
||||
}
|
||||
|
||||
CloseAllServers(servers)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue