OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SOA
(Results
1 - 2
of
2
) sorted by null
/external/smack/src/org/xbill/DNS/
Type.java
31
public static final int
SOA
= 6;
232
types.add(
SOA
, "
SOA
", new SOARecord());
Zone.java
30
private SOARecord
SOA
;
48
if (type == Type.
SOA
)
69
return oneRRset(originNode, Type.
SOA
);
101
RRset rrset = oneRRset(originNode, Type.
SOA
);
104
": exactly 1
SOA
must be specified");
106
SOA
= (SOARecord) it.next();
118
if (rtype == Type.
SOA
&& !name.equals(origin)) {
119
throw new IOException("
SOA
owner " + name +
217
/** Returns the Zone's
SOA
record */
220
return
SOA
;
[
all
...]
Completed in 59 milliseconds