https://github.com/sea-boat/mysql-protocol
mysql クライアントは ping コマンドを使用してサーバーのステータスを確認でき、OK パッケージは普通に戻ってきました。
type | name | description |
---|---|---|
int | ペイロード長 | 最下位バイト順に3が格納されるペイロードのテストとその 1 -バイトのシーケンス番号がメッセージヘッダー |
int<1> | シリアル番号 | |
文字列 | ペイロード | メッセージ本文に結合され、長さは以前に指定されたペイロード長です |
ペイロード
1 [0e] COM_PING
詳細: http://dev.mysql.com/doc/internals/en/com-ping.html
/** * * @author seaboat * @date 2016-09-25 * @version 1.0 * <pre class="brush:php;toolbar:false"><b>email: </b>849586227@qq.com*
<b>blog: </b>http://www.php.cn/;/pre> * <p>ping command packet.</p> */public class PingPacket extends MySQLPacket { // payload length is 1,packet id is 0,payload is 0e public static final byte[] PING = new byte[] { 1, 0, 0, 0, 14 }; @Override public int calcPacketSize() { return 1; } @Override protected String getPacketInfo() { return "MySQL Ping Packet"; } }
上記ping コマンド パッケージの詳細な内容と、mysql プロトコルの分析については、PHP 中国語 Web サイト (www.php.cn) を参照してください。