com.antsdb.saltedfish.server.mysql.packet.replication.HandshakeInitPacket.java Source code

Java tutorial

Introduction

Here is the source code for com.antsdb.saltedfish.server.mysql.packet.replication.HandshakeInitPacket.java

Source

/*-------------------------------------------------------------------------------------------------
 _______ __   _ _______ _______ ______  ______
 |_____| | \  |    |    |______ |     \ |_____]
 |     | |  \_|    |    ______| |_____/ |_____]
    
 Copyright (c) 2016, antsdb.com and/or its affiliates. All rights reserved. *-xguo0<@
    
 This program is free software: you can redistribute it and/or modify it under the terms of the
 GNU Affero General Public License, version 3, as published by the Free Software Foundation.
    
 You should have received a copy of the GNU Affero General Public License along with this program.
 If not, see <https://www.gnu.org/licenses/agpl-3.0.txt>
-------------------------------------------------------------------------------------------------*/
package com.antsdb.saltedfish.server.mysql.packet.replication;

import com.antsdb.saltedfish.server.mysql.MysqlClientHandler;

import io.netty.buffer.ByteBuf;

public class HandshakeInitPacket extends ReplicationPacket {

    public HandshakeInitPacket(int event) {
        super(event);
    }

    @Override
    public void read(MysqlClientHandler handler, ByteBuf in) {
        // ignore handshake info, assure master is mysql 5.6
        in.readBytes(in.readableBytes());
    }

}