From 1c495c9b07025fd12d0fe7e87536f02ee9a4a2d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Sat, 15 Jun 2024 10:55:18 +0800 Subject: [PATCH] Make RoutingMark uint32 --- common/control/mark_linux.go | 4 ++-- common/control/mark_other.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/control/mark_linux.go b/common/control/mark_linux.go index b89c1ef..da52f02 100644 --- a/common/control/mark_linux.go +++ b/common/control/mark_linux.go @@ -4,10 +4,10 @@ import ( "syscall" ) -func RoutingMark(mark int) Func { +func RoutingMark(mark uint32) Func { return func(network, address string, conn syscall.RawConn) error { return Raw(conn, func(fd uintptr) error { - return syscall.SetsockoptInt(int(fd), syscall.SOL_SOCKET, syscall.SO_MARK, mark) + return syscall.SetsockoptInt(int(fd), syscall.SOL_SOCKET, syscall.SO_MARK, int(mark)) }) } } diff --git a/common/control/mark_other.go b/common/control/mark_other.go index eb76c0b..a4298f3 100644 --- a/common/control/mark_other.go +++ b/common/control/mark_other.go @@ -2,6 +2,6 @@ package control -func RoutingMark(mark int) Func { +func RoutingMark(mark uint32) Func { return nil }