2021-10-01 21:16:20 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-01 21:20:23 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 246 seconds) 2021-10-01 21:29:43 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 252 seconds) 2021-10-01 21:46:58 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-01 21:55:10 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 252 seconds) 2021-10-01 21:56:16 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-01 22:00:31 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 252 seconds) 2021-10-01 22:22:31 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-01 23:17:40 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 252 seconds) 2021-10-01 23:30:51 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-01 23:34:21 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 256 seconds) 2021-10-02 04:03:21 --> arrowz (~arrowz@c-24-7-48-61.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-10-02 04:07:46 arrowz Hi all, I'm trying to create a client for the Minecraft protocol and I've come across an issue. When I receive and decode an encrypted packet, the internal state of the CFB8 cipher changes; same when I encrypt a packet and send it up. I've come across the problem that after encrypting a packet, my cipher can't decrypt the next packet that comes 2021-10-02 04:07:46 arrowz from the server. Presumably this is because the server had sent a packet before it received my encrypted packet, meaning it didn't update its CFB8 state before sending that next packet down, and therefore the two states are out of sync and corruption results. How does the Minecraft client deal with this? (Sorry if this is a dumb question, I'm a 2021-10-02 04:07:47 arrowz total novice in socket programming) 2021-10-02 04:23:58 pokechu22 I'm pretty sure there are separate encryption streams for inbound and outbound packets, so the state for the one you use to encrypt is unrelated to the one you use to decrypt 2021-10-02 04:24:35 arrowz That's actually what I tried first but it wasn't working, there was probably a bug elsewhere 2021-10-02 04:25:10 arrowz The one thing I'm not sure about is how feather-rs seems to get away with it: https://github.com/feather-rs/feather/blob/master/feather/protocol/src/codec.rs#L45 2021-10-02 04:25:46 arrowz They reuse the same instance for both encryption and decryption 2021-10-02 04:27:04 pokechu22 Huh, and https://docs.rs/cfb8/0.7.1/src/cfb8/lib.rs.html#61-64 seems to indicate that that does use the same internal state. Not sure how that works then... 2021-10-02 04:27:13 pokechu22 I haven't messed with encryption much myself 2021-10-02 04:27:39 SpaceManiac arrowz: maybe they have two instances of MinecraftCodec per connection 2021-10-02 04:28:01 SpaceManiac dunno, it kind of reads like a two-way thing... 2021-10-02 04:28:57 arrowz Doesn't seem like it from their proxy tool: https://github.com/feather-rs/feather/blob/main/tools/proxy/src/main.rs#L108 2021-10-02 04:29:10 arrowz That struct contains just one instance of MinecraftCodec 2021-10-02 04:38:41 arrowz well I got something working, it's now able to connect to servers in online-mode :) Problem is I still can't send any packets, only receive...probably a bug but I'm not sure where. Would anyone be willing to help audit my code if I published it? I've spent a couple of days debugging already, otherwise I wouldn't be asking 2021-10-02 05:06:59 pokechu22 I don't think I'll have time to look over it myself right now, but still feel free to share 2021-10-02 05:20:50 arrowz actually I found the issue after much difficulty 2021-10-02 05:21:02 arrowz my packet encoding was actually correct on the first try 2021-10-02 05:21:21 arrowz instead i had the bright idea to accidentally shut down my tcp connection after sending every packet 2021-10-02 05:21:41 arrowz so i feel a bit stupid atm 2021-10-02 05:22:11 arrowz everything works now, im going to publish anyway tho. thanks for the help 2021-10-02 08:24:12 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-02 10:32:15 <-- arrowz (~arrowz@c-24-7-48-61.hsd1.ca.comcast.net) a quitté (Ping timeout: 256 seconds) 2021-10-02 12:30:30 <-- ckie (~ckie@user/cookie) a quitté (Quit: off I go~) 2021-10-02 12:41:18 --> ckie (~ckie@user/cookie) a rejoint #mcdevs 2021-10-02 16:50:01 --> mindstorm38 (~mindstorm@2a01:cb15:82d7:f600:8c2:b4ca:16be:fe21) a rejoint #mcdevs 2021-10-02 17:16:24 --> costledger_ (~cost@103.134.42.226) a rejoint #mcdevs 2021-10-02 17:18:16 <-- costledger_ (~cost@103.134.42.226) a quitté #mcdevs 2021-10-02 17:25:24 <-- mindstorm38 (~mindstorm@2a01:cb15:82d7:f600:8c2:b4ca:16be:fe21) a quitté (Quit: Leaving) 2021-10-02 20:36:16 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 252 seconds) 2021-10-02 21:04:44 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-02 21:10:55 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-02 21:12:01 <-- wizards_ (~guest@user/wizards) a quitté (Ping timeout: 252 seconds) 2021-10-02 21:13:49 --> wizards_ (~guest@user/wizards) a rejoint #mcdevs 2021-10-02 23:30:24 --> ZacSharp11 (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-02 23:34:16 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 256 seconds) 2021-10-03 00:04:10 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 252 seconds) 2021-10-03 00:43:23 <-- Disconsented (~quassel@107.170.227.20) a quitté (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2021-10-03 00:43:46 --> Disconsented (~quassel@107.170.227.20) a rejoint #mcdevs 2021-10-03 00:58:35 <-- Techcable (~Techcable@168.235.93.147) a quitté (Quit: ZNC - https://znc.in) 2021-10-03 00:59:09 --> Techcable (~Techcable@168.235.93.147) a rejoint #mcdevs 2021-10-03 02:39:20 <-- ZacSharp11 (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp11) 2021-10-03 03:05:31 --> bswartz_ (~bswartz_@136.56.23.111) a rejoint #mcdevs 2021-10-03 04:39:17 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 252 seconds) 2021-10-03 05:14:31 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-03 06:15:49 --> Fador_ (fador@hentai.fi) a rejoint #mcdevs 2021-10-03 06:16:40 --> stilbruch1 (~stilbruch@157.245.122.124) a rejoint #mcdevs 2021-10-03 06:17:09 --> SpaceMan1ac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-10-03 06:20:20 <-- bswartz_ (~bswartz_@136.56.23.111) a quitté (*.net *.split) 2021-10-03 06:20:21 <-- Fador (fador@hentai.fi) a quitté (*.net *.split) 2021-10-03 06:20:21 <-- ammar2 (admin@i.diddled.with.the.opers.so.they.klined.me) a quitté (*.net *.split) 2021-10-03 06:20:21 <-- ashka (~ashka@user/ashka) a quitté (*.net *.split) 2021-10-03 06:20:21 <-- SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a quitté (*.net *.split) 2021-10-03 06:20:22 <-- stilbruch (~stilbruch@157.245.122.124) a quitté (*.net *.split) 2021-10-03 06:20:22 -- SpaceMan1ac est maintenant connu sous le nom SpaceManiac 2021-10-03 06:21:21 --> bswartz_ (~bswartz_@136.56.23.111) a rejoint #mcdevs 2021-10-03 06:21:25 --> Techcable_ (~Techcable@168.235.93.147) a rejoint #mcdevs 2021-10-03 06:22:00 --> ammar2 (admin@i.diddled.with.the.opers.so.they.klined.me) a rejoint #mcdevs 2021-10-03 06:22:03 <-- Techcable (~Techcable@168.235.93.147) a quitté (Ping timeout: 252 seconds) 2021-10-03 06:22:04 <-- Disconsented (~quassel@107.170.227.20) a quitté (Ping timeout: 252 seconds) 2021-10-03 06:22:16 --> Disconsented (~quassel@107.170.227.20) a rejoint #mcdevs 2021-10-03 06:25:22 <-- yosafbridge (~yosafbrid@static.38.6.217.95.clients.your-server.de) a quitté (Ping timeout: 252 seconds) 2021-10-03 06:28:07 <-- rom1504 (rom1504@rom1504.fr) a quitté (Ping timeout: 252 seconds) 2021-10-03 06:28:07 -- irc : déconnecté du serveur 2021-10-03 06:28:29 --> rom15041 (rom1504@rom1504.fr) a rejoint #mcdevs 2021-10-03 06:28:29 -- Le titre pour #mcdevs est "A haunt for developers working on projects related to Minecraft | Website & Rules: http://wiki.vg/MCDevs/rules | Wiki: http://wiki.vg | Channel is publicly logged as of Feb.25/13 https://logs.rom1504.fr/" 2021-10-03 06:28:29 -- Titre défini par TkTech le mer., 19 mai 2021 23:14:27 2021-10-03 06:28:29 -- Canal #mcdevs : 76 pseudos (1 op, 0 voice, 75 normaux) 2021-10-03 06:28:29 -- URL pour #mcdevs : https://wiki.vg 2021-10-03 06:28:40 <-- Amaranth (~travis@59.ip-158-69-219.net) a quitté (Ping timeout: 252 seconds) 2021-10-03 06:28:40 -- Amaranth8 est maintenant connu sous le nom Amaranth 2021-10-03 06:28:53 -- Canal créé le mer., 19 mai 2021 16:40:13 2021-10-03 06:30:19 <-- kashike (kashike@user/kashike) a quitté (Ping timeout: 252 seconds) 2021-10-03 06:32:00 --> kashike (kashike@user/kashike) a rejoint #mcdevs 2021-10-03 06:33:23 <-- ecx (~user@user/ecx) a quitté (Ping timeout: 252 seconds) 2021-10-03 06:33:44 --> ecx (~user@user/ecx) a rejoint #mcdevs 2021-10-03 06:46:26 <-- \ (bigfoot@user/bigfoot547) a quitté (Ping timeout: 252 seconds) 2021-10-03 06:47:03 --> \ (bigfoot@user/bigfoot547) a rejoint #mcdevs 2021-10-03 06:49:01 <-- _tjr_ (~tjr@233.ip-144-217-92.net) a quitté (Ping timeout: 252 seconds) 2021-10-03 06:49:34 <-- tanner (~tanner@tilde.town) a quitté (Ping timeout: 252 seconds) 2021-10-03 06:49:58 --> tanner (~tanner@tilde.town) a rejoint #mcdevs 2021-10-03 06:51:00 --> t-j-r (~tjr@233.ip-144-217-92.net) a rejoint #mcdevs 2021-10-03 11:17:17 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-03 12:06:56 <-- simon816 (~simon816@ec2-35-178-246-72.eu-west-2.compute.amazonaws.com) a quitté (Remote host closed the connection) 2021-10-03 12:13:32 --> simon816 (~simon816@ec2-35-178-246-72.eu-west-2.compute.amazonaws.com) a rejoint #mcdevs 2021-10-03 15:00:49 <-- bswartz_ (~bswartz_@136.56.23.111) a quitté (Ping timeout: 252 seconds) 2021-10-03 15:01:41 --> bswartz_ (~bswartz_@2600:1004:b094:735:8315:a779:927:3bad) a rejoint #mcdevs 2021-10-03 15:12:20 <-- bswartz_ (~bswartz_@2600:1004:b094:735:8315:a779:927:3bad) a quitté (Read error: Connection reset by peer) 2021-10-03 15:12:31 --> bswartz_ (~bswartz_@136.56.23.111) a rejoint #mcdevs 2021-10-03 16:55:13 -- Fador_ est maintenant connu sous le nom Fador 2021-10-03 17:40:44 <-- bswartz_ (~bswartz_@136.56.23.111) a quitté (Ping timeout: 245 seconds) 2021-10-03 17:41:40 --> bswartz_ (~bswartz_@2600:1004:b094:735:8315:a779:927:3bad) a rejoint #mcdevs 2021-10-03 18:02:34 <-- bswartz_ (~bswartz_@2600:1004:b094:735:8315:a779:927:3bad) a quitté (Quit: Quit) 2021-10-03 18:02:46 --> bswartz_ (~bswartz_@2600:1004:b094:735:8315:a779:927:3bad) a rejoint #mcdevs 2021-10-03 18:03:09 <-- bswartz_ (~bswartz_@2600:1004:b094:735:8315:a779:927:3bad) a quitté (Client Quit) 2021-10-03 20:30:14 --> arrowz (~arrowz@c-24-7-48-61.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-10-03 20:30:38 arrowz I came here a few days ago to ask for help with making my minecraft proxy, and it's now complete 2021-10-03 20:30:47 arrowz code is here: https://github.com/101arrowz/mc-proxy 2021-10-03 20:31:21 arrowz thanks for the help pokechu22 and everyone else 2021-10-03 20:46:45 <-- arrowz (~arrowz@c-24-7-48-61.hsd1.ca.comcast.net) a quitté (Quit: Client closed) 2021-10-03 20:49:21 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-03 21:26:58 --> Guest8173 (~Guest81@c-24-7-48-61.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-10-03 21:27:17 <-- Guest8173 (~Guest81@c-24-7-48-61.hsd1.ca.comcast.net) a quitté (Client Quit) 2021-10-03 22:04:13 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 252 seconds) 2021-10-03 23:30:31 --> ZacSharp7 (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-03 23:34:43 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 256 seconds) 2021-10-03 23:46:31 -- ZacSharp7 est maintenant connu sous le nom ZacSharp 2021-10-04 00:11:41 <-- xlei (akans@pool-68-129-84-118.nycmny.fios.verizon.net) a quitté (Ping timeout: 246 seconds) 2021-10-04 00:54:12 <-- C4K3_ (~C4K3@fen.c4k3.net) a quitté (Remote host closed the connection) 2021-10-04 01:43:15 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-04 02:28:33 --> xlei (akans@pool-68-129-84-118.nycmny.fios.verizon.net) a rejoint #mcdevs 2021-10-04 06:29:19 --> Guest90 (~Guest90@c-24-7-48-61.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-10-04 06:29:56 <-- Guest90 (~Guest90@c-24-7-48-61.hsd1.ca.comcast.net) a quitté (Client Quit) 2021-10-04 11:38:55 --> myon98 (~myon98@user/myon98) a rejoint #mcdevs 2021-10-04 14:38:54 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-04 18:13:53 <-- pitust[m] (~pitustmat@2001:470:69fc:105::ba1d) a quitté (Ping timeout: 264 seconds) 2021-10-04 18:14:07 --> pitust[m] (~pitustmat@2001:470:69fc:105::ba1d) a rejoint #mcdevs 2021-10-04 18:15:41 <-- Lumi (~luminofla@2001:470:69fc:105::506) a quitté (Ping timeout: 264 seconds) 2021-10-04 18:16:06 --> Lumi (~luminofla@2001:470:69fc:105::506) a rejoint #mcdevs 2021-10-04 18:58:17 <-- Asterix1324[m] (~asterix13@2001:470:69fc:105::61e) a quitté (Ping timeout: 264 seconds) 2021-10-04 19:03:49 --> Asterix1324[m] (~asterix13@2001:470:69fc:105::61e) a rejoint #mcdevs 2021-10-04 19:31:53 <-- hplaptop[m] (~hplaptopm@2001:470:69fc:105::ee1b) a quitté (Ping timeout: 264 seconds) 2021-10-04 19:32:05 --> hplaptop[m] (~hplaptopm@2001:470:69fc:105::ee1b) a rejoint #mcdevs 2021-10-04 21:04:21 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-04 22:04:34 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 260 seconds) 2021-10-04 22:34:20 <-- wizards_ (~guest@user/wizards) a quitté (Quit: WeeChat 2.8) 2021-10-04 22:34:31 --> wizards (~guest@user/wizards) a rejoint #mcdevs 2021-10-04 23:30:02 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: Client closed) 2021-10-04 23:32:01 -- Vous êtes maintenant connu sous le nom rom1504 2021-10-04 23:41:27 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-05 00:11:45 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-05 02:39:11 <-- bswartz (~bswartz@user/bswartz) a quitté (Quit: Leaving.) 2021-10-05 02:52:49 --> gbear605_ (~gbear605@user/gbear605) a rejoint #mcdevs 2021-10-05 02:55:46 <-- gbear605 (~gbear605@user/gbear605) a quitté (Ping timeout: 260 seconds) 2021-10-05 09:20:53 <-- Techcable_ (~Techcable@168.235.93.147) a quitté (Quit: ZNC - https://znc.in) 2021-10-05 09:23:18 --> Techcable (~Techcable@168.235.93.147) a rejoint #mcdevs 2021-10-05 10:12:40 <-- Amaranth (~travis@59.ip-158-69-219.net) a quitté (*.net *.split) 2021-10-05 10:12:40 <-- ashka (~ashka@user/ashka) a quitté (*.net *.split) 2021-10-05 10:12:41 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (*.net *.split) 2021-10-05 10:12:41 <-- ckie (~ckie@user/cookie) a quitté (*.net *.split) 2021-10-05 10:22:27 --> Amaranth (~travis@59.ip-158-69-219.net) a rejoint #mcdevs 2021-10-05 10:24:23 --> ashka (~ashka@user/ashka) a rejoint #mcdevs 2021-10-05 10:24:23 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-05 10:24:23 --> ckie (~ckie@user/cookie) a rejoint #mcdevs 2021-10-05 10:24:25 <-- haykam (~haykam@user/haykam) a quitté (Excess Flood) 2021-10-05 10:25:03 --> haykam (~haykam@user/haykam) a rejoint #mcdevs 2021-10-05 11:00:12 <-- hplaptop[m] (~hplaptopm@2001:470:69fc:105::ee1b) a quitté (Quit: You have been kicked for being idle) 2021-10-05 15:17:30 --> bswartz (~bswartz@136.56.23.111) a rejoint #mcdevs 2021-10-05 15:17:30 <-- bswartz (~bswartz@136.56.23.111) a quitté (Changing host) 2021-10-05 15:17:30 --> bswartz (~bswartz@user/bswartz) a rejoint #mcdevs 2021-10-05 16:58:46 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-05 21:22:23 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-05 22:04:05 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 246 seconds) 2021-10-05 22:24:49 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 256 seconds) 2021-10-06 00:18:30 <-- Byteflux (~byte@byteflux.net) a quitté (Quit: ZNC - https://znc.in) 2021-10-06 00:26:44 --> Byteflux (~byte@byteflux.net) a rejoint #mcdevs 2021-10-06 03:54:19 <-- rymiel (~rymiel@arch-houju.rymiel.space) a quitté (Quit: quit) 2021-10-06 03:54:47 --> rymiel (~rymiel@arch-houju.rymiel.space) a rejoint #mcdevs 2021-10-06 05:15:03 <-- obw (~offbeatwi@2001:bc8:608:131::1) a quitté (Quit: and at the end / you can't do it again) 2021-10-06 05:15:24 --> obw (~offbeatwi@2001:bc8:608:131::1) a rejoint #mcdevs 2021-10-06 05:16:17 <-- \ (bigfoot@user/bigfoot547) a quitté (Quit: ZNC 1.8.2 - https://znc.in) 2021-10-06 05:16:31 --> \ (bigfoot@user/bigfoot547) a rejoint #mcdevs 2021-10-06 05:19:06 <-- Asterix1324[m] (~asterix13@2001:470:69fc:105::61e) a quitté (Ping timeout: 265 seconds) 2021-10-06 05:37:00 --> Asterix1324[m] (~asterix13@2001:470:69fc:105::61e) a rejoint #mcdevs 2021-10-06 13:35:11 --> raek (~raek@2001:9b1:efe:3200:d250:99ff:fec0:e153) a rejoint #mcdevs 2021-10-06 13:58:43 <-- Fador (fador@hentai.fi) a quitté (Remote host closed the connection) 2021-10-06 14:43:56 --> Fador (fador@hentai.fi) a rejoint #mcdevs 2021-10-06 19:01:34 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-06 22:04:26 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 265 seconds) 2021-10-06 22:15:16 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-06 22:19:41 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 245 seconds) 2021-10-06 22:37:56 <-- garet90 (~garet90@2601:681:4401:4310:2ef0:5dff:fe3d:f987) a quitté (Ping timeout: 246 seconds) 2021-10-07 04:36:46 --> Snavy (~Snavy@2a01:e0a:988:4750:9557:2aaa:6f87:e302) a rejoint #mcdevs 2021-10-07 04:37:04 Snavy Hello 2021-10-07 10:47:39 <-- daswf852 (~daswf852@user/daswf852) a quitté (Ping timeout: 250 seconds) 2021-10-07 11:11:59 --> daswf852 (~daswf852@user/daswf852) a rejoint #mcdevs 2021-10-07 11:44:30 <-- daswf852 (~daswf852@user/daswf852) a quitté (Ping timeout: 265 seconds) 2021-10-07 13:04:47 --> daswf852 (~daswf852@user/daswf852) a rejoint #mcdevs 2021-10-07 13:26:53 <-- myon98 (~myon98@user/myon98) a quitté (Quit: Bouncer maintainance...) 2021-10-07 14:38:46 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-07 16:30:02 --> Not-a08 (~notifico@ec2-52-3-50-241.compute-1.amazonaws.com) a rejoint #mcdevs 2021-10-07 16:30:02 Not-a08 [McUpdates] Minecraft snapshot 21w40a has just been published to the launcher! 2021-10-07 16:30:04 Not-a08 [McUpdates] Data generated by 21w40a: https://apimon.de/mcdata/21w40a/ 2021-10-07 16:33:08 Not-a08 [Burger] New data now avaliable for 21w40a: 2021-10-07 16:33:09 Not-a08 [Burger] Diff from 21w39a: https://pokechu22.github.io/Burger/diff_21w39a_21w40a.html (https://pokechu22.github.io/Burger/diff_21w39a_21w40a.json) 2021-10-07 16:33:11 Not-a08 [Burger] Full data: https://pokechu22.github.io/Burger/21w40a.html (https://pokechu22.github.io/Burger/21w40a.json) 2021-10-07 17:08:31 <-- Snavy (~Snavy@2a01:e0a:988:4750:9557:2aaa:6f87:e302) a quitté (Quit: Ping timeout (120 seconds)) 2021-10-07 18:21:57 <-- Lumi (~luminofla@2001:470:69fc:105::506) a quitté (Ping timeout: 260 seconds) 2021-10-07 18:46:56 --> Lumi (~luminofla@2001:470:69fc:105::506) a rejoint #mcdevs 2021-10-07 21:13:15 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-07 22:03:51 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 245 seconds) 2021-10-07 22:14:21 --> Guest825 (~Guest82@12.169.103.62) a rejoint #mcdevs 2021-10-07 22:18:20 <-- Guest825 (~Guest82@12.169.103.62) a quitté (Client Quit) 2021-10-07 23:06:54 <-- Thinkofname (~thinkthin@2a01:430:17:1::ffff:1980) a quitté (Quit: Bridge terminating on SIGTERM) 2021-10-07 23:28:12 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-07 23:28:18 --> Thinkofname (~thinkthin@37.205.12.211) a rejoint #mcdevs 2021-10-07 23:36:04 <-- clonejo (~clonejo@shakik3.shakik.de) a quitté (Quit: WeeChat 3.1) 2021-10-07 23:37:22 --> clonejo (~clonejo@shakik3.shakik.de) a rejoint #mcdevs 2021-10-07 23:38:03 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-08 00:34:50 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-08 01:19:59 <-- daswf852 (~daswf852@user/daswf852) a quitté (Read error: Connection reset by peer) 2021-10-08 01:20:17 --> daswf852 (~daswf852@user/daswf852) a rejoint #mcdevs 2021-10-08 07:20:35 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-08 08:54:35 <-- daswf852 (~daswf852@user/daswf852) a quitté (Ping timeout: 260 seconds) 2021-10-08 08:55:29 --> daswf852 (~daswf852@user/daswf852) a rejoint #mcdevs 2021-10-08 10:08:44 --> stack7 (~StackDoub@45-29-51-69.lightspeed.cicril.sbcglobal.net) a rejoint #mcdevs 2021-10-08 10:11:00 <-- stack (~StackDoub@45-29-51-69.lightspeed.cicril.sbcglobal.net) a quitté (Ping timeout: 260 seconds) 2021-10-08 10:11:00 -- stack7 est maintenant connu sous le nom stack 2021-10-08 13:21:35 <-- wizards (~guest@user/wizards) a quitté (Ping timeout: 246 seconds) 2021-10-08 13:23:32 --> wizards (~guest@user/wizards) a rejoint #mcdevs 2021-10-08 15:20:09 <-- Lumi (~luminofla@2001:470:69fc:105::506) a quitté (Remote host closed the connection) 2021-10-08 15:20:09 <-- pitust[m] (~pitustmat@2001:470:69fc:105::ba1d) a quitté (Read error: Connection reset by peer) 2021-10-08 15:20:09 <-- Asterix1324[m] (~asterix13@2001:470:69fc:105::61e) a quitté (Read error: Connection reset by peer) 2021-10-08 15:20:10 <-- chibill[m] (~chibillm]@2001:470:69fc:105::5ce) a quitté (Write error: Connection reset by peer) 2021-10-08 15:20:10 <-- bigibas123 (~bigibas12@user/bigibas123) a quitté (Remote host closed the connection) 2021-10-08 15:21:54 --> chibill[m] (~chibillm]@2001:470:69fc:105::5ce) a rejoint #mcdevs 2021-10-08 15:30:23 --> Lumi (~luminofla@2001:470:69fc:105::506) a rejoint #mcdevs 2021-10-08 15:30:23 --> Asterix1324[m] (~asterix13@2001:470:69fc:105::61e) a rejoint #mcdevs 2021-10-08 15:30:37 --> bigibas123 (~bigibas12@user/bigibas123) a rejoint #mcdevs 2021-10-08 15:30:37 --> pitust[m] (~pitustmat@2001:470:69fc:105::ba1d) a rejoint #mcdevs 2021-10-08 18:09:25 --> unlimitedcoder2 (~unlimited@cpc155835-brmb12-2-0-cust447.1-3.cable.virginm.net) a rejoint #mcdevs 2021-10-08 20:38:22 <-- lew (~lew@2a07:abc4::1:26e) a quitté (Quit: ZNC - https://znc.in) 2021-10-08 20:38:42 --> a (~lew@2a07:abc4::1:26e) a rejoint #mcdevs 2021-10-08 20:52:24 <-- a (~lew@2a07:abc4::1:26e) a quitté (Quit: ZNC - https://znc.in) 2021-10-08 20:53:15 --> a (~lew@2a07:abc4::1:26e) a rejoint #mcdevs 2021-10-08 20:57:19 <-- a (~lew@2a07:abc4::1:26e) a quitté (Client Quit) 2021-10-08 20:59:54 --> a (~lew@89.234.183.156) a rejoint #mcdevs 2021-10-08 21:18:30 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-08 21:24:45 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 260 seconds) 2021-10-08 21:29:01 <-- Not-a08 (~notifico@ec2-52-3-50-241.compute-1.amazonaws.com) a quitté (Ping timeout: 252 seconds) 2021-10-08 21:31:35 <-- wizards (~guest@user/wizards) a quitté (Ping timeout: 246 seconds) 2021-10-08 21:33:46 --> wizards (~guest@user/wizards) a rejoint #mcdevs 2021-10-08 21:53:05 <-- unlimitedcoder2 (~unlimited@cpc155835-brmb12-2-0-cust447.1-3.cable.virginm.net) a quitté (Quit: Leaving) 2021-10-08 22:33:00 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-08 22:44:54 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: Client closed) 2021-10-08 22:45:07 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-08 23:06:30 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: Client closed) 2021-10-08 23:06:45 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-08 23:15:31 --> ndelta0 (~ndelta0@94-172-123-136.dynamic.chello.pl) a rejoint #mcdevs 2021-10-08 23:16:00 ndelta0 any1 has a source on how and when to send Update Light packets? 2021-10-08 23:16:41 pokechu22 I think it's just when the chunk first loads, maybe when there are large updates to lighting but I'm less sure of that 2021-10-08 23:17:31 pokechu22 Regarding "how", it's a flood-fill: the light level of a block is 1 less than the highest one of its neighbors. But any block that can directly see the sky has skylight level 15. 2021-10-08 23:23:25 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-08 23:23:57 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-08 23:32:02 bswartz Clients are responsible for recomputing light 2021-10-08 23:32:31 bswartz There is no point to sending light except for chunks that border an unloaded chunk 2021-10-08 23:34:03 pokechu22 I think you might need to send it if a large enough change happens that you would send a chunk data packet for changing that chunk section -- but I don't think you're ever required to do that; it's just a thing the notchain server does 2021-10-08 23:35:13 bswartz It would be required in a border chunk because the client doesn't have sufficient information to do it itself 2021-10-08 23:36:44 --> negative_delta0_ (~ndelta0@94-172-123-136.dynamic.chello.pl) a rejoint #mcdevs 2021-10-08 23:51:40 <-- negative_delta0_ (~ndelta0@94-172-123-136.dynamic.chello.pl) a quitté (Quit: Leaving) 2021-10-09 00:04:04 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 245 seconds) 2021-10-09 00:14:21 <-- ndelta0 (~ndelta0@94-172-123-136.dynamic.chello.pl) a quitté (Read error: Connection reset by peer) 2021-10-09 02:38:14 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-09 11:36:03 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-09 20:42:44 --> Bitflux (~byte@byteflux.net) a rejoint #mcdevs 2021-10-09 20:42:52 <-- Amaranth (~travis@59.ip-158-69-219.net) a quitté (Quit: Ping timeout (120 seconds)) 2021-10-09 20:42:52 <-- Byteflux (~byte@byteflux.net) a quitté (Quit: ZNC - https://znc.in) 2021-10-09 20:53:35 --> Amaranth (~travis@59.ip-158-69-219.net) a rejoint #mcdevs 2021-10-09 23:53:48 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Quit: Leaving) 2021-10-10 07:25:22 --> myon98 (~myon98@user/myon98) a rejoint #mcdevs 2021-10-10 10:26:12 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-10 17:05:05 <-- daswf852 (~daswf852@user/daswf852) a quitté (Ping timeout: 260 seconds) 2021-10-10 17:07:19 --> daswf852 (~daswf852@user/daswf852) a rejoint #mcdevs 2021-10-10 17:32:17 --> timetheory[m] (~timetheor@2001:470:69fc:105::1:1577) a rejoint #mcdevs 2021-10-10 19:25:01 --> ndelta0 (~ndelta0@94-172-123-136.dynamic.chello.pl) a rejoint #mcdevs 2021-10-10 21:17:05 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-10 22:04:04 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 252 seconds) 2021-10-10 22:14:14 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-10 23:18:22 --> ZacSharp79 (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-10 23:22:07 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 256 seconds) 2021-10-10 23:24:02 -- ZacSharp79 est maintenant connu sous le nom ZacSharp 2021-10-10 23:28:38 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-10 23:28:52 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-10 23:42:07 <-- ndelta0 (~ndelta0@94-172-123-136.dynamic.chello.pl) a quitté (Read error: Connection reset by peer) 2021-10-10 23:47:11 --> Tides (~Tides@pool-71-187-234-137.nwrknj.fios.verizon.net) a rejoint #mcdevs 2021-10-10 23:51:46 Tides I have a question, how is Window ID for packets like ClickWIndow determined? 2021-10-10 23:52:52 ZacSharp I think you can get it from the open gui 2021-10-10 23:53:01 ZacSharp lemme quickly check 2021-10-10 23:53:53 Geolykt I have heard that it is an incrementing number that eventually wraps back to it's beginning 2021-10-10 23:54:10 ZacSharp mc.player.openContainer.windowId 2021-10-11 00:04:02 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 265 seconds) 2021-10-11 00:05:34 ZacSharp it's a counter that wraps around every 100 ids (this.currentWindowId = this.currentWindowId % 100 + 1) in 1.12 2021-10-11 00:13:12 Tides Yeah, It took me a bit to find it but I found it 2021-10-11 01:59:27 --> C4K3 (~C4K3@fen.c4k3.net) a rejoint #mcdevs 2021-10-11 02:07:53 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-11 03:01:36 <-- Tides (~Tides@pool-71-187-234-137.nwrknj.fios.verizon.net) a quitté (Quit: Client closed) 2021-10-11 07:49:16 <-- wizards (~guest@user/wizards) a quitté (Ping timeout: 252 seconds) 2021-10-11 09:19:08 <-- Bitflux (~byte@byteflux.net) a quitté (*.net *.split) 2021-10-11 09:19:08 <-- ashka (~ashka@user/ashka) a quitté (*.net *.split) 2021-10-11 09:19:08 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (*.net *.split) 2021-10-11 09:19:08 <-- ckie (~ckie@user/cookie) a quitté (*.net *.split) 2021-10-11 09:30:52 --> Bitflux (~byte@byteflux.net) a rejoint #mcdevs 2021-10-11 09:30:52 --> ashka (~ashka@user/ashka) a rejoint #mcdevs 2021-10-11 09:30:52 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-11 09:30:52 --> ckie (~ckie@user/cookie) a rejoint #mcdevs 2021-10-11 09:30:53 <-- haykam (~haykam@user/haykam) a quitté (Excess Flood) 2021-10-11 09:31:51 <-- Bitflux (~byte@byteflux.net) a quitté (Max SendQ exceeded) 2021-10-11 09:32:00 --> haykam (~haykam@user/haykam) a rejoint #mcdevs 2021-10-11 09:32:16 --> Byteflux (~byte@byteflux.net) a rejoint #mcdevs 2021-10-11 11:19:24 <-- AndrewPH (~Andrew@2606:db00:0:62e::b) a quitté (Ping timeout: 268 seconds) 2021-10-11 12:02:48 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-11 12:03:47 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Read error: Connection reset by peer) 2021-10-11 12:03:58 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-11 19:06:04 --> ndelta0 (~ndelta0@94-172-123-136.dynamic.chello.pl) a rejoint #mcdevs 2021-10-11 20:14:50 ndelta0 How can I prevent the lighting from getting broken after resending a chunk? After joining the game all is ok but after resending them it breaks the lighting 2021-10-11 20:16:58 ndelta0 And it only happens on old (already generated) chunks, new chunks get rendered correctly 2021-10-11 20:17:46 pokechu22 Are you also sending the update light packet when you resend the chunk? 2021-10-11 20:18:17 ndelta0 Currently not, but not sending it when joining world seems to work fine 2021-10-11 20:19:54 ndelta0 And I'm baffled by how to calculate things to send them in the Update Light packet, I can't even find the packet in the MCP decompilation 2021-10-11 20:26:59 --> wizards (~guest@user/wizards) a rejoint #mcdevs 2021-10-11 20:28:08 pokechu22 If you're using 1.12-era MCP then the packet didn't exist back then (lighting data was included in the main chunk packet). Since then they've made lighting calculation async but the basic logic is the same... Look in Chunk.java for relightBlocks 2021-10-11 20:28:30 pokechu22 I'm not sure where the relevant code is in more recent versions 2021-10-11 20:32:03 ndelta0 I'm using the latest MCP-Reborn 1.17 branch 2021-10-11 21:21:23 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-11 23:13:08 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-11 23:13:23 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-11 23:42:41 <-- ndelta0 (~ndelta0@94-172-123-136.dynamic.chello.pl) a quitté (Read error: Connection reset by peer) 2021-10-12 00:04:25 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 252 seconds) 2021-10-12 02:30:14 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-12 03:33:34 --> kennytv8 (~kennytv@kenny.server.viaversion.com) a rejoint #mcdevs 2021-10-12 03:33:40 --> NoahvdAa0 (~NoahvdAa@user/noahvdaa) a rejoint #mcdevs 2021-10-12 03:35:19 <-- NoahvdAa (~NoahvdAa@user/noahvdaa) a quitté (Read error: Connection reset by peer) 2021-10-12 03:35:20 -- NoahvdAa0 est maintenant connu sous le nom NoahvdAa 2021-10-12 03:35:55 <-- kennytv (~kennytv@kenny.server.viaversion.com) a quitté (Ping timeout: 260 seconds) 2021-10-12 03:35:55 -- kennytv8 est maintenant connu sous le nom kennytv 2021-10-12 03:51:32 --> AndrewPH (~Andrew@2606:db00:0:62e::b) a rejoint #mcdevs 2021-10-12 08:27:32 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-12 08:32:17 <-- wizards (~guest@user/wizards) a quitté (Ping timeout: 250 seconds) 2021-10-12 08:34:12 --> wizards (~guest@user/wizards) a rejoint #mcdevs 2021-10-12 08:34:39 <-- ashka (~ashka@user/ashka) a quitté (*.net *.split) 2021-10-12 08:34:39 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (*.net *.split) 2021-10-12 08:34:39 <-- ckie (~ckie@user/cookie) a quitté (*.net *.split) 2021-10-12 08:56:19 --> ashka (~ashka@user/ashka) a rejoint #mcdevs 2021-10-12 08:56:19 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-12 08:56:19 --> ckie (~ckie@user/cookie) a rejoint #mcdevs 2021-10-12 08:56:28 <-- haykam (~haykam@user/haykam) a quitté (Excess Flood) 2021-10-12 08:57:06 --> haykam (~haykam@user/haykam) a rejoint #mcdevs 2021-10-12 10:55:16 <-- raek (~raek@2001:9b1:efe:3200:d250:99ff:fec0:e153) a quitté #mcdevs 2021-10-12 16:13:24 --> The_Red_Freak (~The_Red_F@2001:4bca:1016:ca59:dd17:499d:cb9e:3f78) a rejoint #mcdevs 2021-10-12 19:25:42 --> ndelta0 (~ndelta0@94-172-123-136.dynamic.chello.pl) a rejoint #mcdevs 2021-10-12 21:18:15 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-12 22:07:53 <-- The_Red_Freak (~The_Red_F@2001:4bca:1016:ca59:dd17:499d:cb9e:3f78) a quitté (Ping timeout: 265 seconds) 2021-10-12 22:08:17 --> The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:dd17:499d:cb9e:3f78) a rejoint #mcdevs 2021-10-12 23:30:19 --> ZacSharp24 (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-12 23:34:23 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 256 seconds) 2021-10-12 23:35:01 -- ZacSharp24 est maintenant connu sous le nom ZacSharp 2021-10-12 23:51:13 <-- The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:dd17:499d:cb9e:3f78) a quitté (Read error: Connection reset by peer) 2021-10-13 00:04:10 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 260 seconds) 2021-10-13 00:19:27 <-- ndelta0 (~ndelta0@94-172-123-136.dynamic.chello.pl) a quitté (Read error: Connection reset by peer) 2021-10-13 00:23:26 <-- wizards (~guest@user/wizards) a quitté (Ping timeout: 245 seconds) 2021-10-13 00:25:25 --> wizards (~guest@user/wizards) a rejoint #mcdevs 2021-10-13 02:13:40 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-13 06:24:58 --> The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:78c3:892a:8eb2:5a55) a rejoint #mcdevs 2021-10-13 09:23:41 <-- _123DMWM (~123DMWM@me.123dmwm.com) a quitté (Quit: When does the narwhal bacon?) 2021-10-13 09:23:42 --> mbaxter0 (mbaxter@bnc.io) a rejoint #mcdevs 2021-10-13 09:23:47 --> TkTech5 (~TkTech@24-52-219-213.cable.teksavvy.com) a rejoint #mcdevs 2021-10-13 09:23:48 <-- t-j-r (~tjr@233.ip-144-217-92.net) a quitté (Quit: quitting) 2021-10-13 09:24:13 <-- ckie (~ckie@user/cookie) a quitté (Quit: off I go~) 2021-10-13 09:25:47 --> craftxbox (craftxbox@2001:bc8:654:1c02::1) a rejoint #mcdevs 2021-10-13 09:25:47 <-- zml (zml@nasturtium.stellardrift.ca) a quitté (Ping timeout: 240 seconds) 2021-10-13 09:25:51 <-- C4K3 (~C4K3@fen.c4k3.net) a quitté (Ping timeout: 265 seconds) 2021-10-13 09:27:31 <-- Hafydd (~Hafydd@user/hafydd) a quitté (Ping timeout: 252 seconds) 2021-10-13 09:27:42 --> AgentK (~AgentK@user/agentk) a rejoint #mcdevs 2021-10-13 09:29:36 --> mdcfe5 (~mdcfe@lemons.mdcfe.dev) a rejoint #mcdevs 2021-10-13 09:30:01 --> anderson_ (~ande@user/anderson) a rejoint #mcdevs 2021-10-13 09:31:12 <-- kennytv (~kennytv@kenny.server.viaversion.com) a quitté (*.net *.split) 2021-10-13 09:31:12 <-- timetheory[m] (~timetheor@2001:470:69fc:105::1:1577) a quitté (*.net *.split) 2021-10-13 09:31:13 <-- spirit- (~spirit@233.ip-144-217-92.net) a quitté (*.net *.split) 2021-10-13 09:31:55 <-- Byteflux (~byte@byteflux.net) a quitté (*.net *.split) 2021-10-13 09:31:55 <-- Amaranth (~travis@59.ip-158-69-219.net) a quitté (*.net *.split) 2021-10-13 09:31:55 <-- TkTech (~TkTech@24-52-219-213.cable.teksavvy.com) a quitté (*.net *.split) 2021-10-13 09:31:55 <-- mdcfe (~mdcfe@lemons.mdcfe.dev) a quitté (*.net *.split) 2021-10-13 09:31:55 <-- \\ (~\0x5c@miaow/nonantedeux) a quitté (*.net *.split) 2021-10-13 09:31:55 <-- bixilon (~bixilon@node-3.bixilon.de) a quitté (*.net *.split) 2021-10-13 09:31:55 <-- mbaxter (mbaxter@bnc.io) a quitté (*.net *.split) 2021-10-13 09:31:55 <-- camotoy (~camotoy@2600:1700:5531:3d80:ff:60ff:fe24:68ed) a quitté (*.net *.split) 2021-10-13 09:31:55 <-- AgentK_ (~AgentK@user/agentk) a quitté (*.net *.split) 2021-10-13 09:31:55 <-- snep (craftxbox@natsuko.ninja) a quitté (*.net *.split) 2021-10-13 09:31:55 <-- anderson (~ande@user/anderson) a quitté (*.net *.split) 2021-10-13 09:31:55 -- TkTech5 est maintenant connu sous le nom TkTech 2021-10-13 09:31:55 -- mdcfe5 est maintenant connu sous le nom mdcfe 2021-10-13 09:31:56 -- mbaxter0 est maintenant connu sous le nom mbaxter 2021-10-13 09:32:33 -- anderson_ est maintenant connu sous le nom anderson 2021-10-13 09:35:48 --> ckie (~ckie@user/cookie) a rejoint #mcdevs 2021-10-13 09:37:48 --> timetheory[m] (~timetheor@2001:470:69fc:105::1:1577) a rejoint #mcdevs 2021-10-13 09:37:59 <-- haykam (~haykam@user/haykam) a quitté (Excess Flood) 2021-10-13 09:38:37 --> haykam (~haykam@user/haykam) a rejoint #mcdevs 2021-10-13 09:59:31 --> kennytv (~kennytv@kenny.server.viaversion.com) a rejoint #mcdevs 2021-10-13 10:20:34 --> _123DMWM (~123DMWM@me.123dmwm.com) a rejoint #mcdevs 2021-10-13 10:21:11 <-- kennytv (~kennytv@kenny.server.viaversion.com) a quitté (Ping timeout: 246 seconds) 2021-10-13 10:22:37 --> \\ (~\0x5c@miaow/nonantedeux) a rejoint #mcdevs 2021-10-13 10:24:31 --> kennytv (~kennytv@kenny.server.viaversion.com) a rejoint #mcdevs 2021-10-13 10:26:10 --> C4K3 (~C4K3@fen.c4k3.net) a rejoint #mcdevs 2021-10-13 10:26:31 --> zml (~zml@nasturtium.stellardrift.ca) a rejoint #mcdevs 2021-10-13 10:27:00 <-- timetheory[m] (~timetheor@2001:470:69fc:105::1:1577) a quitté (*.net *.split) 2021-10-13 10:28:37 --> Amaranth (~travis@59.ip-158-69-219.net) a rejoint #mcdevs 2021-10-13 10:33:42 --> timetheory[m] (~timetheor@2001:470:69fc:105::1:1577) a rejoint #mcdevs 2021-10-13 10:33:43 <-- haykam (~haykam@user/haykam) a quitté (Excess Flood) 2021-10-13 10:34:20 --> haykam (~haykam@user/haykam) a rejoint #mcdevs 2021-10-13 10:41:00 --> Byteflux (~byte@byteflux.net) a rejoint #mcdevs 2021-10-13 10:43:25 --> _tjr_ (~tjr@233.ip-144-217-92.net) a rejoint #mcdevs 2021-10-13 10:47:24 --> spirit (~spirit@233.ip-144-217-92.net) a rejoint #mcdevs 2021-10-13 10:50:35 --> bixilon (~bixilon@node-3.bixilon.de) a rejoint #mcdevs 2021-10-13 10:51:26 --> camotoy (~camotoy@104-4-111-192.lightspeed.bcvloh.sbcglobal.net) a rejoint #mcdevs 2021-10-13 10:52:01 --> Hafydd (~Hafydd@user/hafydd) a rejoint #mcdevs 2021-10-13 10:56:15 <-- Amaranth (~travis@59.ip-158-69-219.net) a quitté (Quit: The Lounge - https://thelounge.chat) 2021-10-13 10:57:14 --> Amaranth (~travis@59.ip-158-69-219.net) a rejoint #mcdevs 2021-10-13 11:59:16 <-- Lumi (~luminofla@2001:470:69fc:105::506) a quitté (Quit: Bridge terminating on SIGTERM) 2021-10-13 11:59:17 <-- chibill[m] (~chibillm]@2001:470:69fc:105::5ce) a quitté (Quit: Bridge terminating on SIGTERM) 2021-10-13 11:59:17 <-- Asterix1324[m] (~asterix13@2001:470:69fc:105::61e) a quitté (Quit: Bridge terminating on SIGTERM) 2021-10-13 11:59:20 <-- pitust[m] (~pitustmat@2001:470:69fc:105::ba1d) a quitté (Quit: Bridge terminating on SIGTERM) 2021-10-13 11:59:20 <-- bigibas123 (~bigibas12@user/bigibas123) a quitté (Quit: Bridge terminating on SIGTERM) 2021-10-13 11:59:22 <-- timetheory[m] (~timetheor@2001:470:69fc:105::1:1577) a quitté (Quit: Bridge terminating on SIGTERM) 2021-10-13 12:02:38 --> chibill[m] (~chibillm]@2001:470:69fc:105::5ce) a rejoint #mcdevs 2021-10-13 12:10:50 --> Lumi (~luminofla@2001:470:69fc:105::506) a rejoint #mcdevs 2021-10-13 12:10:50 --> Asterix1324[m] (~asterix13@2001:470:69fc:105::61e) a rejoint #mcdevs 2021-10-13 12:11:02 --> timetheory[m] (~timetheor@2001:470:69fc:105::1:1577) a rejoint #mcdevs 2021-10-13 12:11:04 --> bigibas123 (~bigibas12@user/bigibas123) a rejoint #mcdevs 2021-10-13 12:11:04 --> pitust[m] (~pitustmat@2001:470:69fc:105::ba1d) a rejoint #mcdevs 2021-10-13 13:46:05 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-13 14:44:29 <-- xlei (akans@pool-68-129-84-118.nycmny.fios.verizon.net) a quitté (Ping timeout: 245 seconds) 2021-10-13 14:56:42 --> belak51 (~belak@user/belak) a rejoint #mcdevs 2021-10-13 14:57:29 <-- belak (~belak@user/belak) a quitté (Ping timeout: 250 seconds) 2021-10-13 15:15:09 --> Tife (~Tife@5.146.188.164) a rejoint #mcdevs 2021-10-13 15:15:28 Tife hi 2021-10-13 15:23:43 Tife what does the minecraft client expect when he sends the server the package with the minecraft name 2021-10-13 15:28:34 --> xlei (akans@pool-68-129-84-118.nycmny.fios.verizon.net) a rejoint #mcdevs 2021-10-13 15:29:21 Tife what does the minecraft client expect when he sends the server the package with the minecraft name 2021-10-13 15:35:28 <-- Tife (~Tife@5.146.188.164) a quitté (Quit: Client closed) 2021-10-13 18:05:02 --> Not-b5b1 (~notifico@ec2-52-3-50-241.compute-1.amazonaws.com) a rejoint #mcdevs 2021-10-13 18:05:03 Not-b5b1 [McUpdates] Minecraft snapshot 21w41a has just been published to the launcher! 2021-10-13 18:05:04 Not-b5b1 [McUpdates] Data generated by 21w41a: https://apimon.de/mcdata/21w41a/ 2021-10-13 18:13:07 Not-b5b1 [Burger] New data now avaliable for 21w41a: 2021-10-13 18:13:09 Not-b5b1 [Burger] Diff from 21w40a: https://pokechu22.github.io/Burger/diff_21w40a_21w41a.html (https://pokechu22.github.io/Burger/diff_21w40a_21w41a.json) 2021-10-13 18:13:10 Not-b5b1 [Burger] Full data: https://pokechu22.github.io/Burger/21w41a.html (https://pokechu22.github.io/Burger/21w41a.json) 2021-10-13 18:35:48 -- belak51 est maintenant connu sous le nom belak 2021-10-13 19:02:57 -- craftxbox est maintenant connu sous le nom snep 2021-10-13 19:06:54 --> TkTech0 (~TkTech@24-52-219-213.cable.teksavvy.com) a rejoint #mcdevs 2021-10-13 19:08:26 <-- TkTech (~TkTech@24-52-219-213.cable.teksavvy.com) a quitté (Ping timeout: 245 seconds) 2021-10-13 19:08:26 -- TkTech0 est maintenant connu sous le nom TkTech 2021-10-13 21:15:37 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-13 23:20:36 <-- The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:78c3:892a:8eb2:5a55) a quitté (Read error: Connection reset by peer) 2021-10-13 23:24:41 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-13 23:25:14 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-14 00:04:13 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 252 seconds) 2021-10-14 02:09:15 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-14 06:23:15 --> The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:e807:7617:94dc:474f) a rejoint #mcdevs 2021-10-14 06:53:13 --> daswf8520 (~daswf852@user/daswf852) a rejoint #mcdevs 2021-10-14 06:54:46 <-- daswf852 (~daswf852@user/daswf852) a quitté (Read error: Connection reset by peer) 2021-10-14 06:54:46 -- daswf8520 est maintenant connu sous le nom daswf852 2021-10-14 09:02:11 <-- Amaranth (~travis@59.ip-158-69-219.net) a quitté (Quit: The Lounge - https://thelounge.chat) 2021-10-14 09:02:44 --> Amaranth (~travis@59.ip-158-69-219.net) a rejoint #mcdevs 2021-10-14 09:10:47 <-- wizards (~guest@user/wizards) a quitté (Ping timeout: 250 seconds) 2021-10-14 09:11:38 --> wizards (~guest@user/wizards) a rejoint #mcdevs 2021-10-14 09:20:44 --> daswf8525 (~daswf852@user/daswf852) a rejoint #mcdevs 2021-10-14 09:22:25 <-- daswf852 (~daswf852@user/daswf852) a quitté (Ping timeout: 252 seconds) 2021-10-14 09:22:25 -- daswf8525 est maintenant connu sous le nom daswf852 2021-10-14 09:55:57 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-14 16:40:13 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 265 seconds) 2021-10-14 17:20:22 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-14 18:08:50 <-- Lumi (~luminofla@2001:470:69fc:105::506) a quitté (Quit: Bridge terminating on SIGTERM) 2021-10-14 18:08:51 <-- chibill[m] (~chibillm]@2001:470:69fc:105::5ce) a quitté (Quit: Bridge terminating on SIGTERM) 2021-10-14 18:08:51 <-- Asterix1324[m] (~asterix13@2001:470:69fc:105::61e) a quitté (Quit: Bridge terminating on SIGTERM) 2021-10-14 18:08:54 <-- timetheory[m] (~timetheor@2001:470:69fc:105::1:1577) a quitté (Quit: Bridge terminating on SIGTERM) 2021-10-14 18:08:54 <-- bigibas123 (~bigibas12@user/bigibas123) a quitté (Quit: Bridge terminating on SIGTERM) 2021-10-14 18:08:54 <-- pitust[m] (~pitustmat@2001:470:69fc:105::ba1d) a quitté (Quit: Bridge terminating on SIGTERM) 2021-10-14 18:12:02 --> chibill[m] (~chibillm]@2001:470:69fc:105::5ce) a rejoint #mcdevs 2021-10-14 18:19:55 --> Lumi (~luminofla@2001:470:69fc:105::506) a rejoint #mcdevs 2021-10-14 18:19:55 --> Asterix1324[m] (~asterix13@2001:470:69fc:105::61e) a rejoint #mcdevs 2021-10-14 18:20:07 --> timetheory[m] (~timetheor@2001:470:69fc:105::1:1577) a rejoint #mcdevs 2021-10-14 18:20:09 --> bigibas123 (~bigibas12@user/bigibas123) a rejoint #mcdevs 2021-10-14 18:20:09 --> pitust[m] (~pitustmat@2001:470:69fc:105::ba1d) a rejoint #mcdevs 2021-10-14 21:04:57 <-- Byteflux (~byte@byteflux.net) a quitté (Quit: ZNC - https://znc.in) 2021-10-14 21:20:32 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-14 21:29:36 --> Byteflux (~byte@byteflux.net) a rejoint #mcdevs 2021-10-14 22:54:30 <-- The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:e807:7617:94dc:474f) a quitté (Read error: Connection reset by peer) 2021-10-14 23:19:19 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-14 23:19:46 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-14 23:56:23 --> Simon76 (~Simon76@lfbn-lyo-1-31-122.w86-202.abo.wanadoo.fr) a rejoint #mcdevs 2021-10-15 00:02:59 <-- Simon76 (~Simon76@lfbn-lyo-1-31-122.w86-202.abo.wanadoo.fr) a quitté (Quit: Connection closed) 2021-10-15 00:04:24 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 265 seconds) 2021-10-15 01:05:16 --> Tides (~Tides@pool-71-187-234-137.nwrknj.fios.verizon.net) a rejoint #mcdevs 2021-10-15 01:39:43 Tides Does anyone know what WindowId is exactly used for in the client?? 2021-10-15 01:45:25 pokechu22 I think it's mainly for the server's use but I'll double-check 2021-10-15 01:51:33 pokechu22 It seems like it's just sent back to the server in a few GUI packets; the client doesn't do anything interesting with it that I've spotted. I think it's partially to resolve ambiguity between actions taking place in a player's inventory and actions taking place in a container but I'm not entirely sure if that's relevant in current versions; it may just be a relic of when server-sided inventory was 2021-10-15 01:51:35 pokechu22 first implemented 2021-10-15 02:10:19 Tides Ahh I see. Was really curious if it had a significant role thank you (y) 2021-10-15 02:28:11 <-- Lumi (~luminofla@2001:470:69fc:105::506) a quitté (Quit: Reconnecting) 2021-10-15 02:28:27 --> Lumi (~lumi@2001:470:69fc:105::506) a rejoint #mcdevs 2021-10-15 03:07:30 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: 3 am) 2021-10-15 05:41:11 <-- Tides (~Tides@pool-71-187-234-137.nwrknj.fios.verizon.net) a quitté (Quit: Client closed) 2021-10-15 05:46:56 --> Tides (~Tides@pool-71-187-234-137.nwrknj.fios.verizon.net) a rejoint #mcdevs 2021-10-15 06:19:29 --> The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:1d84:748e:b450:ac50) a rejoint #mcdevs 2021-10-15 08:34:54 <-- Not-b5b1 (~notifico@ec2-52-3-50-241.compute-1.amazonaws.com) a quitté (Ping timeout: 245 seconds) 2021-10-15 08:34:54 <-- Techcable (~Techcable@168.235.93.147) a quitté (Ping timeout: 245 seconds) 2021-10-15 08:34:54 <-- simon816 (~simon816@ec2-35-178-246-72.eu-west-2.compute.amazonaws.com) a quitté (Ping timeout: 245 seconds) 2021-10-15 08:35:29 --> simon816 (~simon816@ec2-35-178-246-72.eu-west-2.compute.amazonaws.com) a rejoint #mcdevs 2021-10-15 08:36:08 --> Techcable (~Techcable@168.235.93.147) a rejoint #mcdevs 2021-10-15 09:37:36 --> fred2104 (~kvirc@101.98.187.173) a rejoint #mcdevs 2021-10-15 09:41:06 <-- fred2104 (~kvirc@101.98.187.173) a quitté (Client Quit) 2021-10-15 13:29:02 <-- Tides (~Tides@pool-71-187-234-137.nwrknj.fios.verizon.net) a quitté (Quit: Client closed) 2021-10-15 13:51:01 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-15 15:11:41 --> dexter0_ (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-10-15 15:12:44 <-- dexter0 (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a quitté (Ping timeout: 265 seconds) 2021-10-15 15:12:44 -- dexter0_ est maintenant connu sous le nom dexter0 2021-10-15 19:45:58 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 268 seconds) 2021-10-15 21:17:07 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-15 22:40:27 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-15 22:49:09 <-- The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:1d84:748e:b450:ac50) a quitté (Read error: Connection reset by peer) 2021-10-15 23:30:33 --> ZacSharp82 (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-15 23:34:05 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 256 seconds) 2021-10-16 00:04:35 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 264 seconds) 2021-10-16 01:41:37 --> turtius (~turtius@103.217.179.176) a rejoint #mcdevs 2021-10-16 03:13:40 <-- ZacSharp82 (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp82) 2021-10-16 06:30:19 --> The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:98f5:d182:eb29:d4f9) a rejoint #mcdevs 2021-10-16 10:23:50 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-16 11:19:55 <-- mdcfe (~mdcfe@lemons.mdcfe.dev) a quitté (Remote host closed the connection) 2021-10-16 11:20:17 --> mdcfe (~mdcfe@lemons.mdcfe.dev) a rejoint #mcdevs 2021-10-16 11:29:08 <-- turtius (~turtius@103.217.179.176) a quitté (Ping timeout: 265 seconds) 2021-10-16 12:36:43 <-- TkTech (~TkTech@24-52-219-213.cable.teksavvy.com) a quitté (Quit: The Lounge - https://thelounge.chat) 2021-10-16 12:37:33 --> TkTech (~TkTech@24-52-219-213.cable.teksavvy.com) a rejoint #mcdevs 2021-10-16 14:46:13 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 252 seconds) 2021-10-16 15:57:01 --> Guest39 (~Guest39@bzq-84-111-204-126.cablep.bezeqint.net) a rejoint #mcdevs 2021-10-16 15:58:32 Guest39 Hey there! 2021-10-16 16:00:21 Guest39 I want to develop a Minecraft server, so I thought about starting with a very basic version, like beta 1.0, but I didn't find any documentation for the protocol. Is there any documentation for this version's protocol? 2021-10-16 16:11:28 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-16 16:25:22 <-- Guest39 (~Guest39@bzq-84-111-204-126.cablep.bezeqint.net) a quitté (Quit: Ping timeout (120 seconds)) 2021-10-16 16:25:36 --> Guest39 (~Guest39@bzq-84-111-204-126.cablep.bezeqint.net) a rejoint #mcdevs 2021-10-16 16:25:44 <-- Guest39 (~Guest39@bzq-84-111-204-126.cablep.bezeqint.net) a quitté (Client Quit) 2021-10-16 19:52:31 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 252 seconds) 2021-10-16 21:24:26 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-16 22:26:43 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-16 22:29:39 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Client Quit) 2021-10-16 22:30:31 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-16 22:32:04 <-- daswf852 (~daswf852@user/daswf852) a quitté (Ping timeout: 252 seconds) 2021-10-16 23:15:23 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Quit: Leaving) 2021-10-16 23:30:31 --> ZacSharp46 (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-16 23:33:59 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 256 seconds) 2021-10-17 00:33:41 <-- The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:98f5:d182:eb29:d4f9) a quitté (Read error: Connection reset by peer) 2021-10-17 01:34:27 -- ZacSharp46 est maintenant connu sous le nom ZacSHarp 2021-10-17 01:34:33 -- ZacSHarp est maintenant connu sous le nom ZacSharp 2021-10-17 02:55:00 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-17 02:56:27 <-- wizards (~guest@user/wizards) a quitté (Quit: WeeChat 2.8) 2021-10-17 03:05:44 --> Bash09 (~Bash@150.203.66.28) a rejoint #mcdevs 2021-10-17 03:25:11 Bash09 Hiya people, if anybody is somewhat familiar with the Minecraft server protocol, I am having trouble interpreting some of the packets. 2021-10-17 03:26:19 pokechu22 Sure, what packet are you having trouble with? 2021-10-17 03:26:51 Bash09 From information on wiki.vg it appears all (uncompressed and unencrypted) packets are sent with their length at the beginning, however after logging into the server it sends some rather large ones that don't seem to follow that? 2021-10-17 03:26:54 Bash09 https://gist.github.com/Googe14/71ebb615b455fee006075677f49a27ad 2021-10-17 03:27:14 Bash09 The suspect is shown in there 2021-10-17 03:28:54 pokechu22 Ah, large packets might be split into multiple TCP packets -- I'm guessing that prior to that packet which you don't see a length for, there was another TCP packet where the MC packet length is longer than the TCP packet length 2021-10-17 03:32:50 Bash09 Hm, it doesn't seem so, those packets came from the server in that order, the last packet before the large one was the login success one 2021-10-17 03:37:51 Bash09 I thought it may be several packets that had been combined and sent all together (with a 0x00 packet at the start?), however when interpreting it like that gave unexpected results so I don't think that was it, although very possible I made an error when testing that 2021-10-17 03:40:29 pokechu22 Packets can be combined together in the TCP stream as well, but the game doesn't indicate that in a special way; I'm not sure what the 0x00 means... 2021-10-17 03:46:11 SpaceManiac Bash09: the relationship between TCP packets and Minecraft protocol packets is coincidental at best; you have to combine all the TCP packets in a stream and then chunk the stream based on length prefixes 2021-10-17 03:51:19 SpaceManiac maybe you're missing a packet from this log, if it's wireshark, or something 2021-10-17 03:54:02 Bash09 In Wireshark those are the first responses from the MC server it shows 2021-10-17 03:58:43 SpaceManiac that's definitely deep into the middle of a Join Game packet 2021-10-17 04:00:50 --> wizards (~guest@user/wizards) a rejoint #mcdevs 2021-10-17 04:00:53 SpaceManiac maybe your filter is too narrow 2021-10-17 04:01:10 SpaceManiac or, if the server is really remote, maybe the TCP packets arrived out-of-order 2021-10-17 04:01:51 SpaceManiac check the sequence numbers in the TCP header 2021-10-17 04:05:14 Bash09 SpaceManiac: I think you have got it 2021-10-17 04:08:14 Bash09 Yes, my filter was too strict and I indeed was missing a few packets in between, oops! I had previously made an error in my code to chunk the stream myself, but after fixing that it appears to be reading the packets correctly as far as I can tell. 2021-10-17 04:08:52 Bash09 Thanks so much for the help! 2021-10-17 05:51:03 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 268 seconds) 2021-10-17 06:19:46 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-17 07:43:49 --> daswf852 (~daswf852@user/daswf852) a rejoint #mcdevs 2021-10-17 11:01:05 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-17 11:28:11 --> The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:4c5f:8f0c:94a9:cf66) a rejoint #mcdevs 2021-10-17 16:40:57 <-- Bash09 (~Bash@150.203.66.28) a quitté (Quit: Leaving) 2021-10-17 20:57:14 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-17 22:34:14 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-17 22:34:50 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-17 22:50:26 <-- The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:4c5f:8f0c:94a9:cf66) a quitté (Read error: Connection reset by peer) 2021-10-17 22:54:27 <-- bixilon (~bixilon@node-3.bixilon.de) a quitté (Quit: ZNC 1.7.5+deb4 - https://znc.in) 2021-10-17 23:00:22 --> bixilon (~bixilon@node-3.bixilon.de) a rejoint #mcdevs 2021-10-17 23:13:11 <-- bixilon (~bixilon@node-3.bixilon.de) a quitté (Quit: ZNC 1.7.5+deb4 - https://znc.in) 2021-10-17 23:13:42 --> bixilon (~bixilon@node-3.bixilon.de) a rejoint #mcdevs 2021-10-18 00:04:26 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 265 seconds) 2021-10-18 03:16:41 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-18 04:26:39 <-- rymiel (~rymiel@arch-houju.rymiel.space) a quitté (Quit: quit) 2021-10-18 04:27:09 --> rymiel (~rymiel@arch-houju.rymiel.space) a rejoint #mcdevs 2021-10-18 04:49:07 <-- xlei (akans@pool-68-129-84-118.nycmny.fios.verizon.net) a quitté (Ping timeout: 265 seconds) 2021-10-18 04:58:36 --> xlei (znc@pool-68-129-84-118.nycmny.fios.verizon.net) a rejoint #mcdevs 2021-10-18 06:03:23 <-- xlei (znc@pool-68-129-84-118.nycmny.fios.verizon.net) a quitté (Ping timeout: 264 seconds) 2021-10-18 06:12:50 --> xlei (znc@pool-68-129-84-118.nycmny.fios.verizon.net) a rejoint #mcdevs 2021-10-18 06:30:37 <-- obw (~offbeatwi@2001:bc8:608:131::1) a quitté (*.net *.split) 2021-10-18 06:30:37 <-- tanner (~tanner@tilde.town) a quitté (*.net *.split) 2021-10-18 06:30:37 <-- jamestmartin (james@jtmar.me) a quitté (*.net *.split) 2021-10-18 06:30:47 --> jamestmartin (james@jtmar.me) a rejoint #mcdevs 2021-10-18 06:31:29 --> obw (~offbeatwi@platypus.offbeatwit.ch) a rejoint #mcdevs 2021-10-18 06:31:42 --> tanner (~tanner@tilde.town) a rejoint #mcdevs 2021-10-18 06:43:11 <-- \\ (~\0x5c@miaow/nonantedeux) a quitté (Quit: bye) 2021-10-18 06:43:24 --> \\ (~\0x5c@miaow/nonantedeux) a rejoint #mcdevs 2021-10-18 08:03:55 <-- xlei (znc@pool-68-129-84-118.nycmny.fios.verizon.net) a quitté (Ping timeout: 265 seconds) 2021-10-18 10:15:21 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-18 12:44:46 --> xlei (znc@pool-68-129-84-118.nycmny.fios.verizon.net) a rejoint #mcdevs 2021-10-18 13:01:28 --> The_Red_Freak (~The_Red_F@212095023008.public.telering.at) a rejoint #mcdevs 2021-10-18 21:31:28 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-18 21:58:27 <-- The_Red_Freak (~The_Red_F@212095023008.public.telering.at) a quitté (Read error: Connection reset by peer) 2021-10-18 23:30:02 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: Client closed) 2021-10-18 23:30:17 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-19 00:04:23 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 258 seconds) 2021-10-19 04:22:58 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-19 08:26:14 --> Bash09 (~Bash@150.203.66.28) a rejoint #mcdevs 2021-10-19 08:32:58 <-- wizards (~guest@user/wizards) a quitté (Ping timeout: 252 seconds) 2021-10-19 08:34:42 --> wizards (~guest@user/wizards) a rejoint #mcdevs 2021-10-19 09:36:23 --> The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:d50c:86f5:e68e:baf1) a rejoint #mcdevs 2021-10-19 12:25:34 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-19 14:07:51 <-- Bash09 (~Bash@150.203.66.28) a quitté (Quit: Leaving) 2021-10-19 20:39:41 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 265 seconds) 2021-10-19 21:00:58 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-19 21:57:43 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-19 22:02:17 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 258 seconds) 2021-10-19 22:03:19 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-19 23:05:11 <-- The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:d50c:86f5:e68e:baf1) a quitté (Read error: Connection reset by peer) 2021-10-19 23:30:25 --> ZacSharp35 (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-19 23:34:15 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 256 seconds) 2021-10-20 00:04:11 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 258 seconds) 2021-10-20 00:23:36 -- ZacSharp35 est maintenant connu sous le nom ZacSharp 2021-10-20 00:59:23 <-- Dykam (Dykam@dykam.nl) a quitté (Ping timeout: 265 seconds) 2021-10-20 03:43:41 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-20 03:44:36 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 258 seconds) 2021-10-20 04:12:47 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-20 04:17:30 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 260 seconds) 2021-10-20 04:30:08 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-20 05:08:53 <-- dexter0 (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a quitté (Quit: exit) 2021-10-20 05:09:19 --> dexter0 (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-10-20 05:11:15 <-- dexter0 (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a quitté (Client Quit) 2021-10-20 05:12:33 --> dexter0 (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-10-20 05:16:14 <-- dexter0 (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a quitté (Client Quit) 2021-10-20 06:22:35 --> dexter0 (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-10-20 06:23:19 <-- dexter0 (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a quitté (Remote host closed the connection) 2021-10-20 06:25:30 --> dexter0 (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-10-20 06:46:05 --> The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:98c6:593b:f556:f78d) a rejoint #mcdevs 2021-10-20 08:56:11 --> bixilon_ (~bixilon@node-3.bixilon.de) a rejoint #mcdevs 2021-10-20 08:56:50 --> Luck8 (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2021-10-20 08:57:52 --> haykam_ (~haykam@user/haykam) a rejoint #mcdevs 2021-10-20 08:58:04 --> Sainan- (~Sainan@static.222.155.69.159.clients.your-server.de) a rejoint #mcdevs 2021-10-20 08:59:32 --> killmePI (~killmePI@2a02-a45e-7b10-1-ca0a-a9ff-feef-5c4a.fixed6.kpn.net) a rejoint #mcdevs 2021-10-20 09:00:22 --> some02_ (~cat@h-98-128-128-173.A351.priv.bahnhof.se) a rejoint #mcdevs 2021-10-20 09:09:50 <-- bixilon (~bixilon@node-3.bixilon.de) a quitté (Ping timeout: 260 seconds) 2021-10-20 09:09:50 <-- Lumi (~lumi@2001:470:69fc:105::506) a quitté (Ping timeout: 260 seconds) 2021-10-20 09:09:50 <-- pitust[m] (~pitustmat@2001:470:69fc:105::ba1d) a quitté (Ping timeout: 260 seconds) 2021-10-20 09:09:50 <-- timetheory[m] (~timetheor@2001:470:69fc:105::1:1577) a quitté (Ping timeout: 260 seconds) 2021-10-20 09:09:50 <-- Sainan (~Sainan@static.222.155.69.159.clients.your-server.de) a quitté (Ping timeout: 260 seconds) 2021-10-20 09:09:50 <-- some02 (~cat@h-98-128-128-173.A351.priv.bahnhof.se) a quitté (Ping timeout: 260 seconds) 2021-10-20 09:09:50 <-- haykam (~haykam@user/haykam) a quitté (Ping timeout: 260 seconds) 2021-10-20 09:09:51 <-- killme (~killmePI@2a02-a45e-7b10-1-ca0a-a9ff-feef-5c4a.fixed6.kpn.net) a quitté (Ping timeout: 260 seconds) 2021-10-20 09:09:51 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Ping timeout: 260 seconds) 2021-10-20 09:09:51 -- bixilon_ est maintenant connu sous le nom bixilon 2021-10-20 09:09:51 -- Luck8 est maintenant connu sous le nom Luck 2021-10-20 09:11:57 --> TkTech8 (~TkTech@24-52-219-213.cable.teksavvy.com) a rejoint #mcdevs 2021-10-20 09:13:54 --> timetheory[m] (~timetheor@2001:470:69fc:105::1:1577) a rejoint #mcdevs 2021-10-20 09:14:10 <-- TkTech (~TkTech@24-52-219-213.cable.teksavvy.com) a quitté (Ping timeout: 265 seconds) 2021-10-20 09:14:11 -- TkTech8 est maintenant connu sous le nom TkTech 2021-10-20 09:15:18 --> Lumi (~lumi@2001:470:69fc:105::506) a rejoint #mcdevs 2021-10-20 09:16:01 --> pitust[m] (~pitustmat@2001:470:69fc:105::ba1d) a rejoint #mcdevs 2021-10-20 10:28:04 --> Bash09 (~Bash@150.203.66.28) a rejoint #mcdevs 2021-10-20 11:34:53 <-- some02_ (~cat@h-98-128-128-173.A351.priv.bahnhof.se) a quitté #mcdevs 2021-10-20 11:44:28 --> sudden (~cat@user/sudden) a rejoint #mcdevs 2021-10-20 11:59:25 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-20 14:01:41 <-- snep (craftxbox@2001:bc8:654:1c02::1) a quitté (Quit: znc disconnected -- this shouldnt happen!) 2021-10-20 14:03:20 --> craftxbox (craftxbox@2001:bc8:654:1c02::1) a rejoint #mcdevs 2021-10-20 14:04:47 -- craftxbox est maintenant connu sous le nom snep 2021-10-20 14:45:05 <-- Bash09 (~Bash@150.203.66.28) a quitté (Remote host closed the connection) 2021-10-20 17:05:02 --> Not-4bf1 (~notifico@ec2-52-3-50-241.compute-1.amazonaws.com) a rejoint #mcdevs 2021-10-20 17:05:02 Not-4bf1 [McUpdates] Minecraft snapshot 21w42a has just been published to the launcher! 2021-10-20 17:05:04 Not-4bf1 [McUpdates] Data generated by 21w42a: https://apimon.de/mcdata/21w42a/ 2021-10-20 17:13:10 Not-4bf1 [Burger] New data now avaliable for 21w42a: 2021-10-20 17:13:12 Not-4bf1 [Burger] Diff from 21w41a: https://pokechu22.github.io/Burger/diff_21w41a_21w42a.html (https://pokechu22.github.io/Burger/diff_21w41a_21w42a.json) 2021-10-20 17:13:13 Not-4bf1 [Burger] Full data: https://pokechu22.github.io/Burger/21w42a.html (https://pokechu22.github.io/Burger/21w42a.json) 2021-10-20 17:16:09 Geolykt Already snapshot day? 2021-10-20 19:23:23 bswartz Looks like it 2021-10-20 19:23:26 bswartz The changes aren't much 2021-10-20 19:23:34 bswartz I wonder if we're super close to RC 2021-10-20 21:20:33 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-20 22:41:55 <-- The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:98c6:593b:f556:f78d) a quitté (Read error: Connection reset by peer) 2021-10-20 22:52:41 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 258 seconds) 2021-10-20 23:09:51 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-20 23:16:15 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 260 seconds) 2021-10-20 23:30:29 --> ZacSharp93 (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-20 23:31:24 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Quit: Leaving) 2021-10-20 23:34:09 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 256 seconds) 2021-10-20 23:36:23 -- ZacSharp93 est maintenant connu sous le nom Zacsharp 2021-10-21 00:00:23 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-21 00:04:49 <-- rymiel (~rymiel@arch-houju.rymiel.space) a quitté (Quit: quit) 2021-10-21 00:05:21 --> rymiel (~rymiel@arch-houju.rymiel.space) a rejoint #mcdevs 2021-10-21 01:08:48 <-- xlei (znc@pool-68-129-84-118.nycmny.fios.verizon.net) a quitté (Read error: Connection reset by peer) 2021-10-21 01:11:41 --> xlei (znc@pool-68-129-84-118.nycmny.fios.verizon.net) a rejoint #mcdevs 2021-10-21 02:17:57 <-- Zacsharp (~ZacSharp@user/zacsharp) a quitté (Quit: Zacsharp) 2021-10-21 02:59:44 <-- deltab (~deltab@user/deltab) a quitté (Ping timeout: 246 seconds) 2021-10-21 03:05:07 --> deltab (~deltab@user/deltab) a rejoint #mcdevs 2021-10-21 03:30:02 <-- deltab (~deltab@user/deltab) a quitté (Ping timeout: 260 seconds) 2021-10-21 03:58:23 --> deltab (~deltab@user/deltab) a rejoint #mcdevs 2021-10-21 04:02:05 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 260 seconds) 2021-10-21 04:03:50 <-- deltab (~deltab@user/deltab) a quitté (Ping timeout: 260 seconds) 2021-10-21 04:14:15 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-21 04:30:18 --> deltab (~deltab@user/deltab) a rejoint #mcdevs 2021-10-21 04:35:22 <-- deltab (~deltab@user/deltab) a quitté (Ping timeout: 260 seconds) 2021-10-21 05:13:53 --> deltab (~deltab@user/deltab) a rejoint #mcdevs 2021-10-21 06:27:09 --> The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:65e1:d4c5:c57c:b2d6) a rejoint #mcdevs 2021-10-21 08:07:32 --> craftxbox (craftxbox@2001:bc8:654:1c02::1) a rejoint #mcdevs 2021-10-21 08:07:36 <-- snep (craftxbox@2001:bc8:654:1c02::1) a quitté (Ping timeout: 245 seconds) 2021-10-21 11:29:08 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-21 13:10:48 --> Bash09 (~Bash@150.203.66.28) a rejoint #mcdevs 2021-10-21 14:17:37 <-- Bash09 (~Bash@150.203.66.28) a quitté (Quit: Leaving) 2021-10-21 16:45:08 --> The_Red_Freak_ (~The_Red_F@2001:4bca:1038:d783:65e1:d4c5:c57c:b2d6) a rejoint #mcdevs 2021-10-21 16:47:42 <-- The_Red_Freak_ (~The_Red_F@2001:4bca:1038:d783:65e1:d4c5:c57c:b2d6) a quitté (Client Quit) 2021-10-21 17:55:35 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 264 seconds) 2021-10-21 18:08:18 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-21 18:11:19 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Quit: Leaving) 2021-10-21 18:16:40 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 260 seconds) 2021-10-21 18:26:06 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-21 18:32:30 -- craftxbox est maintenant connu sous le nom snep 2021-10-21 19:38:09 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-21 21:09:44 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-21 21:17:34 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 265 seconds) 2021-10-21 21:30:02 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-21 22:42:11 <-- wizards (~guest@user/wizards) a quitté (Ping timeout: 245 seconds) 2021-10-21 22:44:02 --> wizards (~guest@user/wizards) a rejoint #mcdevs 2021-10-21 23:07:49 <-- The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:65e1:d4c5:c57c:b2d6) a quitté (Read error: Connection reset by peer) 2021-10-21 23:29:46 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-21 23:30:20 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-22 00:03:26 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Ping timeout: 260 seconds) 2021-10-22 00:55:28 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a rejoint #mcdevs 2021-10-22 00:55:47 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a quitté (Client Quit) 2021-10-22 00:56:22 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a rejoint #mcdevs 2021-10-22 00:58:33 --> Bash09 (~Bash@150.203.66.28) a rejoint #mcdevs 2021-10-22 01:03:31 Jakobg1215 Are packets encrypted then compressed or compressed then encrypted? 2021-10-22 01:08:04 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-22 01:08:34 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a rejoint #mcdevs 2021-10-22 01:10:14 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-22 01:10:32 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a rejoint #mcdevs 2021-10-22 01:12:12 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-22 01:12:30 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a rejoint #mcdevs 2021-10-22 01:14:11 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-22 01:14:28 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a rejoint #mcdevs 2021-10-22 01:16:09 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-22 01:17:01 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a rejoint #mcdevs 2021-10-22 01:18:41 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-22 01:19:55 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a rejoint #mcdevs 2021-10-22 01:21:35 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-22 01:21:54 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a rejoint #mcdevs 2021-10-22 01:23:33 SpaceManiac Jakobg1215: compressed then encrypted 2021-10-22 01:24:00 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-22 01:24:35 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a rejoint #mcdevs 2021-10-22 01:26:04 Jakobg1215 Thanks 2021-10-22 01:26:18 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-2852-8e68-7fe1-5d72.res6.spectrum.com) a quitté #mcdevs 2021-10-22 03:13:50 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-22 03:41:37 -- Rhvs est maintenant connu sous le nom Rhys 2021-10-22 06:00:09 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-22 06:29:53 --> The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:5179:1ae9:dc5d:9612) a rejoint #mcdevs 2021-10-22 06:48:40 <-- stilbruch1 (~stilbruch@157.245.122.124) a quitté (Quit: goodbye) 2021-10-22 06:49:34 --> stilbruch (~stilbruch@157.245.122.124) a rejoint #mcdevs 2021-10-22 06:53:08 <-- stilbruch (~stilbruch@157.245.122.124) a quitté (Client Quit) 2021-10-22 06:53:32 --> stilbruch (~stilbruch@157.245.122.124) a rejoint #mcdevs 2021-10-22 07:02:27 <-- stilbruch (~stilbruch@157.245.122.124) a quitté (Quit: goodbye) 2021-10-22 08:10:27 --> TkTech6 (~TkTech@24-52-219-213.cable.teksavvy.com) a rejoint #mcdevs 2021-10-22 08:11:46 <-- TkTech (~TkTech@24-52-219-213.cable.teksavvy.com) a quitté (Ping timeout: 258 seconds) 2021-10-22 08:11:46 -- TkTech6 est maintenant connu sous le nom TkTech 2021-10-22 10:17:54 <-- Bash09 (~Bash@150.203.66.28) a quitté (Remote host closed the connection) 2021-10-22 11:02:36 <-- AndrewPH (~Andrew@2606:db00:0:62e::b) a quitté (Ping timeout: 245 seconds) 2021-10-22 11:09:41 --> AndrewPH (~Andrew@2606:db00:0:62e::b) a rejoint #mcdevs 2021-10-22 12:11:07 --> belak51 (~belak@user/belak) a rejoint #mcdevs 2021-10-22 12:12:08 <-- belak (~belak@user/belak) a quitté (Ping timeout: 268 seconds) 2021-10-22 12:12:41 -- belak51 est maintenant connu sous le nom belak 2021-10-22 12:28:43 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Quit: leaving) 2021-10-22 12:29:43 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2021-10-22 13:10:03 -- Rhys est maintenant connu sous le nom Guest5041 2021-10-22 13:10:03 <-- Guest5041 (Rhys@help.lux.melted.me) a quitté (Killed (sodium.libera.chat (Nickname regained by services))) 2021-10-22 13:10:15 --> Rhvs (Rhys@help.lux.melted.me) a rejoint #mcdevs 2021-10-22 16:03:03 <-- dav1d (~dav1d@user/dav1d) a quitté (Ping timeout: 250 seconds) 2021-10-22 16:07:16 --> dav1d (~dav1d@user/dav1d) a rejoint #mcdevs 2021-10-22 17:48:45 --> stilbruch (~stilbruch@157.245.122.124) a rejoint #mcdevs 2021-10-22 17:53:29 --> daswf8526 (~daswf852@user/daswf852) a rejoint #mcdevs 2021-10-22 17:54:33 <-- daswf852 (~daswf852@user/daswf852) a quitté (Read error: Connection reset by peer) 2021-10-22 17:54:33 -- daswf8526 est maintenant connu sous le nom daswf852 2021-10-22 19:29:53 <-- wizards (~guest@user/wizards) a quitté (Ping timeout: 258 seconds) 2021-10-22 19:31:42 --> wizards (~guest@user/wizards) a rejoint #mcdevs 2021-10-22 20:52:56 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Quit: You're not just a regular moron. You were designed to be a moron.) 2021-10-22 20:56:16 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2021-10-22 21:34:09 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-22 22:20:32 <-- The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:5179:1ae9:dc5d:9612) a quitté (Read error: Connection reset by peer) 2021-10-22 23:30:25 --> ZacSharp63 (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-22 23:31:26 <-- Byteflux (~byte@byteflux.net) a quitté (*.net *.split) 2021-10-22 23:31:26 <-- ashka (~ashka@user/ashka) a quitté (*.net *.split) 2021-10-22 23:33:06 --> Byteflux (~byte@byteflux.net) a rejoint #mcdevs 2021-10-22 23:33:20 --> ashka (~ashka@user/ashka) a rejoint #mcdevs 2021-10-22 23:33:57 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 256 seconds) 2021-10-22 23:36:03 -- ZacSharp63 est maintenant connu sous le nom ZacSharp 2021-10-23 00:08:05 <-- daswf852 (~daswf852@user/daswf852) a quitté (Ping timeout: 260 seconds) 2021-10-23 01:41:24 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-23 01:47:56 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-23 01:48:04 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Client Quit) 2021-10-23 06:25:59 --> The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:2c59:b927:36f8:5575) a rejoint #mcdevs 2021-10-23 07:21:16 --> daswf852 (~daswf852@user/daswf852) a rejoint #mcdevs 2021-10-23 17:26:08 <-- daswf852 (~daswf852@user/daswf852) a quitté (Ping timeout: 244 seconds) 2021-10-23 18:10:12 --> daswf852 (~daswf852@user/daswf852) a rejoint #mcdevs 2021-10-23 22:47:59 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-23 23:30:24 --> ZacSharp95 (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-23 23:34:25 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 256 seconds) 2021-10-24 00:54:25 <-- AndrewPH (~Andrew@2606:db00:0:62e::b) a quitté (Ping timeout: 260 seconds) 2021-10-24 01:20:52 <-- The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:2c59:b927:36f8:5575) a quitté (Read error: Connection reset by peer) 2021-10-24 01:41:05 <-- ZacSharp95 (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp95) 2021-10-24 02:54:34 <-- rymiel (~rymiel@arch-houju.rymiel.space) a quitté (Quit: quit) 2021-10-24 02:55:03 --> rymiel (~rymiel@arch-houju.rymiel.space) a rejoint #mcdevs 2021-10-24 09:10:35 --> TkTech0 (~TkTech@24-52-219-213.cable.teksavvy.com) a rejoint #mcdevs 2021-10-24 09:11:10 <-- TkTech (~TkTech@24-52-219-213.cable.teksavvy.com) a quitté (Ping timeout: 258 seconds) 2021-10-24 09:11:10 -- TkTech0 est maintenant connu sous le nom TkTech 2021-10-24 11:52:36 --> The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:874:8587:c7e9:eff1) a rejoint #mcdevs 2021-10-24 11:52:37 <-- mdcfe (~mdcfe@lemons.mdcfe.dev) a quitté (Remote host closed the connection) 2021-10-24 11:52:59 --> mdcfe (~mdcfe@lemons.mdcfe.dev) a rejoint #mcdevs 2021-10-24 11:55:57 <-- The_Red_Freak (~The_Red_F@2001:4bca:1038:d783:874:8587:c7e9:eff1) a quitté (Client Quit) 2021-10-24 11:57:23 --> The_Red_Freak (~The_Red_F@ipv4.thefreaks.eu) a rejoint #mcdevs 2021-10-24 14:23:20 --> greatgodoffire (~greatgodo@185.105.41.108) a rejoint #mcdevs 2021-10-24 14:24:50 greatgodoffire Hey, I already asked that but I don't think I got an answer: In the login sequence on https://wiki.vg/Protocol_FAQ#What.27s_the_normal_login_sequence_for_a_client.3F it says a entity status packet is send but it doesn't say which status it should be. Does someone know something about that? 2021-10-24 14:28:38 --> greatgod1ffire (~greatgodo@185.105.41.108) a rejoint #mcdevs 2021-10-24 14:28:39 <-- greatgodoffire (~greatgodo@185.105.41.108) a quitté (Read error: Connection reset by peer) 2021-10-24 18:53:59 --> AndrewPH (~Andrew@2606:db00:0:62e::b) a rejoint #mcdevs 2021-10-24 19:18:34 --> OoLunar (~OoLunar@207.244.227.215) a rejoint #mcdevs 2021-10-24 19:23:15 OoLunar I'm attempting to implement a MC server in C#, specifically just the Server List Ping. I'd like to think that I have the response down correctly, as the client then sends over a random number, as specified in https://wiki.vg/Server_List_Ping#Ping. Now, apparently sending back a unix timestamp isn't valid, since my server is forever stuck in the 2021-10-24 19:23:15 OoLunar "pinging" stage. Here's the code I'm using: https://code.forsaken-borders.net/cadoyafaqi.cs 2021-10-24 19:29:41 OoLunar Apparently I misread the docs as the server is supposed to send back the number received, not create it's own. Server list still isn't working, but least I know I'm a step closer 2021-10-24 19:40:37 pokechu22 greatgod1ffire: It's for the op permission level 2021-10-24 21:20:24 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-24 21:30:30 greatgod1ffire pokechu22: thanks 2021-10-24 21:30:34 <-- greatgod1ffire (~greatgodo@185.105.41.108) a quitté (Quit: leaving) 2021-10-24 22:47:42 <-- OoLunar (~OoLunar@207.244.227.215) a quitté (Quit: Client closed) 2021-10-24 23:30:23 --> ZacSharp57 (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-24 23:34:19 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 256 seconds) 2021-10-24 23:36:33 -- ZacSharp57 est maintenant connu sous le nom ZacSharp 2021-10-25 00:17:22 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (Ping timeout: 260 seconds) 2021-10-25 00:23:52 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-25 07:00:25 <-- chibill[m] (~chibillm]@2001:470:69fc:105::5ce) a quitté (*.net *.split) 2021-10-25 07:00:26 <-- mbaxter (mbaxter@bnc.io) a quitté (*.net *.split) 2021-10-25 07:00:26 <-- DrinkyBird (~drinkybir@sprawl.drinkybird.net) a quitté (*.net *.split) 2021-10-25 07:00:34 --> DrinkyBird (~drinkybir@sprawl.drinkybird.net) a rejoint #mcdevs 2021-10-25 07:00:55 --> mbaxter (mbaxter@bnc.io) a rejoint #mcdevs 2021-10-25 07:03:08 --> chibill[m] (~chibillm]@2001:470:69fc:105::5ce) a rejoint #mcdevs 2021-10-25 10:20:55 <-- yosafbridge` (~yosafbrid@static.38.6.217.95.clients.your-server.de) a quitté (Quit: Leaving) 2021-10-25 10:40:40 --> yosafbridge (~yosafbrid@static.38.6.217.95.clients.your-server.de) a rejoint #mcdevs 2021-10-25 10:59:22 --> Bash09 (~Bash@150.203.66.28) a rejoint #mcdevs 2021-10-25 11:02:44 --> The_Red_Freak_ (~The_Red_F@2001:4bca:1038:d783:75cd:663f:8232:9e6d) a rejoint #mcdevs 2021-10-25 11:03:39 <-- The_Red_Freak_ (~The_Red_F@2001:4bca:1038:d783:75cd:663f:8232:9e6d) a quitté (Client Quit) 2021-10-25 12:43:22 <-- Bash09 (~Bash@150.203.66.28) a quitté (Quit: Leaving) 2021-10-25 16:43:26 <-- ashka (~ashka@user/ashka) a quitté (Ping timeout: 260 seconds) 2021-10-25 16:53:03 --> ashka (~ashka@user/ashka) a rejoint #mcdevs 2021-10-25 19:54:57 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2021-10-25 21:31:12 --> greatgodoffire (~greatgodo@tmo-117-17.customers.d1-online.com) a rejoint #mcdevs 2021-10-25 21:46:30 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-25 22:10:42 --> OoLunar (~OoLunar@207.244.227.215) a rejoint #mcdevs 2021-10-25 22:33:45 greatgodoffire Hello. Do I have to fill the Tags packet with every tag the server usually sends? 2021-10-25 22:57:34 pokechu22 Some tags are required for the game to behave properly (e.g. if you don't send the right one for water, swimming won't work). It's easier to send them all, though you can probably get away with not sending some. 2021-10-25 22:59:28 greatgodoffire My problem is that the server i am writing should be multi-version and I don't know which tags to use for each version. 2021-10-25 23:28:14 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-25 23:28:39 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-25 23:33:46 pokechu22 You can probably just use the tags for the latest version, filtering bout blocks/items that don't exist in older versions. I don't think there have been any cases where something was added to a tag when it existed in a prior version, and sending new tags that didn't exist in older versions won't cause any issues 2021-10-25 23:41:19 greatgodoffire Ok. Thanks. 2021-10-25 23:41:25 <-- greatgodoffire (~greatgodo@tmo-117-17.customers.d1-online.com) a quitté (Quit: leaving) 2021-10-25 23:47:28 OoLunar When will the ping packet return no bytes? https://wiki.vg/Server_List_Ping#Ping 2021-10-25 23:47:47 OoLunar The packet id is 1, but there's no payload 2021-10-25 23:51:23 <-- OoLunar (~OoLunar@207.244.227.215) a quitté (Quit: Client closed) 2021-10-25 23:57:45 --> OoLunar (~OoLunar@207.244.227.215) a rejoint #mcdevs 2021-10-26 00:22:05 <-- l4mRh4X0r (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a quitté (Ping timeout: 246 seconds) 2021-10-26 00:24:37 OoLunar Turns out I was missing the handshake packet 2021-10-26 00:33:03 --> l4mRh4X0r (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a rejoint #mcdevs 2021-10-26 00:46:12 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-26 05:04:01 <-- OoLunar (~OoLunar@207.244.227.215) a quitté (Ping timeout: 256 seconds) 2021-10-26 05:36:21 --> Bash09 (~Bash@150.203.66.28) a rejoint #mcdevs 2021-10-26 05:42:54 Bash09 When there's NBT data in packets, do you have to determine the length/end of that data by interpreting the NBT? Like e.g. I can't really just get the other data in the chunk packets without processing the NBT? 2021-10-26 07:30:46 pokechu22 Yes, you do need to process the NBT; there isn't any length prefix on it that makes it easier to skip it unfortunately 2021-10-26 07:34:20 Bash09 Dang, unlucky. Thank you! 2021-10-26 08:33:25 <-- wizards (~guest@user/wizards) a quitté (Ping timeout: 260 seconds) 2021-10-26 08:35:05 --> wizards (~guest@user/wizards) a rejoint #mcdevs 2021-10-26 12:08:14 --> The_Red_Freak_ (~The_Red_F@2001:4bca:1093:8b88:d5df:47b1:d595:f9a2) a rejoint #mcdevs 2021-10-26 13:14:36 <-- Bash09 (~Bash@150.203.66.28) a quitté (Quit: Leaving) 2021-10-26 13:45:22 <-- SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a quitté (Ping timeout: 252 seconds) 2021-10-26 13:47:50 --> SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-10-26 19:42:46 <-- xlei (znc@pool-68-129-84-118.nycmny.fios.verizon.net) a quitté (Ping timeout: 260 seconds) 2021-10-26 20:16:05 --> xlei (znc@pool-68-129-84-118.nycmny.fios.verizon.net) a rejoint #mcdevs 2021-10-26 20:49:42 bswartz Bash09: If you just want to skip over some NBT, it's not _that_ hard to write a skipNBT() funciton that parses it and throw the results in the trash 2021-10-26 20:50:05 bswartz It's way less than half the effort of writing a full NBT parser that preserves the results 2021-10-26 21:18:15 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-26 23:29:39 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-26 23:30:09 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-27 00:18:53 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 256 seconds) 2021-10-27 00:19:57 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2021-10-27 00:45:39 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2021-10-27 01:06:07 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 01:18:35 Jakobg1215 I need help implementing packet encryption. I have read the doc but when I send the data the client will disconnect. I am using nodejs. 2021-10-27 01:19:41 pokechu22 Were things working before you tried implementing encryption? 2021-10-27 01:19:41 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 01:20:15 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 01:21:55 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 01:22:12 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 01:23:52 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 01:24:44 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 01:26:24 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 01:26:41 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 01:28:21 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 01:28:38 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 01:28:38 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 01:29:27 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 01:32:43 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 01:32:49 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 01:40:44 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 01:41:31 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 01:42:45 Jakobg1215 Yes, I have compressed and uncompressed packets working. 2021-10-27 01:44:25 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 01:44:42 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 01:44:42 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 01:45:38 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 01:45:38 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 01:46:28 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:04:38 pokechu22 If you follow the steps on https://wiki.vg/Debugging do you get any more useful info about why the client is disconnecting? 2021-10-27 02:11:19 Jakobg1215 Its mostly read errors. I think I am encrpting it wrong but I don't know were. 2021-10-27 02:14:12 pokechu22 One thing you might be doing is resetting the encryption state for each packet, which you shouldn't do; the same encryption state is used for the whole stream 2021-10-27 02:14:13 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:14:38 <-- The_Red_Freak_ (~The_Red_F@2001:4bca:1093:8b88:d5df:47b1:d595:f9a2) a quitté (Read error: Connection reset by peer) 2021-10-27 02:14:40 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:15:06 pokechu22 One thing you might be doing is resetting the encryption state for each packet, which you shouldn't do; the same encryption state is used for the whole stream 2021-10-27 02:15:07 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:15:43 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:15:48 pokechu22 One thing you might be doing is resetting the encryption state for each packet, which you shouldn't do; the same encryption state is used for the whole stream 2021-10-27 02:15:48 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:16:06 pokechu22 ... ok, this is weird, that's either a very bad connection, or it's failing when messages are sent? 2021-10-27 02:16:45 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:17:13 pokechu22 One thing you might be doing is resetting the encryption state for each packet, which you shouldn't do; the same encryption state is used for the whole stream 2021-10-27 02:17:13 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:17:20 pokechu22 I think it must be messages? 2021-10-27 02:17:48 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:20:35 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:20:54 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:22:35 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:22:52 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:24:33 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:24:49 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:26:01 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:26:48 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:26:49 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:27:08 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:29:55 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:30:15 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:31:12 Jakobg1215 I can't keep a stable connection to the chat, so if you can message me on discord Jakobg1215#2245 2021-10-27 02:33:31 bswartz Heh, I think we figured why he can't connect to a minecraft server 2021-10-27 02:33:32 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:33:45 bswartz If you can't stay on IRC for more than 5 seconds then minecraft is going to be hard for you 2021-10-27 02:34:19 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:35:03 Jakobg1215 I can't keep a stable connection to the chat, so if you can message me on discord Jakobg1215#2245 2021-10-27 02:36:07 bswartz Jakobg1215: It's probably an IPv6 problem, if you have IPv4, use that instead 2021-10-27 02:36:24 bswartz Use irc.ipv4.libera.chat 2021-10-27 02:36:24 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:37:00 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:37:17 bswartz Jakobg1215: use irc.ipv4.libera.chat to connect 2021-10-27 02:37:25 bswartz It will probably be more stable for you 2021-10-27 02:37:25 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:38:21 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:38:58 Jakobg1215 bswartz: The site does not want to load for me. 2021-10-27 02:40:38 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:40:55 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:42:36 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:42:53 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:44:34 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Remote host closed the connection) 2021-10-27 02:44:43 --> Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:54:31 --> jakob (~jakob@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 02:55:12 <-- Jakobg1215 (~Jakobg121@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté #mcdevs 2021-10-27 02:55:12 <-- jakob (~jakob@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Read error: Connection reset by peer) 2021-10-27 02:57:11 --> jakob (~jakob@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 03:02:18 jakob Not sure if this will work but I am using a diffent client 2021-10-27 03:04:05 -- jakob est maintenant connu sous le nom Jakobg1215 2021-10-27 03:08:44 Jakobg1215 If pokechu22 if your still there what do you mean by resetting the encryption state? 2021-10-27 03:09:30 pokechu22 If you encrypt each packet and then create a new cipher object with the original key, that won't work... but I'm not entirely sure how to explain it 2021-10-27 03:09:30 <-- Jakobg1215 (~jakob@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Read error: Connection reset by peer) 2021-10-27 03:10:29 --> Jakobg1215 (~jakob@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 03:11:11 <-- Jakobg1215 (~jakob@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Client Quit) 2021-10-27 03:11:22 --> Jakobg1215 (~jakob@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 03:17:53 Jakobg1215 Never mind I figured out what you ment. 2021-10-27 03:25:18 Jakobg1215 Thank you pokechu22! 2021-10-27 03:26:05 pokechu22 Glad to help 2021-10-27 03:26:05 <-- Jakobg1215 (~jakob@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Read error: Connection reset by peer) 2021-10-27 03:29:46 --> Jakobg1215 (~jakob@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a rejoint #mcdevs 2021-10-27 04:28:38 <-- Jakobg1215 (~jakob@2603-6000-ca40-01e7-a012-6486-e04b-0f15.res6.spectrum.com) a quitté (Quit: Konversation terminated!) 2021-10-27 11:58:47 --> The_Red_Freak_ (~The_Red_F@2001:4bca:1093:8b88:8d7e:49ce:188d:2a52) a rejoint #mcdevs 2021-10-27 13:12:19 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (*.net *.split) 2021-10-27 13:12:19 <-- belak (~belak@user/belak) a quitté (*.net *.split) 2021-10-27 13:12:19 <-- The_Red_Freak (~The_Red_F@ipv4.thefreaks.eu) a quitté (*.net *.split) 2021-10-27 13:12:19 <-- Not-4bf1 (~notifico@ec2-52-3-50-241.compute-1.amazonaws.com) a quitté (*.net *.split) 2021-10-27 13:12:19 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (*.net *.split)