Package org.minidns.record
Class SRV
java.lang.Object
org.minidns.record.Data
org.minidns.record.SRV
- All Implemented Interfaces:
Comparable<SRV>
SRV record payload (service pointer).
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
getType()
The payload type.boolean
Check if the service is available at this domain.static SRV
parse
(DataInputStream dis, byte[] data) void
The internal method used to serialize Data subclasses.toString()
Methods inherited from class org.minidns.record.Data
equals, hashCode, length, toByteArray, toOutputStream, toOutputStream
-
Field Details
-
priority
public final int priorityThe priority of this service. Lower values mean higher priority. -
weight
public final int weightThe weight of this service. Services with the same priority should be balanced based on weight. -
port
public final int portThe target port. -
target
The target server. -
name
Deprecated.usetarget
instead.The target server.
-
-
Constructor Details
-
SRV
-
SRV
-
-
Method Details
-
parse
- Throws:
IOException
-
isServiceAvailable
public boolean isServiceAvailable()Check if the service is available at this domain. This checks f the target points to the root label. As per RFC 2782 the service is decidedly not available if there is only a single SRV answer pointing to the root label. From RFC 2782:A Target of "." means that the service is decidedly not available at this domain.
- Returns:
- true if the service is available at this domain.
-
serialize
Description copied from class:Data
The internal method used to serialize Data subclasses.- Specified by:
serialize
in classData
- Parameters:
dos
- the output stream to serialize to.- Throws:
IOException
- if an I/O error occurs.
-
toString
-
getType
Description copied from class:Data
The payload type. -
compareTo
- Specified by:
compareTo
in interfaceComparable<SRV>
-
target
instead.