All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pcap.codec.icmp.icmp4.Icmp4EchoRequest Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
/** This code is licenced under the GPL version 2. */
package pcap.codec.icmp.icmp4;

import pcap.codec.icmp.Icmp;
import pcap.common.annotation.Inclubating;

/** @author Ardika Rommy Sanjaya */
@Inclubating
public class Icmp4EchoRequest extends Icmp.IcmpTypeAndCode {

  public static final Icmp4EchoRequest ECHO_REQUEST =
      new Icmp4EchoRequest((byte) 0, "Echo request (used to ping)");

  public Icmp4EchoRequest(Byte code, String name) {
    super((byte) 8, code, name);
  }

  /**
   * Add new {@link Icmp4EchoRequest} to registry.
   *
   * @param code icmp type code.
   * @param name icmp type name.
   * @return returns {@link Icmp4EchoRequest}.
   */
  public static Icmp4EchoRequest register(Byte code, String name) {
    return new Icmp4EchoRequest(code, name);
  }

  @Override
  public String toString() {
    return super.toString();
  }

  static {
    Icmp.IcmpTypeAndCode.ICMP4_REGISTRY.add(ECHO_REQUEST);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy