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

pcap.codec.icmp.icmp4.Icmp4RouterSolicitation 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 Icmp4RouterSolicitation extends Icmp.IcmpTypeAndCode {

  public static final Icmp4RouterSolicitation ROUTER_DISCOVERY_SELECTION_SOLICITATION =
      new Icmp4RouterSolicitation((byte) 0, "Router discovery/selection/solicitation");

  public Icmp4RouterSolicitation(Byte code, String name) {
    super((byte) 10, code, name);
  }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy