Record Class HandshakeC2SPacket
java.lang.Object
java.lang.Record
net.minecraft.network.packet.c2s.handshake.HandshakeC2SPacket
- Record Components:
protocolVersion
-address
-port
-intendedState
-
- All Implemented Interfaces:
Packet<ServerHandshakePacketListener>
public record HandshakeC2SPacket(int protocolVersion, String address, int port, ConnectionIntent intendedState)
extends Record
implements Packet<ServerHandshakePacketListener>
- Mappings:
Namespace Name official afj
intermediary net/minecraft/class_2889
named net/minecraft/network/packet/c2s/handshake/HandshakeC2SPacket
official a
intermediary comp_1563
named protocolVersion
official b
intermediary comp_1564
named address
official c
intermediary comp_1565
named port
official d
intermediary comp_1566
named intendedState
-
Field Summary
Modifier and TypeFieldDescriptionprivate final String
The field for theaddress
record component.private final ConnectionIntent
The field for theintendedState
record component.private static final int
private final int
The field for theport
record component.private final int
The field for theprotocolVersion
record component. -
Constructor Summary
ConstructorDescriptionHandshakeC2SPacket
(int int2, String string, int int3, ConnectionIntent connectionIntent) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionaddress()
Returns the value of theaddress
record component.void
apply
(ServerHandshakePacketListener serverHandshakePacketListener) final boolean
Indicates whether some other object is "equal to" this one.Returns a new network state to transition to, ornull
to indicate no state change.final int
hashCode()
Returns a hash code value for this object.Returns the value of theintendedState
record component.int
port()
Returns the value of theport
record component.int
Returns the value of theprotocolVersion
record component.final String
toString()
Returns a string representation of this record class.void
write
(PacketByteBuf buf) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.network.packet.Packet
isWritingErrorSkippable
-
Field Details
-
protocolVersion
private final int protocolVersionThe field for theprotocolVersion
record component. -
address
The field for theaddress
record component. -
port
private final int portThe field for theport
record component. -
intendedState
The field for theintendedState
record component. -
MAX_ADDRESS_LENGTH
private static final int MAX_ADDRESS_LENGTH- See Also:
- Mappings:
Namespace Name Mixin selector official e
Lafj;e:I
intermediary field_33372
Lnet/minecraft/class_2889;field_33372:I
named MAX_ADDRESS_LENGTH
Lnet/minecraft/network/packet/c2s/handshake/HandshakeC2SPacket;MAX_ADDRESS_LENGTH:I
-
-
Constructor Details
-
HandshakeC2SPacket
@Deprecated public HandshakeC2SPacket(int int2, String string, int int3, ConnectionIntent connectionIntent) Deprecated. -
HandshakeC2SPacket
- Mappings:
Namespace Name Mixin selector official <init>
Lafj;<init>(Lui;)V
intermediary <init>
Lnet/minecraft/class_2889;<init>(Lnet/minecraft/class_2540;)V
named <init>
Lnet/minecraft/network/packet/c2s/handshake/HandshakeC2SPacket;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
-
Method Details
-
write
- Specified by:
write
in interfacePacket<ServerHandshakePacketListener>
- Mappings:
Namespace Name Mixin selector official a
Lxf;a(Lui;)V
intermediary method_11052
Lnet/minecraft/class_2596;method_11052(Lnet/minecraft/class_2540;)V
named write
Lnet/minecraft/network/packet/Packet;write(Lnet/minecraft/network/PacketByteBuf;)V
-
apply
- Specified by:
apply
in interfacePacket<ServerHandshakePacketListener>
- Mappings:
Namespace Name Mixin selector official a
Lafj;a(Lafk;)V
intermediary method_12575
Lnet/minecraft/class_2889;method_12575(Lnet/minecraft/class_2890;)V
named apply
Lnet/minecraft/network/packet/c2s/handshake/HandshakeC2SPacket;apply(Lnet/minecraft/network/listener/ServerHandshakePacketListener;)V
-
getNewNetworkState
Returns a new network state to transition to, ornull
to indicate no state change.The state transition is done on both the sender and receiver sides, but it is only in one direction (out of C2S and S2C). Another packet must be processed in the reverse direction to ensure the state in both directions are updated.
- Specified by:
getNewNetworkState
in interfacePacket<ServerHandshakePacketListener>
- Returns:
- a new network state to transition to, or
null
to indicate no state change - Mappings:
Namespace Name Mixin selector official c
Lxf;c()Luh;
intermediary method_52273
Lnet/minecraft/class_2596;method_52273()Lnet/minecraft/class_2539;
named getNewNetworkState
Lnet/minecraft/network/packet/Packet;getNewNetworkState()Lnet/minecraft/network/NetworkState;
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
protocolVersion
public int protocolVersion()Returns the value of theprotocolVersion
record component.- Returns:
- the value of the
protocolVersion
record component
-
address
Returns the value of theaddress
record component.- Returns:
- the value of the
address
record component
-
port
public int port()Returns the value of theport
record component.- Returns:
- the value of the
port
record component
-
intendedState
Returns the value of theintendedState
record component.- Returns:
- the value of the
intendedState
record component
-