2022-08-23 13:07:35 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/netip"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
C "github.com/sagernet/sing-box/constant"
|
|
|
|
"github.com/sagernet/sing-box/option"
|
|
|
|
)
|
|
|
|
|
2023-07-11 06:03:55 +00:00
|
|
|
// Since this is a feature one-off added by outsiders, I won't address these anymore.
|
|
|
|
func _TestProxyProtocol(t *testing.T) {
|
2022-08-23 13:07:35 +00:00
|
|
|
startInstance(t, option.Options{
|
|
|
|
Inbounds: []option.Inbound{
|
|
|
|
{
|
|
|
|
Type: C.TypeMixed,
|
|
|
|
Tag: "mixed-in",
|
|
|
|
MixedOptions: option.HTTPMixedInboundOptions{
|
|
|
|
ListenOptions: option.ListenOptions{
|
2023-03-19 12:46:22 +00:00
|
|
|
Listen: option.NewListenAddress(netip.IPv4Unspecified()),
|
2022-08-23 13:07:35 +00:00
|
|
|
ListenPort: clientPort,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: C.TypeDirect,
|
|
|
|
DirectOptions: option.DirectInboundOptions{
|
|
|
|
ListenOptions: option.ListenOptions{
|
2023-03-19 12:46:22 +00:00
|
|
|
Listen: option.NewListenAddress(netip.IPv4Unspecified()),
|
2022-08-23 13:07:35 +00:00
|
|
|
ListenPort: serverPort,
|
|
|
|
ProxyProtocol: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Outbounds: []option.Outbound{
|
|
|
|
{
|
|
|
|
Type: C.TypeDirect,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: C.TypeDirect,
|
2023-07-11 06:03:55 +00:00
|
|
|
Tag: "proxy-out",
|
2022-08-23 13:07:35 +00:00
|
|
|
DirectOptions: option.DirectOutboundOptions{
|
|
|
|
OverrideAddress: "127.0.0.1",
|
|
|
|
OverridePort: serverPort,
|
|
|
|
ProxyProtocol: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Route: &option.RouteOptions{
|
|
|
|
Rules: []option.Rule{
|
|
|
|
{
|
|
|
|
DefaultOptions: option.DefaultRule{
|
|
|
|
Inbound: []string{"mixed-in"},
|
2023-07-11 06:03:55 +00:00
|
|
|
Outbound: "proxy-out",
|
2022-08-23 13:07:35 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
testSuit(t, clientPort, testPort)
|
|
|
|
}
|