File tree Expand file tree Collapse file tree 3 files changed +41
-1
lines changed Expand file tree Collapse file tree 3 files changed +41
-1
lines changed Original file line number Diff line number Diff line change 9
9
cmd /stun-cli /stun-cli
10
10
cmd /stun-decode /stun-decode
11
11
cmd /stun-bench /stun-bench
12
+ cmd /stun-nat-behaviour /stun-nat-behaviour
12
13
13
14
coverage.txt
14
15
Original file line number Diff line number Diff line change
1
+ before :
2
+ hooks :
3
+ - go mod tidy
4
+
5
+ archives :
6
+ - replacements :
7
+ darwin : Darwin
8
+ linux : Linux
9
+ windows : Windows
10
+ 386 : i386
11
+ amd64 : x86_64
12
+
13
+ checksum :
14
+ name_template : ' checksums.txt'
15
+
16
+ snapshot :
17
+ name_template : " {{ .Tag }}-next"
18
+
19
+ changelog :
20
+ sort : asc
21
+ filters :
22
+ exclude :
23
+ - ' ^docs:'
24
+ - ' ^test:'
25
+
26
+ builds :
27
+ - binary : stun-not-behavior
28
+ id : stun-not-behavior
29
+ goos :
30
+ - darwin
31
+ - windows
32
+ - linux
33
+ - freebsd
34
+ goarch :
35
+ - amd64
36
+ - 386
37
+ env :
38
+ - CGO_ENABLED=0
39
+ main : ./cmd/stun-nat-behavior
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ func (c *StunServerConn) Close() {
23
23
}
24
24
25
25
var (
26
- addrStrPtr = flag .String ("server" , "stun.l.google .com:19302 " , "STUN server address" )
26
+ addrStrPtr = flag .String ("server" , "stun.voip.blackberry .com:3478 " , "STUN server address" )
27
27
ErrTimedOut = errors .New ("timed out waiting for response" )
28
28
)
29
29
You can’t perform that action at this time.
0 commit comments