mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
Make RoutingMark uint32
This commit is contained in:
parent
0f95dfe0e3
commit
1c495c9b07
2 changed files with 3 additions and 3 deletions
|
@ -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))
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
package control
|
||||
|
||||
func RoutingMark(mark int) Func {
|
||||
func RoutingMark(mark uint32) Func {
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue