Class SendHandshakeResponsePacket


  • public class SendHandshakeResponsePacket
    extends Object
    See https://mariadb.com/kb/en/library/connection/#client-handshake-response for reference.
    • Constructor Detail

      • SendHandshakeResponsePacket

        public SendHandshakeResponsePacket()
    • Method Detail

      • send

        public static void send​(PacketOutputStream pos,
                                Credential credential,
                                String host,
                                String database,
                                long clientCapabilities,
                                long serverCapabilities,
                                byte serverLanguage,
                                byte packetSeq,
                                Options options,
                                String authenticationPluginType,
                                byte[] seed)
                         throws IOException
        Send handshake response packet.
        Parameters:
        pos - output stream
        credential - credential
        host - current hostname
        database - database name
        clientCapabilities - client capabilities
        serverCapabilities - server capabilities
        serverLanguage - server language (utf8 / utf8mb4 collation)
        packetSeq - packet sequence
        options - user options
        authenticationPluginType - Authentication plugin type. ex: mysql_native_password
        seed - seed
        Throws:
        IOException - if socket exception occur
        See Also:
        protocol documentation