48 lines
1.3 KiB
Java
48 lines
1.3 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* io.netty.buffer.ByteBuf
|
|
*/
|
|
package net.minecraft.network.protocol.ping;
|
|
|
|
import io.netty.buffer.ByteBuf;
|
|
import net.minecraft.network.codec.StreamCodec;
|
|
import net.minecraft.network.protocol.Packet;
|
|
import net.minecraft.network.protocol.PacketType;
|
|
import net.minecraft.network.protocol.ping.PingPacketTypes;
|
|
import net.minecraft.network.protocol.ping.ServerPingPacketListener;
|
|
|
|
public class ServerboundPingRequestPacket
|
|
implements Packet<ServerPingPacketListener> {
|
|
public static final StreamCodec<ByteBuf, ServerboundPingRequestPacket> STREAM_CODEC = Packet.codec(ServerboundPingRequestPacket::write, ServerboundPingRequestPacket::new);
|
|
private final long time;
|
|
|
|
public ServerboundPingRequestPacket(long time) {
|
|
this.time = time;
|
|
}
|
|
|
|
private ServerboundPingRequestPacket(ByteBuf input) {
|
|
this.time = input.readLong();
|
|
}
|
|
|
|
private void write(ByteBuf output) {
|
|
output.writeLong(this.time);
|
|
}
|
|
|
|
@Override
|
|
public PacketType<ServerboundPingRequestPacket> type() {
|
|
return PingPacketTypes.SERVERBOUND_PING_REQUEST;
|
|
}
|
|
|
|
@Override
|
|
public void handle(ServerPingPacketListener listener) {
|
|
listener.handlePingRequest(this);
|
|
}
|
|
|
|
public long getTime() {
|
|
return this.time;
|
|
}
|
|
}
|
|
|