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

Lines changed: 1 addition & 1 deletion
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

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/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

Lines changed: 4 additions & 4 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 8 additions & 8 deletions
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

Lines changed: 5 additions & 5 deletions
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

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/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

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

0 commit comments

Comments
 (0)