OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rrset
(Results
1 - 4
of
4
) sorted by null
/external/smack/src/org/xbill/DNS/
Update.java
66
* Inserts a prerequisite that the specified
rrset
exists; that is, there
121
* Inserts a prerequisite that the specified
rrset
does not exist; that is,
168
* Indicates that all of the records in the
rrset
should be inserted into the
172
add(
RRset
rrset
) {
173
for (Iterator it =
rrset
.rrs(); it.hasNext(); )
235
* Indicates that all of the records in the
rrset
should be deleted from the
239
delete(
RRset
rrset
) {
240
for (Iterator it =
rrset
.rrs(); it.hasNext();
[
all
...]
DNSSEC.java
18
* @see
RRset
128
* @param rrsig The RRSIG record used to sign/verify the
rrset
.
129
* @param
rrset
The data to be signed/verified.
133
digestRRset(RRSIGRecord rrsig,
RRset
rrset
) {
137
int size =
rrset
.size();
140
Iterator it =
rrset
.rrs();
141
Name name =
rrset
.getName();
155
header.writeU16(
rrset
.getType());
156
header.writeU16(
rrset
.getDClass())
[
all
...]
Zone.java
29
private
RRset
NS;
35
private
RRset
[] current;
44
RRset
[] sets = allRRsets(originNode);
45
current = new
RRset
[sets.length];
78
RRset
[] sets = allRRsets(entry.getValue());
101
RRset
rrset
= oneRRset(originNode, Type.SOA);
local
102
if (
rrset
== null ||
rrset
.size() != 1)
105
Iterator it =
rrset
.rrs()
335
RRset
rrset
;
local
473
RRset
rrset
= findRRset(name, rtype);
local
493
RRset
rrset
= findRRset(name, rtype);
local
525
RRset
rrset
= sets[i];
local
[
all
...]
/external/openssh/openbsd-compat/
getrrsetbyname.c
194
struct rrsetinfo *
rrset
= NULL;
local
265
/* initialize
rrset
*/
266
rrset
= calloc(1, sizeof(struct rrsetinfo));
267
if (
rrset
== NULL) {
271
rrset
->rri_rdclass = response->query->class;
272
rrset
->rri_rdtype = response->query->type;
273
rrset
->rri_ttl = response->answer->ttl;
274
rrset
->rri_nrdatas = response->header.ancount;
279
rrset
->rri_flags |= RRSET_VALIDATED;
283
rrset
->rri_name = strdup(response->answer->name)
[
all
...]
Completed in 961 milliseconds