Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit e0e2891

Browse files
committed
Switch the import paths back to github.com/danderson.
1 parent dccb1b0 commit e0e2891

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

gather.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ import (
66
"errors"
77
"flag"
88
"fmt"
9-
"github.com/chripell/nat/stun"
109
"net"
10+
11+
"github.com/danderson/nat/stun"
1112
)
1213

1314
var stunserver = flag.String("stunserver", "stun.l.google.com:19302",

nat.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ import (
55
"encoding/json"
66
"errors"
77
"fmt"
8-
"github.com/chripell/nat/stun"
98
"net"
109
"time"
10+
11+
"github.com/danderson/nat/stun"
1112
)
1213

1314
type ExchangeCandidatesFun func([]byte) []byte

stun/stunclient/client.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ package main
55
import (
66
"flag"
77
"fmt"
8-
"github.com/chripell/nat/stun"
98
"net"
109
"os"
1110
"time"
11+
12+
"github.com/danderson/nat/stun"
1213
)
1314

1415
var sourcePort = flag.Int("srcport", 12345, "Source port to use for STUN request")

0 commit comments

Comments
 (0)