1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-19 14:05:23 +00:00
v2fly/transport/internet/sockopt_linux_test.go

43 lines
987 B
Go
Raw Normal View History

2018-09-10 19:08:59 +00:00
package internet_test
import (
"context"
"syscall"
"testing"
"github.com/v2fly/v2ray-core/v5/common"
"github.com/v2fly/v2ray-core/v5/common/net"
"github.com/v2fly/v2ray-core/v5/testing/servers/tcp"
. "github.com/v2fly/v2ray-core/v5/transport/internet"
2018-09-10 19:08:59 +00:00
)
func TestSockOptMark(t *testing.T) {
t.Skip("requires CAP_NET_ADMIN")
2018-09-10 19:08:59 +00:00
tcpServer := tcp.Server{
MsgProcessor: func(b []byte) []byte {
return b
},
}
dest, err := tcpServer.Start()
common.Must(err)
defer tcpServer.Close()
const mark = 1
2018-11-21 15:58:37 +00:00
dialer := DefaultSystemDialer{}
2018-11-21 16:15:41 +00:00
conn, err := dialer.Dial(context.Background(), nil, dest, &SocketConfig{Mark: mark})
2018-09-10 19:08:59 +00:00
common.Must(err)
defer conn.Close()
rawConn, err := conn.(*net.TCPConn).SyscallConn()
common.Must(err)
err = rawConn.Control(func(fd uintptr) {
m, err := syscall.GetsockoptInt(int(fd), syscall.SOL_SOCKET, syscall.SO_MARK)
common.Must(err)
if mark != m {
2018-10-14 06:02:23 +00:00
t.Fatal("unexpected connection mark", m, " want ", mark)
2018-09-10 19:08:59 +00:00
}
})
common.Must(err)
}