Skip to content

Commit f8b0e71

Browse files
committed
Rename
1 parent 4bb580c commit f8b0e71

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

Makefile

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
.PHONY: prep
22

3-
OUT=bin/proxy
3+
OUT=bin/phantom.exe bin/phantom-linux bin/phantom-macos
44

5-
build: ${OUT}
5+
build: prep ${OUT}
66

7-
bin/proxy: prep
8-
GOOS=darwin GOARCH=amd64 go build -o bin/proxy-macos64 cmd/proxy.go
9-
GOOS=linux GOARCH=amd64 go build -o bin/proxy-linux cmd/proxy.go
10-
GOOS=windows GOARCH=amd64 go build -o bin/proxy.exe cmd/proxy.go
7+
bin/phantom.exe:
8+
GOOS=windows GOARCH=amd64 go build -o bin/phantom.exe cmd/proxy.go
9+
10+
bin/phantom-macos:
11+
GOOS=darwin GOARCH=amd64 go build -o bin/phantom-macos cmd/proxy.go
12+
13+
bin/phantom-linux:
14+
GOOS=linux GOARCH=amd64 go build -o bin/phantom-linux cmd/proxy.go
1115

1216
prep:
1317
mkdir -p bin

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# bedrock-proxy
1+
# phantom
22

3-
Makes hosted Bedrock/MCPE servers show up as LAN servers, specifically for Xbox and mobile.
3+
Makes hosted Bedrock/MCPE servers show up as LAN servers, specifically for Xbox.
44

55
You can now play on remote servers (not Realms!) on your Xbox with friends.
66

@@ -54,4 +54,3 @@ computer, a VM, or even with a Minecraft hosting service.
5454
Note that you almost definitely need to create a firewall rule for this to work
5555
On macOS, you'll be prompted automatically. On Windows, you may need to go into
5656
your Windows Firewall settings and open up port 19132 (UDP).
57-

cmd/proxy.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"os"
77

8-
"github.com/jhead/bedrock-proxy/internal/proxy"
8+
"github.com/jhead/phantom/internal/proxy"
99
)
1010

1111
var bindAddressString string

internal/proxy/proxy.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"os"
88
"time"
99

10-
"github.com/jhead/bedrock-proxy/internal/proto"
10+
"github.com/jhead/phantom/internal/proto"
1111
)
1212

1313
const maxMTU = 1472

0 commit comments

Comments
 (0)