aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/examples
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/examples')
-rw-r--r--azalea-protocol/examples/handshake_proxy.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/azalea-protocol/examples/handshake_proxy.rs b/azalea-protocol/examples/handshake_proxy.rs
index a7ac67c7..442db386 100644
--- a/azalea-protocol/examples/handshake_proxy.rs
+++ b/azalea-protocol/examples/handshake_proxy.rs
@@ -16,7 +16,7 @@ use azalea_protocol::{
},
ServerboundStatusPacket,
},
- ConnectionProtocol, PROTOCOL_VERSION,
+ ClientIntention, PROTOCOL_VERSION,
},
read::ReadPacketError,
};
@@ -95,7 +95,7 @@ async fn handle_connection(stream: TcpStream) -> anyhow::Result<()> {
match intent.intention {
// If the client is pinging the proxy,
// reply with the information below.
- ConnectionProtocol::Status => {
+ ClientIntention::Status => {
let mut conn = conn.status();
loop {
match conn.read().await {
@@ -135,7 +135,7 @@ async fn handle_connection(stream: TcpStream) -> anyhow::Result<()> {
// wait for them to send the `Hello` packet to
// log their username and uuid, then forward the
// connection along to the proxy target.
- ConnectionProtocol::Login => {
+ ClientIntention::Login => {
let mut conn = conn.login();
loop {
match conn.read().await {
@@ -169,8 +169,8 @@ async fn handle_connection(stream: TcpStream) -> anyhow::Result<()> {
}
}
}
- _ => {
- warn!("Client provided weird intent: {:?}", intent.intention);
+ ClientIntention::Transfer => {
+ warn!("Client attempted to join via transfer")
}
}