mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-04-30 17:38:41 +00:00
v1.0.0
This commit is contained in:
parent
47d23e9972
commit
c7f7c08ead
711 changed files with 82154 additions and 2 deletions
40
transport/internet/sockopt_test.go
Normal file
40
transport/internet/sockopt_test.go
Normal file
|
@ -0,0 +1,40 @@
|
|||
package internet_test
|
||||
|
||||
import (
|
||||
"context"
|
||||
"testing"
|
||||
|
||||
"github.com/google/go-cmp/cmp"
|
||||
"github.com/xtls/xray-core/v1/common"
|
||||
"github.com/xtls/xray-core/v1/common/buf"
|
||||
"github.com/xtls/xray-core/v1/testing/servers/tcp"
|
||||
. "github.com/xtls/xray-core/v1/transport/internet"
|
||||
)
|
||||
|
||||
func TestTCPFastOpen(t *testing.T) {
|
||||
tcpServer := tcp.Server{
|
||||
MsgProcessor: func(b []byte) []byte {
|
||||
return b
|
||||
},
|
||||
}
|
||||
dest, err := tcpServer.StartContext(context.Background(), &SocketConfig{Tfo: SocketConfig_Enable})
|
||||
common.Must(err)
|
||||
defer tcpServer.Close()
|
||||
|
||||
ctx := context.Background()
|
||||
dialer := DefaultSystemDialer{}
|
||||
conn, err := dialer.Dial(ctx, nil, dest, &SocketConfig{
|
||||
Tfo: SocketConfig_Enable,
|
||||
})
|
||||
common.Must(err)
|
||||
defer conn.Close()
|
||||
|
||||
_, err = conn.Write([]byte("abcd"))
|
||||
common.Must(err)
|
||||
|
||||
b := buf.New()
|
||||
common.Must2(b.ReadFrom(conn))
|
||||
if r := cmp.Diff(b.Bytes(), []byte("abcd")); r != "" {
|
||||
t.Fatal(r)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue