Skip to content

Commit

Permalink
chore(RDGRS-662): updating references
Browse files Browse the repository at this point in the history
  • Loading branch information
OS-kiranmalsetty committed Aug 14, 2024
1 parent 4f202ca commit 10cbc27
Show file tree
Hide file tree
Showing 25 changed files with 65 additions and 65 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
12 changes: 6 additions & 6 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions client/client_connect.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion client/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"testing"
"time"

"github.com/jpillora/chisel/share/ccrypto"
"github.com/OutSystems/chisel/share/ccrypto"
"golang.org/x/crypto/ssh"
)

Expand Down
2 changes: 1 addition & 1 deletion example/reverse-tunneling-authenticated.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/jpillora/chisel
module github.com/OutSystems/chisel

go 1.21

Expand Down
16 changes: 8 additions & 8 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 = `
Expand All @@ -30,7 +30,7 @@ var help = `
client - runs chisel in client mode
Read more:
https://github.com/jpillora/chisel
https://github.com/OustSystems/chisel
`

Expand Down Expand Up @@ -83,7 +83,7 @@ var commonHelp = `
` + chshare.BuildVersion + ` (` + runtime.Version() + `)
Read more:
https://github.com/jpillora/chisel
https://github.com/OutSystems/chisel
`

Expand Down
10 changes: 5 additions & 5 deletions server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
8 changes: 4 additions & 4 deletions server/server_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion server/server_listen.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion share/cnet/meter.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sync/atomic"
"time"

"github.com/jpillora/chisel/share/cio"
"github.com/OutSystems/chisel/share/cio"
"github.com/jpillora/sizestr"
)

Expand Down
12 changes: 6 additions & 6 deletions share/compat.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
2 changes: 1 addition & 1 deletion share/settings/users.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
6 changes: 3 additions & 3 deletions share/tunnel/tunnel.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
4 changes: 2 additions & 2 deletions share/tunnel/tunnel_in_proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
4 changes: 2 additions & 2 deletions share/tunnel/tunnel_in_proxy_udp.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions share/tunnel/tunnel_out_ssh.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
4 changes: 2 additions & 2 deletions share/tunnel/tunnel_out_ssh_udp.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion test/bench/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"path"
"strconv"

"github.com/jpillora/chisel/share/cnet"
"github.com/OutSystems/chisel/share/cnet"

"time"
)
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/auth_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/base_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/cert_utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/setup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/tls_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/udp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down

0 comments on commit 10cbc27

Please sign in to comment.