Skip to content

Commit 699d811

Browse files
chore(RDGRS-662): updating references (#22)
1 parent 4f202ca commit 699d811

25 files changed

+65
-65
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ BUILD=$(shell git rev-parse HEAD)
33
DIRBASE=./build
44
DIR=${DIRBASE}/${VERSION}/${BUILD}/bin
55

6-
LDFLAGS=-ldflags "-s -w ${XBUILD} -buildid=${BUILD} -X github.com/jpillora/chisel/share.BuildVersion=${VERSION}"
6+
LDFLAGS=-ldflags "-s -w ${XBUILD} -buildid=${BUILD} -X github.com/OutSystems/chisel/share.BuildVersion=${VERSION}"
77

88
GOFILES=`go list ./...`
99
GOFILESNOTEST=`go list ./... | grep -v test`

client/client.go

+6-6
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/OutSystems/chisel/share"
21+
"github.com/OutSystems/chisel/share/ccrypto"
22+
"github.com/OutSystems/chisel/share/cio"
23+
"github.com/OutSystems/chisel/share/cnet"
24+
"github.com/OutSystems/chisel/share/settings"
25+
"github.com/OutSystems/chisel/share/tunnel"
2626

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

client/client_connect.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import (
1010

1111
"github.com/gorilla/websocket"
1212
"github.com/jpillora/backoff"
13-
chshare "github.com/jpillora/chisel/share"
14-
"github.com/jpillora/chisel/share/cnet"
15-
"github.com/jpillora/chisel/share/cos"
16-
"github.com/jpillora/chisel/share/settings"
13+
chshare "github.com/OutSystems/chisel/share"
14+
"github.com/OutSystems/chisel/share/cnet"
15+
"github.com/OutSystems/chisel/share/cos"
16+
"github.com/OutSystems/chisel/share/settings"
1717
"golang.org/x/crypto/ssh"
1818
)
1919

client/client_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"testing"
1010
"time"
1111

12-
"github.com/jpillora/chisel/share/ccrypto"
12+
"github.com/OutSystems/chisel/share/ccrypto"
1313
"golang.org/x/crypto/ssh"
1414
)
1515

example/reverse-tunneling-authenticated.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ version: '3'
6363

6464
services:
6565
chisel:
66-
image: jpillora/chisel
66+
image: OutSystems/chisel
6767
restart: unless-stopped
6868
container_name: chisel
6969
# ⬇️ Pass CLI arguments one at a time in an array, as required by Docker compose.

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/jpillora/chisel
1+
module github.com/OutSystems/chisel
22

33
go 1.21
44

main.go

+8-8
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ 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/ccrypto"
19-
"github.com/jpillora/chisel/share/cos"
20-
"github.com/jpillora/chisel/share/settings"
15+
chclient "github.com/OutSystems/chisel/client"
16+
chserver "github.com/OutSystems/chisel/server"
17+
chshare "github.com/OutSystems/chisel/share"
18+
"github.com/OutSystems/chisel/share/ccrypto"
19+
"github.com/OutSystems/chisel/share/cos"
20+
"github.com/OutSystems/chisel/share/settings"
2121
)
2222

