Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellacosse committed Apr 8, 2024
1 parent 7901d73 commit 04696dd
Show file tree
Hide file tree
Showing 28 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Makefile → client/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ IMPORT_PATH=$(IMPORT_HOST)/Jigsaw-Code/outline-apps

all: android apple linux windows

ROOT_PKG=client/src/tun2socks
ROOT_PKG=client/src/backend

android: $(BUILDDIR)/android/tun2socks.aar

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export async function main(...parameters) {
'build',
'-o',
`output/build/${targetPlatform}/tun2socks${targetPlatform === 'windows' ? '.exe' : ''}`,
'github.com/Jigsaw-Code/outline-apps/client/src/tun2socks/outline/electron'
'github.com/Jigsaw-Code/outline-apps/client/src/backend/outline/electron'
);
}

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import (
"net/http"
"time"

"github.com/Jigsaw-Code/outline-apps/client/src/tun2socks/outline"
"github.com/Jigsaw-Code/outline-apps/client/src/tun2socks/outline/neterrors"
"github.com/Jigsaw-Code/outline-apps/client/src/backend/outline"
"github.com/Jigsaw-Code/outline-apps/client/src/backend/outline/neterrors"
"github.com/Jigsaw-Code/outline-sdk/transport"
)

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ import (
"syscall"
"time"

"github.com/Jigsaw-Code/outline-apps/client/src/tun2socks/outline/internal/utf8"
"github.com/Jigsaw-Code/outline-apps/client/src/tun2socks/outline/neterrors"
"github.com/Jigsaw-Code/outline-apps/client/src/tun2socks/outline/shadowsocks"
"github.com/Jigsaw-Code/outline-apps/client/src/tun2socks/outline/tun2socks"
"github.com/Jigsaw-Code/outline-apps/client/src/backend/outline/internal/utf8"
"github.com/Jigsaw-Code/outline-apps/client/src/backend/outline/neterrors"
"github.com/Jigsaw-Code/outline-apps/client/src/backend/outline/shadowsocks"
"github.com/Jigsaw-Code/outline-apps/client/src/backend/outline/tun2socks"
"github.com/eycorsican/go-tun2socks/common/log"
_ "github.com/eycorsican/go-tun2socks/common/log/simple" // Register a simple logger.
"github.com/eycorsican/go-tun2socks/core"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ import (
"strconv"
"time"

"github.com/Jigsaw-Code/outline-apps/client/src/tun2socks/outline"
"github.com/Jigsaw-Code/outline-apps/client/src/tun2socks/outline/connectivity"
"github.com/Jigsaw-Code/outline-apps/client/src/tun2socks/outline/internal/utf8"
"github.com/Jigsaw-Code/outline-apps/client/src/backend/outline"
"github.com/Jigsaw-Code/outline-apps/client/src/backend/outline/connectivity"
"github.com/Jigsaw-Code/outline-apps/client/src/backend/outline/internal/utf8"
"github.com/Jigsaw-Code/outline-sdk/transport"
"github.com/Jigsaw-Code/outline-sdk/transport/shadowsocks"
"github.com/eycorsican/go-tun2socks/common/log"
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import (

"github.com/Jigsaw-Code/outline-sdk/transport"

"github.com/Jigsaw-Code/outline-apps/client/src/tun2socks/outline/connectivity"
"github.com/Jigsaw-Code/outline-apps/client/src/tun2socks/tunnel"
"github.com/Jigsaw-Code/outline-apps/client/src/backend/outline/connectivity"
"github.com/Jigsaw-Code/outline-apps/client/src/backend/tunnel"
)

// Tunnel represents a tunnel from a TUN device to a server.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"runtime/debug"
"time"

"github.com/Jigsaw-Code/outline-apps/client/src/tun2socks/outline/shadowsocks"
"github.com/Jigsaw-Code/outline-apps/client/src/backend/outline/shadowsocks"
)

// TunWriter is an interface that allows for outputting packets to the TUN (VPN).
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 04696dd

Please sign in to comment.