Skip to content

Commit ca90a00

Browse files
committed
Redirect to this fork
1 parent 73bad4b commit ca90a00

23 files changed

+56
-110
lines changed

client/client.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ import (
1717
"time"
1818

1919
"github.com/gorilla/websocket"
20-
chshare "github.com/jpillora/chisel/share"
21-
"github.com/jpillora/chisel/share/ccrypto"
22-
"github.com/jpillora/chisel/share/cio"
23-
"github.com/jpillora/chisel/share/cnet"
24-
"github.com/jpillora/chisel/share/settings"
25-
"github.com/jpillora/chisel/share/tunnel"
20+
chshare "github.com/JackieKu/chisel/share"
21+
"github.com/JackieKu/chisel/share/ccrypto"
22+
"github.com/JackieKu/chisel/share/cio"
23+
"github.com/JackieKu/chisel/share/cnet"
24+
"github.com/JackieKu/chisel/share/settings"
25+
"github.com/JackieKu/chisel/share/tunnel"
2626

2727
"golang.org/x/crypto/ssh"
2828
"golang.org/x/net/proxy"

client/client_connect.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ import (
1111

1212
"github.com/gorilla/websocket"
1313
"github.com/jpillora/backoff"
14-
chshare "github.com/jpillora/chisel/share"
15-
"github.com/jpillora/chisel/share/cnet"
16-
"github.com/jpillora/chisel/share/cos"
17-
"github.com/jpillora/chisel/share/settings"
14+
chshare "github.com/JackieKu/chisel/share"
15+
"github.com/JackieKu/chisel/share/cnet"
16+
"github.com/JackieKu/chisel/share/cos"
17+
"github.com/JackieKu/chisel/share/settings"
1818
"golang.org/x/crypto/ssh"
1919
)
2020

client/client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"testing"
1111
"time"
1212

13-
"github.com/jpillora/chisel/share/ccrypto"
13+
"github.com/JackieKu/chisel/share/ccrypto"
1414
"golang.org/x/crypto/ssh"
1515
)
1616

go.mod

Lines changed: 0 additions & 19 deletions
This file was deleted.

go.sum

Lines changed: 0 additions & 35 deletions
This file was deleted.

main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import (
1212
"strings"
1313
"time"
1414

15-
chclient "github.com/jpillora/chisel/client"
16-
chserver "github.com/jpillora/chisel/server"
17-
chshare "github.com/jpillora/chisel/share"
18-
"github.com/jpillora/chisel/share/cos"
15+
chclient "github.com/JackieKu/chisel/client"
16+
chserver "github.com/JackieKu/chisel/server"
17+
chshare "github.com/JackieKu/chisel/share"
18+
"github.com/JackieKu/chisel/share/cos"
1919
)
2020

