aboutsummaryrefslogtreecommitdiff
path: root/azalea-client
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-04-30 17:55:18 -0500
committermat <github@matdoes.dev>2022-04-30 17:55:18 -0500
commitcc70d80932269ca3d044224481ab46082e0a8449 (patch)
treef527a5a29c2da91dc3dce06650b86f9970bae665 /azalea-client
parent7f9463320f75b4a754ef9f52da9a9fbb4f36fe56 (diff)
downloadazalea-drasl-cc70d80932269ca3d044224481ab46082e0a8449.tar.xz
gitignore flamegraph stuff
Diffstat (limited to 'azalea-client')
-rwxr-xr-xazalea-client/src/connect.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/azalea-client/src/connect.rs b/azalea-client/src/connect.rs
index b0d7dffc..7c1880fa 100755
--- a/azalea-client/src/connect.rs
+++ b/azalea-client/src/connect.rs
@@ -73,11 +73,10 @@ impl Client {
match packet_result {
Ok(packet) => match packet {
LoginPacket::ClientboundHelloPacket(p) => {
- println!("Got encryption request {:?} {:?}", p.nonce, p.public_key);
+ println!("Got encryption request");
let e = azalea_auth::encryption::encrypt(&p.public_key, &p.nonce).unwrap();
// TODO: authenticate with the server here (authenticateServer)
- println!("Sending encryption response {:?}", e);
conn.write(
ServerboundKeyPacket {