pingrequest.java

来自「source code for fishnet」· Java 代码 · 共 52 行

JAVA
52
字号
/** * <pre>    * Class that stores information about a Ping request that was sent * </pre>    */public class PingRequest {    private int destAddr;    private byte[] msg;    private long timeSent;    /**     * Initialize member variables     * @param destAddr The address of the destination host     * @param msg The message that was sent     * @param timeSent The time that the ping was sent     */    public PingRequest(int destAddr, byte[] msg, long timeSent) {	this.destAddr = destAddr;	this.msg = msg;	this.timeSent = timeSent;    }    /**     * @return The address of the destination host     */    public int getDestAddr() {	return this.destAddr;    }    /**     * @return The message that was sent in the Ping     */    public byte[] getMsg() {	return this.msg;    }    /**     * @return The time that the ping was sent     */    public long getTimeSent() {	return this.timeSent;    }    /**     * @return String representation     */    public String toString() {	return new String("Dest: " + destAddr + " Send Time: " + timeSent + " Message: " + Utility.byteArrayToString(msg));    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?