2121
var help = `

server/server.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ import (
1111
"time"
1212

1313
"github.com/gorilla/websocket"
14-
chshare "github.com/jpillora/chisel/share"
15-
"github.com/jpillora/chisel/share/ccrypto"
16-
"github.com/jpillora/chisel/share/cio"
17-
"github.com/jpillora/chisel/share/cnet"
18-
"github.com/jpillora/chisel/share/settings"
14+
chshare "github.com/JackieKu/chisel/share"
15+
"github.com/JackieKu/chisel/share/ccrypto"
16+
"github.com/JackieKu/chisel/share/cio"
17+
"github.com/JackieKu/chisel/share/cnet"
18+
"github.com/JackieKu/chisel/share/settings"
1919
"github.com/jpillora/requestlog"
2020
"golang.org/x/crypto/ssh"
2121
)

server/server_handler.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import (
66
"sync/atomic"
77
"time"
88

9-
chshare "github.com/jpillora/chisel/share"
10-
"github.com/jpillora/chisel/share/cnet"
11-
"github.com/jpillora/chisel/share/settings"
12-
"github.com/jpillora/chisel/share/tunnel"
9+
chshare "github.com/JackieKu/chisel/share"
10+
"github.com/JackieKu/chisel/share/cnet"
11+
"github.com/JackieKu/chisel/share/settings"
12+
"github.com/JackieKu/chisel/share/tunnel"
1313
"golang.org/x/crypto/ssh"
1414
"golang.org/x/sync/errgroup"
1515
)

server/server_listen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"os/user"
1111
"path/filepath"
1212

13-
"github.com/jpillora/chisel/share/settings"
13+
"github.com/JackieKu/chisel/share/settings"
1414
"golang.org/x/crypto/acme/autocert"
1515
)
1616

share/cnet/meter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"sync/atomic"
77
"time"
88

9-
"github.com/jpillora/chisel/share/cio"
9+
"github.com/JackieKu/chisel/share/cio"
1010
"github.com/jpillora/sizestr"
1111
)
1212

share/compat.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ package chshare
33
//this file exists to maintain backwards compatibility
44

55
import (
6-
"github.com/jpillora/chisel/share/ccrypto"
7-
"github.com/jpillora/chisel/share/cio"
8-
"github.com/jpillora/chisel/share/cnet"
9-
"github.com/jpillora/chisel/share/cos"
10-
"github.com/jpillora/chisel/share/settings"
11-
"github.com/jpillora/chisel/share/tunnel"
6+
"github.com/JackieKu/chisel/share/ccrypto"
7+
"github.com/JackieKu/chisel/share/cio"
8+
"github.com/JackieKu/chisel/share/cnet"
9+
"github.com/JackieKu/chisel/share/cos"
10+
"github.com/JackieKu/chisel/share/settings"
11+
"github.com/JackieKu/chisel/share/tunnel"
1212
)
1313

1414
const (

share/settings/users.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"sync"
1010

1111
"github.com/fsnotify/fsnotify"
12-
"github.com/jpillora/chisel/share/cio"
12+
"github.com/JackieKu/chisel/share/cio"
1313
)
1414

1515
type Users struct {

share/tunnel/tunnel.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"time"
1212

1313
"github.com/JackieKu/go-socks5"
14-
"github.com/jpillora/chisel/share/cio"
15-
"github.com/jpillora/chisel/share/cnet"
16-
"github.com/jpillora/chisel/share/settings"
14+
"github.com/JackieKu/chisel/share/cio"
15+
"github.com/JackieKu/chisel/share/cnet"
16+
"github.com/JackieKu/chisel/share/settings"
1717
"golang.org/x/crypto/ssh"
1818
"golang.org/x/sync/errgroup"
1919
)

share/tunnel/tunnel_in_proxy.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"io"
66
"net"
77

8-
"github.com/jpillora/chisel/share/cio"
9-
"github.com/jpillora/chisel/share/settings"
8+
"github.com/JackieKu/chisel/share/cio"
9+
"github.com/JackieKu/chisel/share/settings"
1010
"github.com/jpillora/sizestr"
1111
"golang.org/x/crypto/ssh"
1212
)

share/tunnel/tunnel_in_proxy_udp.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
"sync/atomic"
1212
"time"
1313

14-
"github.com/jpillora/chisel/share/cio"
15-
"github.com/jpillora/chisel/share/settings"
14+
"github.com/JackieKu/chisel/share/cio"
15+
"github.com/JackieKu/chisel/share/settings"
1616
"github.com/jpillora/sizestr"
1717
"golang.org/x/crypto/ssh"
1818
"golang.org/x/sync/errgroup"

share/tunnel/tunnel_out_ssh.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"net"
77
"strings"
88

9-
"github.com/jpillora/chisel/share/cio"
10-
"github.com/jpillora/chisel/share/cnet"
11-
"github.com/jpillora/chisel/share/settings"
9+
"github.com/JackieKu/chisel/share/cio"
10+
"github.com/JackieKu/chisel/share/cnet"
11+
"github.com/JackieKu/chisel/share/settings"
1212
"github.com/jpillora/sizestr"
1313
"golang.org/x/crypto/ssh"
1414
)

share/tunnel/tunnel_out_ssh_udp.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"sync"
99
"time"
1010

11-
"github.com/jpillora/chisel/share/cio"
12-
"github.com/jpillora/chisel/share/settings"
11+
"github.com/JackieKu/chisel/share/cio"
12+
"github.com/JackieKu/chisel/share/settings"
1313
)
1414

1515
func (t *Tunnel) handleUDP(l *cio.Logger, rwc io.ReadWriteCloser, hostPort string) error {

test/bench/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"path"
2626
"strconv"
2727

28-
"github.com/jpillora/chisel/share/cnet"
28+
"github.com/JackieKu/chisel/share/cnet"
2929

3030
"time"
3131
)

test/e2e/auth_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package e2e_test
33
import (
44
"testing"
55

6-
chclient "github.com/jpillora/chisel/client"
7-
chserver "github.com/jpillora/chisel/server"
6+
chclient "github.com/JackieKu/chisel/client"
7+
chserver "github.com/JackieKu/chisel/server"
88
)
99

1010
//TODO tests for:

test/e2e/base_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package e2e_test
33
import (
44
"testing"
55

6-
chclient "github.com/jpillora/chisel/client"
7-
chserver "github.com/jpillora/chisel/server"
6+
chclient "github.com/JackieKu/chisel/client"
7+
chserver "github.com/JackieKu/chisel/server"
88
)
99

1010
func TestBase(t *testing.T) {

test/e2e/setup_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"testing"
1111
"time"
1212

13-
chclient "github.com/jpillora/chisel/client"
14-
chserver "github.com/jpillora/chisel/server"
13+
chclient "github.com/JackieKu/chisel/client"
14+
chserver "github.com/JackieKu/chisel/server"
1515
)
1616

1717
const debug = true

test/e2e/tls_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package e2e_test
33
import (
44
"testing"
55

6-
chclient "github.com/jpillora/chisel/client"
7-
chserver "github.com/jpillora/chisel/server"
6+
chclient "github.com/JackieKu/chisel/client"
7+
chserver "github.com/JackieKu/chisel/server"
88
)
99

1010
func TestTLS(t *testing.T) {

test/e2e/udp_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"testing"
77
"time"
88

9-
chclient "github.com/jpillora/chisel/client"
10-
chserver "github.com/jpillora/chisel/server"
9+
chclient "github.com/JackieKu/chisel/client"
10+
chserver "github.com/JackieKu/chisel/server"
1111
"golang.org/x/sync/errgroup"
1212
)
1313

0 commit comments

Comments
 (0)