org.anarres.dhcp.v6.options.ClientIdOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dhcp-protocol Show documentation
Show all versions of dhcp-protocol Show documentation
A high-performance pure Java DHCP server.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.anarres.dhcp.v6.options;
/**
* http://tools.ietf.org/html/rfc3315#section-22.2
*
* @author shevek
*/
public class ClientIdOption extends DuidOption {
private static final short TAG = 1;
@Override
public short getTag() {
return TAG;
}
}