-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add TCP alternative to RakNet #76
Open
TwistedAsylumMC
wants to merge
8
commits into
master
Choose a base branch
from
feature/tcp
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
33e6446
portal: Add TCP alternative to RakNet
TwistedAsylumMC 3b91d72
tcpprotocol: Use a dialer and a listener similar to gophertunnel
TwistedAsylumMC 05d88fb
tcpprotocol: Missing files
TwistedAsylumMC 644fd41
tcpprotocol/conn.go: Kind of clean up
TwistedAsylumMC 8fa5e08
Merge branch 'master' into feature/tcp
TwistedAsylumMC f82af1f
portal: fix go.mod and go.sum
TwistedAsylumMC 6897dc5
Merge branch 'master' into feature/tcp
TwistedAsylumMC 48fdc80
tcpprotocol/conn.go: Fix expect errors
TwistedAsylumMC File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package session | ||
|
||
import ( | ||
"github.com/sandertv/gophertunnel/minecraft" | ||
"github.com/sandertv/gophertunnel/minecraft/protocol/packet" | ||
"io" | ||
"time" | ||
) | ||
|
||
// ServerConn represents a connection that can be used between the proxy and a server to communicate on behalf of a client. | ||
type ServerConn interface { | ||
io.Closer | ||
// GameData returns specific game data set to the connection for the player to be initialised with. This data is | ||
// obtained from the server during the login process. | ||
GameData() minecraft.GameData | ||
// DoSpawnTimeout starts the game for the client in the server with a timeout after which an error is returned if the | ||
// client has not yet spawned by that time. DoSpawnTimeout will start the spawning sequence using the game data found | ||
// in conn.GameData(), which was sent earlier by the server. | ||
DoSpawnTimeout(timeout time.Duration) error | ||
// ReadPacket reads a packet from the Conn, depending on the packet ID that is found in front of the packet data. If | ||
// a read deadline is set, an error is returned if the deadline is reached before any packet is received. ReadPacket | ||
// must not be called on multiple goroutines simultaneously. If the packet read was not implemented, a *packet.Unknown | ||
// is returned, containing the raw payload of the packet read. | ||
ReadPacket() (packet.Packet, error) | ||
// WritePacket encodes the packet passed and writes it to the Conn. The encoded data is buffered until the next 20th | ||
// of a second, after which the data is flushed and sent over the connection. | ||
WritePacket(packet.Packet) error | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.