https://github.com/sea-boat/mysql-protocol
mysql クライアントは process kill コマンドを使用してサーバーに接続を終了させることができ、通常は ok パケットを送信します返されます。
type | name | description |
---|---|---|
int | ペイロード長 | 最下位バイト順に3が格納されるペイロードのテストとその 1 -バイトのシーケンス番号がメッセージヘッダー |
int<1> | シリアル番号 | |
文字列 | ペイロード | メッセージ本文に結合され、長さは以前に指定されたペイロード長です |
ペイロード
1 [0c] COM_PROCCESS_KILL4 connection id
詳細: http://dev.mysql.com/doc/internals/en/com-process-kill.html
/** * * <pre class="brush:php;toolbar:false"><b>mysql process kill packet.</b>* @author *
seaboat*
<b>email: </b>849586227@qq.com*
<b>blog: </b>http://www.php.cn/;/pre> * @version 1.0 * @see http://www.php.cn/ */public class ProcessKillPacket extends MySQLPacket { public byte flag = (byte) 0xfe; public int connectionId; @Override public void read(byte[] data) { MySQLMessage mm = new MySQLMessage(data); packetLength = mm.readUB3(); packetId = mm.read(); flag = mm.read(); connectionId = mm.readInt(); } @Override public void write(ByteBuffer buffer) { int size = calcPacketSize(); BufferUtil.writeUB3(buffer, size); buffer.put(packetId); buffer.put(COM_PROCESS_KILL); BufferUtil.writeInt(buffer, connectionId); } @Override public int calcPacketSize() { return 5; } @Override protected String getPacketInfo() { return "MySQL Process Kill Packet"; } }
上記はプロセスキルパッケージとmysqlプロトコルの解析内容です。その他の関連コンテンツについては、PHP中国語Webサイト(www.php.cn)をご覧ください。