123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package main
- import (
- "net/netip"
- "testing"
- C "github.com/sagernet/sing-box/constant"
- "github.com/sagernet/sing-box/option"
- "github.com/sagernet/sing-shadowsocks/shadowaead"
- )
- func TestTCPSlowOpen(t *testing.T) {
- method := shadowaead.List[0]
- password := mkBase64(t, 16)
- startInstance(t, option.Options{
- Inbounds: []option.Inbound{
- {
- Type: C.TypeMixed,
- Tag: "mixed-in",
- MixedOptions: option.HTTPMixedInboundOptions{
- ListenOptions: option.ListenOptions{
- Listen: option.NewListenAddress(netip.IPv4Unspecified()),
- ListenPort: clientPort,
- },
- },
- },
- {
- Type: C.TypeShadowsocks,
- ShadowsocksOptions: option.ShadowsocksInboundOptions{
- ListenOptions: option.ListenOptions{
- Listen: option.NewListenAddress(netip.IPv4Unspecified()),
- ListenPort: serverPort,
- TCPFastOpen: true,
- },
- Method: method,
- Password: password,
- },
- },
- },
- Outbounds: []option.Outbound{
- {
- Type: C.TypeDirect,
- },
- {
- Type: C.TypeShadowsocks,
- Tag: "ss-out",
- ShadowsocksOptions: option.ShadowsocksOutboundOptions{
- ServerOptions: option.ServerOptions{
- Server: "127.0.0.1",
- ServerPort: serverPort,
- },
- DialerOptions: option.DialerOptions{
- TCPFastOpen: true,
- },
- Method: method,
- Password: password,
- },
- },
- },
- Route: &option.RouteOptions{
- Rules: []option.Rule{
- {
- DefaultOptions: option.DefaultRule{
- Inbound: []string{"mixed-in"},
- Outbound: "ss-out",
- },
- },
- },
- },
- })
- testSuit(t, clientPort, testPort)
- }
|