2323
var help = `
@@ -30,7 +30,7 @@ var help = `
3030
client - runs chisel in client mode
3131
3232
Read more:
33-
https://github.com/jpillora/chisel
33+
https://github.com/OustSystems/chisel
3434
3535
`
3636

@@ -83,7 +83,7 @@ var commonHelp = `
8383
` + chshare.BuildVersion + ` (` + runtime.Version() + `)
8484
8585
Read more:
86-
https://github.com/jpillora/chisel
86+
https://github.com/OutSystems/chisel
8787
8888
`
8989

server/server.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ import (
1212
"time"
1313

1414
"github.com/gorilla/websocket"
15-
chshare "github.com/jpillora/chisel/share"
16-
"github.com/jpillora/chisel/share/ccrypto"
17-
"github.com/jpillora/chisel/share/cio"
18-
"github.com/jpillora/chisel/share/cnet"
19-
"github.com/jpillora/chisel/share/settings"
15+
chshare "github.com/OutSystems/chisel/share"
16+
"github.com/OutSystems/chisel/share/ccrypto"
17+
"github.com/OutSystems/chisel/share/cio"
18+
"github.com/OutSystems/chisel/share/cnet"
19+
"github.com/OutSystems/chisel/share/settings"
2020
"github.com/jpillora/requestlog"
2121
"golang.org/x/crypto/ssh"
2222
)

server/server_handler.go

+4-4
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/OutSystems/chisel/share"
10+
"github.com/OutSystems/chisel/share/cnet"
11+
"github.com/OutSystems/chisel/share/settings"
12+
"github.com/OutSystems/chisel/share/tunnel"
1313
"golang.org/x/crypto/ssh"
1414
"golang.org/x/sync/errgroup"
1515
)

server/server_listen.go

+1-1
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/OutSystems/chisel/share/settings"
1414
"golang.org/x/crypto/acme/autocert"
1515
)
1616

share/cnet/meter.go

+1-1
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/OutSystems/chisel/share/cio"
1010
"github.com/jpillora/sizestr"
1111
)
1212

share/compat.go

+6-6
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/OutSystems/chisel/share/ccrypto"
7+
"github.com/OutSystems/chisel/share/cio"
8+
"github.com/OutSystems/chisel/share/cnet"
9+
"github.com/OutSystems/chisel/share/cos"
10+
"github.com/OutSystems/chisel/share/settings"
11+
"github.com/OutSystems/chisel/share/tunnel"
1212
)
1313

1414
const (

share/settings/users.go

+1-1
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/OutSystems/chisel/share/cio"
1313
)
1414

1515
type Users struct {

share/tunnel/tunnel.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"time"
1212

1313
"github.com/armon/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/OutSystems/chisel/share/cio"
15+
"github.com/OutSystems/chisel/share/cnet"
16+
"github.com/OutSystems/chisel/share/settings"
1717
"golang.org/x/crypto/ssh"
1818
"golang.org/x/sync/errgroup"
1919
)

share/tunnel/tunnel_in_proxy.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"net"
77
"sync"
88

9-
"github.com/jpillora/chisel/share/cio"
10-
"github.com/jpillora/chisel/share/settings"
9+
"github.com/OutSystems/chisel/share/cio"
10+
"github.com/OutSystems/chisel/share/settings"
1111
"github.com/jpillora/sizestr"
1212
"golang.org/x/crypto/ssh"
1313
)

share/tunnel/tunnel_in_proxy_udp.go

+2-2
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/OutSystems/chisel/share/cio"
15+
"github.com/OutSystems/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

+3-3
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/OutSystems/chisel/share/cio"
10+
"github.com/OutSystems/chisel/share/cnet"
11+
"github.com/OutSystems/chisel/share/settings"
1212
"github.com/jpillora/sizestr"
1313
"golang.org/x/crypto/ssh"
1414
)

share/tunnel/tunnel_out_ssh_udp.go

+2-2
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/OutSystems/chisel/share/cio"
12+
"github.com/OutSystems/chisel/share/settings"
1313
)
1414

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

test/bench/main.go

+1-1
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/OutSystems/chisel/share/cnet"
2929

3030
"time"
3131
)

test/e2e/auth_test.go

+2-2
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/OutSystems/chisel/client"
7+
chserver "github.com/OutSystems/chisel/server"
88
)
99

1010
//TODO tests for:

test/e2e/base_test.go

+2-2
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/OutSystems/chisel/client"
7+
chserver "github.com/OutSystems/chisel/server"
88
)
99

1010
func TestBase(t *testing.T) {

test/e2e/cert_utils_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ import (
1818
"path"
1919
"time"
2020

21-
chclient "github.com/jpillora/chisel/client"
22-
chserver "github.com/jpillora/chisel/server"
21+
chclient "github.com/OutSystems/chisel/client"
22+
chserver "github.com/OutSystems/chisel/server"
2323
)
2424

2525
type tlsConfig struct {

test/e2e/setup_test.go

+2-2
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/OutSystems/chisel/client"
14+
chserver "github.com/OutSystems/chisel/server"
1515
)
1616

1717
const debug = true

test/e2e/tls_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"path"
55
"testing"
66

7-
chclient "github.com/jpillora/chisel/client"
8-
chserver "github.com/jpillora/chisel/server"
7+
chclient "github.com/OutSystems/chisel/client"
8+
chserver "github.com/OutSystems/chisel/server"
99
)
1010

1111
func TestTLS(t *testing.T) {

test/e2e/udp_test.go

+2-2
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/OutSystems/chisel/client"
10+
chserver "github.com/OutSystems/chisel/server"
1111
"golang.org/x/sync/errgroup"
1212
)
1313

0 commit comments

Comments
 (0)