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 Details

    • protocolVersion

      private final int protocolVersion
      The field for the protocolVersion record component.
    • address

      private final String address
      The field for the address record component.
    • port

      private final int port
      The field for the port record component.
    • intendedState

      private final ConnectionIntent intendedState
      The field for the intendedState 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

      public HandshakeC2SPacket(PacketByteBuf buf)
      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

      public void write(PacketByteBuf buf)
      Specified by:
      write in interface Packet<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

      public void apply(ServerHandshakePacketListener serverHandshakePacketListener)
      Specified by:
      apply in interface Packet<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

      public NetworkState getNewNetworkState()
      Returns a new network state to transition to, or null 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 interface Packet<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

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      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 with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • protocolVersion

      public int protocolVersion()
      Returns the value of the protocolVersion record component.
      Returns:
      the value of the protocolVersion record component
    • address

      public String address()
      Returns the value of the address record component.
      Returns:
      the value of the address record component
    • port

      public int port()
      Returns the value of the port record component.
      Returns:
      the value of the port record component
    • intendedState

      public ConnectionIntent intendedState()
      Returns the value of the intendedState record component.
      Returns:
      the value of the intendedState record component