From 10cbc27c73b82d7e62868fd5dd83d09fa4ac618d Mon Sep 17 00:00:00 2001 From: "kiran(kim)" <93211513+OS-kiranmalsetty@users.noreply.github.com> Date: Wed, 14 Aug 2024 15:10:17 -0400 Subject: [PATCH] chore(RDGRS-662): updating references --- Makefile | 2 +- client/client.go | 12 ++++++------ client/client_connect.go | 8 ++++---- client/client_test.go | 2 +- example/reverse-tunneling-authenticated.md | 2 +- go.mod | 2 +- main.go | 16 ++++++++-------- server/server.go | 10 +++++----- server/server_handler.go | 8 ++++---- server/server_listen.go | 2 +- share/cnet/meter.go | 2 +- share/compat.go | 12 ++++++------ share/settings/users.go | 2 +- share/tunnel/tunnel.go | 6 +++--- share/tunnel/tunnel_in_proxy.go | 4 ++-- share/tunnel/tunnel_in_proxy_udp.go | 4 ++-- share/tunnel/tunnel_out_ssh.go | 6 +++--- share/tunnel/tunnel_out_ssh_udp.go | 4 ++-- test/bench/main.go | 2 +- test/e2e/auth_test.go | 4 ++-- test/e2e/base_test.go | 4 ++-- test/e2e/cert_utils_test.go | 4 ++-- test/e2e/setup_test.go | 4 ++-- test/e2e/tls_test.go | 4 ++-- test/e2e/udp_test.go | 4 ++-- 25 files changed, 65 insertions(+), 65 deletions(-) diff --git a/Makefile b/Makefile index 7e0c7596..2306abb0 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ BUILD=$(shell git rev-parse HEAD) DIRBASE=./build DIR=${DIRBASE}/${VERSION}/${BUILD}/bin -LDFLAGS=-ldflags "-s -w ${XBUILD} -buildid=${BUILD} -X github.com/jpillora/chisel/share.BuildVersion=${VERSION}" +LDFLAGS=-ldflags "-s -w ${XBUILD} -buildid=${BUILD} -X github.com/OutSystems/chisel/share.BuildVersion=${VERSION}" GOFILES=`go list ./...` GOFILESNOTEST=`go list ./... | grep -v test` diff --git a/client/client.go b/client/client.go index c96edde6..00f71362 100644 --- a/client/client.go +++ b/client/client.go @@ -17,12 +17,12 @@ import ( "time" "github.com/gorilla/websocket" - chshare "github.com/jpillora/chisel/share" - "github.com/jpillora/chisel/share/ccrypto" - "github.com/jpillora/chisel/share/cio" - "github.com/jpillora/chisel/share/cnet" - "github.com/jpillora/chisel/share/settings" - "github.com/jpillora/chisel/share/tunnel" + chshare "github.com/OutSystems/chisel/share" + "github.com/OutSystems/chisel/share/ccrypto" + "github.com/OutSystems/chisel/share/cio" + "github.com/OutSystems/chisel/share/cnet" + "github.com/OutSystems/chisel/share/settings" + "github.com/OutSystems/chisel/share/tunnel" "golang.org/x/crypto/ssh" "golang.org/x/net/proxy" diff --git a/client/client_connect.go b/client/client_connect.go index 884c7647..9251a3a4 100644 --- a/client/client_connect.go +++ b/client/client_connect.go @@ -10,10 +10,10 @@ import ( "github.com/gorilla/websocket" "github.com/jpillora/backoff" - chshare "github.com/jpillora/chisel/share" - "github.com/jpillora/chisel/share/cnet" - "github.com/jpillora/chisel/share/cos" - "github.com/jpillora/chisel/share/settings" + chshare "github.com/OutSystems/chisel/share" + "github.com/OutSystems/chisel/share/cnet" + "github.com/OutSystems/chisel/share/cos" + "github.com/OutSystems/chisel/share/settings" "golang.org/x/crypto/ssh" ) diff --git a/client/client_test.go b/client/client_test.go index f947171a..ca1e0e4b 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/jpillora/chisel/share/ccrypto" + "github.com/OutSystems/chisel/share/ccrypto" "golang.org/x/crypto/ssh" ) diff --git a/example/reverse-tunneling-authenticated.md b/example/reverse-tunneling-authenticated.md index 3cc0206a..f9948e92 100644 --- a/example/reverse-tunneling-authenticated.md +++ b/example/reverse-tunneling-authenticated.md @@ -63,7 +63,7 @@ version: '3' services: chisel: - image: jpillora/chisel + image: OutSystems/chisel restart: unless-stopped container_name: chisel # ⬇️ Pass CLI arguments one at a time in an array, as required by Docker compose. diff --git a/go.mod b/go.mod index ee560838..80d646fc 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/jpillora/chisel +module github.com/OutSystems/chisel go 1.21 diff --git a/main.go b/main.go index f78ee156..c40546dd 100644 --- a/main.go +++ b/main.go @@ -12,12 +12,12 @@ import ( "strings" "time" - chclient "github.com/jpillora/chisel/client" - chserver "github.com/jpillora/chisel/server" - chshare "github.com/jpillora/chisel/share" - "github.com/jpillora/chisel/share/ccrypto" - "github.com/jpillora/chisel/share/cos" - "github.com/jpillora/chisel/share/settings" + chclient "github.com/OutSystems/chisel/client" + chserver "github.com/OutSystems/chisel/server" + chshare "github.com/OutSystems/chisel/share" + "github.com/OutSystems/chisel/share/ccrypto" + "github.com/OutSystems/chisel/share/cos" + "github.com/OutSystems/chisel/share/settings" ) var help = ` @@ -30,7 +30,7 @@ var help = ` client - runs chisel in client mode Read more: - https://github.com/jpillora/chisel + https://github.com/OustSystems/chisel ` @@ -83,7 +83,7 @@ var commonHelp = ` ` + chshare.BuildVersion + ` (` + runtime.Version() + `) Read more: - https://github.com/jpillora/chisel + https://github.com/OutSystems/chisel ` diff --git a/server/server.go b/server/server.go index 8a702fce..8cadc52e 100644 --- a/server/server.go +++ b/server/server.go @@ -12,11 +12,11 @@ import ( "time" "github.com/gorilla/websocket" - chshare "github.com/jpillora/chisel/share" - "github.com/jpillora/chisel/share/ccrypto" - "github.com/jpillora/chisel/share/cio" - "github.com/jpillora/chisel/share/cnet" - "github.com/jpillora/chisel/share/settings" + chshare "github.com/OutSystems/chisel/share" + "github.com/OutSystems/chisel/share/ccrypto" + "github.com/OutSystems/chisel/share/cio" + "github.com/OutSystems/chisel/share/cnet" + "github.com/OutSystems/chisel/share/settings" "github.com/jpillora/requestlog" "golang.org/x/crypto/ssh" ) diff --git a/server/server_handler.go b/server/server_handler.go index 952aa4d8..866d0e38 100644 --- a/server/server_handler.go +++ b/server/server_handler.go @@ -6,10 +6,10 @@ import ( "sync/atomic" "time" - chshare "github.com/jpillora/chisel/share" - "github.com/jpillora/chisel/share/cnet" - "github.com/jpillora/chisel/share/settings" - "github.com/jpillora/chisel/share/tunnel" + chshare "github.com/OutSystems/chisel/share" + "github.com/OutSystems/chisel/share/cnet" + "github.com/OutSystems/chisel/share/settings" + "github.com/OutSystems/chisel/share/tunnel" "golang.org/x/crypto/ssh" "golang.org/x/sync/errgroup" ) diff --git a/server/server_listen.go b/server/server_listen.go index a7dcfe84..3871283d 100644 --- a/server/server_listen.go +++ b/server/server_listen.go @@ -10,7 +10,7 @@ import ( "os/user" "path/filepath" - "github.com/jpillora/chisel/share/settings" + "github.com/OutSystems/chisel/share/settings" "golang.org/x/crypto/acme/autocert" ) diff --git a/share/cnet/meter.go b/share/cnet/meter.go index 6a633e78..8ad96aa3 100644 --- a/share/cnet/meter.go +++ b/share/cnet/meter.go @@ -6,7 +6,7 @@ import ( "sync/atomic" "time" - "github.com/jpillora/chisel/share/cio" + "github.com/OutSystems/chisel/share/cio" "github.com/jpillora/sizestr" ) diff --git a/share/compat.go b/share/compat.go index 01f57502..54b37dfc 100644 --- a/share/compat.go +++ b/share/compat.go @@ -3,12 +3,12 @@ package chshare //this file exists to maintain backwards compatibility import ( - "github.com/jpillora/chisel/share/ccrypto" - "github.com/jpillora/chisel/share/cio" - "github.com/jpillora/chisel/share/cnet" - "github.com/jpillora/chisel/share/cos" - "github.com/jpillora/chisel/share/settings" - "github.com/jpillora/chisel/share/tunnel" + "github.com/OutSystems/chisel/share/ccrypto" + "github.com/OutSystems/chisel/share/cio" + "github.com/OutSystems/chisel/share/cnet" + "github.com/OutSystems/chisel/share/cos" + "github.com/OutSystems/chisel/share/settings" + "github.com/OutSystems/chisel/share/tunnel" ) const ( diff --git a/share/settings/users.go b/share/settings/users.go index ea57f280..02ca3389 100644 --- a/share/settings/users.go +++ b/share/settings/users.go @@ -9,7 +9,7 @@ import ( "sync" "github.com/fsnotify/fsnotify" - "github.com/jpillora/chisel/share/cio" + "github.com/OutSystems/chisel/share/cio" ) type Users struct { diff --git a/share/tunnel/tunnel.go b/share/tunnel/tunnel.go index 1d80bd5b..e08a5f08 100644 --- a/share/tunnel/tunnel.go +++ b/share/tunnel/tunnel.go @@ -11,9 +11,9 @@ import ( "time" "github.com/armon/go-socks5" - "github.com/jpillora/chisel/share/cio" - "github.com/jpillora/chisel/share/cnet" - "github.com/jpillora/chisel/share/settings" + "github.com/OutSystems/chisel/share/cio" + "github.com/OutSystems/chisel/share/cnet" + "github.com/OutSystems/chisel/share/settings" "golang.org/x/crypto/ssh" "golang.org/x/sync/errgroup" ) diff --git a/share/tunnel/tunnel_in_proxy.go b/share/tunnel/tunnel_in_proxy.go index 007fb0c7..391923c1 100644 --- a/share/tunnel/tunnel_in_proxy.go +++ b/share/tunnel/tunnel_in_proxy.go @@ -6,8 +6,8 @@ import ( "net" "sync" - "github.com/jpillora/chisel/share/cio" - "github.com/jpillora/chisel/share/settings" + "github.com/OutSystems/chisel/share/cio" + "github.com/OutSystems/chisel/share/settings" "github.com/jpillora/sizestr" "golang.org/x/crypto/ssh" ) diff --git a/share/tunnel/tunnel_in_proxy_udp.go b/share/tunnel/tunnel_in_proxy_udp.go index 3f3fa8be..dc356791 100644 --- a/share/tunnel/tunnel_in_proxy_udp.go +++ b/share/tunnel/tunnel_in_proxy_udp.go @@ -11,8 +11,8 @@ import ( "sync/atomic" "time" - "github.com/jpillora/chisel/share/cio" - "github.com/jpillora/chisel/share/settings" + "github.com/OutSystems/chisel/share/cio" + "github.com/OutSystems/chisel/share/settings" "github.com/jpillora/sizestr" "golang.org/x/crypto/ssh" "golang.org/x/sync/errgroup" diff --git a/share/tunnel/tunnel_out_ssh.go b/share/tunnel/tunnel_out_ssh.go index b07b98ed..99c73df7 100644 --- a/share/tunnel/tunnel_out_ssh.go +++ b/share/tunnel/tunnel_out_ssh.go @@ -6,9 +6,9 @@ import ( "net" "strings" - "github.com/jpillora/chisel/share/cio" - "github.com/jpillora/chisel/share/cnet" - "github.com/jpillora/chisel/share/settings" + "github.com/OutSystems/chisel/share/cio" + "github.com/OutSystems/chisel/share/cnet" + "github.com/OutSystems/chisel/share/settings" "github.com/jpillora/sizestr" "golang.org/x/crypto/ssh" ) diff --git a/share/tunnel/tunnel_out_ssh_udp.go b/share/tunnel/tunnel_out_ssh_udp.go index d3c4c62f..686486d4 100644 --- a/share/tunnel/tunnel_out_ssh_udp.go +++ b/share/tunnel/tunnel_out_ssh_udp.go @@ -8,8 +8,8 @@ import ( "sync" "time" - "github.com/jpillora/chisel/share/cio" - "github.com/jpillora/chisel/share/settings" + "github.com/OutSystems/chisel/share/cio" + "github.com/OutSystems/chisel/share/settings" ) func (t *Tunnel) handleUDP(l *cio.Logger, rwc io.ReadWriteCloser, hostPort string) error { diff --git a/test/bench/main.go b/test/bench/main.go index 091f2d5d..6a8bd83a 100644 --- a/test/bench/main.go +++ b/test/bench/main.go @@ -25,7 +25,7 @@ import ( "path" "strconv" - "github.com/jpillora/chisel/share/cnet" + "github.com/OutSystems/chisel/share/cnet" "time" ) diff --git a/test/e2e/auth_test.go b/test/e2e/auth_test.go index cd758c5d..971e1413 100644 --- a/test/e2e/auth_test.go +++ b/test/e2e/auth_test.go @@ -3,8 +3,8 @@ package e2e_test import ( "testing" - chclient "github.com/jpillora/chisel/client" - chserver "github.com/jpillora/chisel/server" + chclient "github.com/OutSystems/chisel/client" + chserver "github.com/OutSystems/chisel/server" ) //TODO tests for: diff --git a/test/e2e/base_test.go b/test/e2e/base_test.go index bb344cbf..63de9096 100644 --- a/test/e2e/base_test.go +++ b/test/e2e/base_test.go @@ -3,8 +3,8 @@ package e2e_test import ( "testing" - chclient "github.com/jpillora/chisel/client" - chserver "github.com/jpillora/chisel/server" + chclient "github.com/OutSystems/chisel/client" + chserver "github.com/OutSystems/chisel/server" ) func TestBase(t *testing.T) { diff --git a/test/e2e/cert_utils_test.go b/test/e2e/cert_utils_test.go index 379e282b..611fcd3a 100644 --- a/test/e2e/cert_utils_test.go +++ b/test/e2e/cert_utils_test.go @@ -18,8 +18,8 @@ import ( "path" "time" - chclient "github.com/jpillora/chisel/client" - chserver "github.com/jpillora/chisel/server" + chclient "github.com/OutSystems/chisel/client" + chserver "github.com/OutSystems/chisel/server" ) type tlsConfig struct { diff --git a/test/e2e/setup_test.go b/test/e2e/setup_test.go index c6228757..fbe086e6 100644 --- a/test/e2e/setup_test.go +++ b/test/e2e/setup_test.go @@ -10,8 +10,8 @@ import ( "testing" "time" - chclient "github.com/jpillora/chisel/client" - chserver "github.com/jpillora/chisel/server" + chclient "github.com/OutSystems/chisel/client" + chserver "github.com/OutSystems/chisel/server" ) const debug = true diff --git a/test/e2e/tls_test.go b/test/e2e/tls_test.go index 304fd937..4e3a4218 100644 --- a/test/e2e/tls_test.go +++ b/test/e2e/tls_test.go @@ -4,8 +4,8 @@ import ( "path" "testing" - chclient "github.com/jpillora/chisel/client" - chserver "github.com/jpillora/chisel/server" + chclient "github.com/OutSystems/chisel/client" + chserver "github.com/OutSystems/chisel/server" ) func TestTLS(t *testing.T) { diff --git a/test/e2e/udp_test.go b/test/e2e/udp_test.go index 2a9a2055..41cfa73c 100644 --- a/test/e2e/udp_test.go +++ b/test/e2e/udp_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - chclient "github.com/jpillora/chisel/client" - chserver "github.com/jpillora/chisel/server" + chclient "github.com/OutSystems/chisel/client" + chserver "github.com/OutSystems/chisel/server" "golang.org/x/sync/errgroup" )