6
6
7
7
package main
8
8
9
+ // #include <stdint.h>
10
+ import "C"
11
+
9
12
import (
10
- "C"
11
13
"bufio"
12
14
"strings"
13
15
"unsafe"
@@ -28,7 +30,7 @@ type LogSink = unsafe.Pointer
28
30
type LogContext = unsafe.Pointer
29
31
30
32
//export wgTurnOn
31
- func wgTurnOn (cSettings * C.char , fd int , logSink LogSink , logContext LogContext ) int32 {
33
+ func wgTurnOn (cSettings * C.char , fd int , logSink LogSink , logContext LogContext ) C. int32_t {
32
34
logger := logging .NewLogger (logSink , logContext )
33
35
34
36
if cSettings == nil {
@@ -71,33 +73,33 @@ func wgTurnOn(cSettings *C.char, fd int, logSink LogSink, logContext LogContext)
71
73
return ERROR_GENERAL_FAILURE
72
74
}
73
75
74
- return handle
76
+ return C . int32_t ( handle )
75
77
}
76
78
77
79
//export wgGetSocketV4
78
- func wgGetSocketV4 (tunnelHandle int32 ) int32 {
80
+ func wgGetSocketV4 (tunnelHandle int32 ) C. int32_t {
79
81
tunnel , err := tunnels .Get (tunnelHandle )
80
82
if err != nil {
81
- return ERROR_GENERAL_FAILURE
83
+ return ERROR_UNKNOWN_TUNNEL
82
84
}
83
85
peek := tunnel .Device .Bind ().(conn.PeekLookAtSocketFd )
84
86
fd , err := peek .PeekLookAtSocketFd4 ()
85
87
if err != nil {
86
88
return ERROR_GENERAL_FAILURE
87
89
}
88
- return int32 (fd )
90
+ return C . int32_t (fd )
89
91
}
90
92
91
93
//export wgGetSocketV6
92
- func wgGetSocketV6 (tunnelHandle int32 ) int32 {
94
+ func wgGetSocketV6 (tunnelHandle int32 ) C. int32_t {
93
95
tunnel , err := tunnels .Get (tunnelHandle )
94
96
if err != nil {
95
- return ERROR_GENERAL_FAILURE
97
+ return ERROR_UNKNOWN_TUNNEL
96
98
}
97
99
peek := tunnel .Device .Bind ().(conn.PeekLookAtSocketFd )
98
100
fd , err := peek .PeekLookAtSocketFd6 ()
99
101
if err != nil {
100
102
return ERROR_GENERAL_FAILURE
101
103
}
102
- return int32 (fd )
104
+ return C . int32_t (fd )
103
105
}
0 commit comments