Searched defs:in (Results 201 - 225 of 1566) sorted by last modified time

1234567891011>>

/external/smack/src/org/xbill/DNS/
H A DMINFORecord.java48 rrFromWire(DNSInput in) throws IOException { argument
49 responsibleAddress = new Name(in);
50 errorAddress = new Name(in);
H A DMaster.java78 * @param in The input stream containing a master file.
83 Master(InputStream in, Name origin, long ttl) { argument
87 st = new Tokenizer(in);
94 * @param in The input stream containing a master file.
98 Master(InputStream in, Name origin) { argument
99 this(in, origin, -1);
104 * @param in The input stream containing a master file.
107 Master(InputStream in) { argument
108 this(in, null, -1);
221 // Then the ttl/class/type, in th
[all...]
H A DMessage.java21 /** The maximum length of a message in wire format. */
41 /* The message was an unsigned message in multiple-message response */
90 * and the zone are filled in.
98 Message(DNSInput in) throws IOException { argument
99 this(new Header(in));
108 int pos = in.current();
109 Record rec = Record.fromWire(in, i, isUpdate);
126 size = in.current();
196 * Determines if the given record is already present in the given section.
206 * Determines if the given record is already present in an
[all...]
H A DNAPTRRecord.java61 rrFromWire(DNSInput in) throws IOException { argument
62 order = in.readU16();
63 preference = in.readU16();
64 flags = in.readCountedString();
65 service = in.readCountedString();
66 regexp = in.readCountedString();
67 replacement = new Name(in);
H A DNSAPRecord.java76 rrFromWire(DNSInput in) throws IOException { argument
77 address = in.readByteArray();
H A DNSEC3PARAMRecord.java13 * in a zone. Zones signed using NSEC3 must include this record at the zone apex
67 rrFromWire(DNSInput in) throws IOException { argument
68 hashAlg = in.readU8();
69 flags = in.readU8();
70 iterations = in.readU16();
72 int salt_length = in.readU8();
74 salt = in.readByteArray(salt_length);
H A DNSEC3Record.java11 * Next SECure name 3 - this record contains the next hashed name in an
12 * ordered list of hashed names in the zone, and a set of types for which
13 * records exist for this name. The presence of this record in a response
31 /** Unsigned delegation are not included in the NSEC3 chain.
104 rrFromWire(DNSInput in) throws IOException { argument
105 hashAlg = in.readU8();
106 flags = in.readU8();
107 iterations = in.readU16();
109 int salt_length = in.readU8();
111 salt = in
[all...]
H A DNSECRecord.java8 * Next SECure name - this record contains the following name in an
9 * ordered list of names in the zone, and a set of types for which
10 * records exist for this name. The presence of this record in a response
35 * @param next The following name in an ordered list of the zone
49 rrFromWire(DNSInput in) throws IOException { argument
50 next = new Name(in);
51 types = new TypeBitmap(in);
92 /** Returns whether a specific type is in the set of types. */
H A DNULLRecord.java42 rrFromWire(DNSInput in) throws IOException { argument
43 data = in.readByteArray();
H A DNXTRecord.java9 * Next name - this record contains the following name in an ordered list
10 * of names in the zone, and a set of types for which records exist for
11 * this name. The presence of this record in a response signifies a
12 * failed query for data in a DNSSEC-signed zone.
33 * @param next The following name in an ordered list of the zone
44 rrFromWire(DNSInput in) throws IOException { argument
45 next = new Name(in);
47 int bitmapLength = in.remaining();
49 int t = in.readU8();
H A DName.java50 /** The maximum number of labels in a Name */
62 /* Used in wildcard names. */
294 * that it will avoid creating new objects in some cases.
312 * to the constructor, except that it will avoid creating new objects in some
340 * @param in A stream containing the DNS message which is currently
344 Name(DNSInput in) throws WireParseException { argument
351 len = in.readU8();
361 in.readByteArray(label, 1, len);
366 pos = in.readU8();
369 System.err.println("currently " + in
[all...]
H A DOPTRecord.java10 * No specific options are defined other than those specified in the
90 rrFromWire(DNSInput in) throws IOException { argument
91 if (in.remaining() > 0)
93 while (in.remaining() > 0) {
94 EDNSOption option = EDNSOption.fromWire(in);
162 * Gets all options in the OPTRecord. This returns a list of EDNSOptions.
172 * Gets all options in the OPTRecord with a specific code. This returns a list
H A DPXRecord.java46 rrFromWire(DNSInput in) throws IOException { argument
47 preference = in.readU16();
48 map822 = new Name(in);
49 mapX400 = new Name(in);
H A DRPRecord.java43 rrFromWire(DNSInput in) throws IOException { argument
44 mailbox = new Name(in);
45 textDomain = new Name(in);
H A DRecord.java75 rrFromWire(DNSInput in) throws IOException; argument
78 newRecord(Name name, int type, int dclass, long ttl, int length, DNSInput in) argument
82 rec = getEmptyRecord(name, type, dclass, ttl, in != null);
83 if (in != null) {
84 if (in.remaining() < length)
86 in.setActive(length);
88 rec.rrFromWire(in);
90 if (in.remaining() > 0)
92 in.clearActive();
104 * @param data The rdata of the record, in uncompresse
176 fromWire(DNSInput in, int section, boolean isUpdate) argument
200 fromWire(DNSInput in, int section) argument
[all...]
H A DResolverConfig.java13 * The following are attempted, in order, until one succeeds.
17 * (which are resolved using Java's built in DNS support).
128 * Looks in the system properties to find servers and a search path.
211 * Looks in /etc/resolv.conf to find servers and a search path.
217 InputStream in = null;
219 in = new FileInputStream(file);
224 InputStreamReader isr = new InputStreamReader(in);
287 findWin(InputStream in, Locale locale) { argument
301 BufferedReader br = new BufferedReader(new InputStreamReader(in));
370 findWin(InputStream in) { argument
[all...]
H A DSIGBase.java52 rrFromWire(DNSInput in) throws IOException { argument
53 covered = in.readU16();
54 alg = in.readU8();
55 labels = in.readU8();
56 origttl = in.readU32();
57 expire = new Date(1000 * in.readU32());
58 timeSigned = new Date(1000 * in.readU32());
59 footprint = in.readU16();
60 signer = new Name(in);
61 signature = in
[all...]
H A DSOARecord.java37 * @param minimum The minimum TTL for records in the zone
54 rrFromWire(DNSInput in) throws IOException { argument
55 host = new Name(in);
56 admin = new Name(in);
57 serial = in.readU32();
58 refresh = in.readU32();
59 retry = in.readU32();
60 expire = in.readU32();
61 minimum = in.readU32();
145 /** Returns the minimum TTL for records in th
[all...]
H A DSRVRecord.java8 * Server Selection Record - finds hosts running services in a domain. An
51 rrFromWire(DNSInput in) throws IOException { argument
52 priority = in.readU16();
53 weight = in.readU16();
54 port = in.readU16();
55 target = new Name(in);
H A DSSHFPRecord.java59 rrFromWire(DNSInput in) throws IOException { argument
60 alg = in.readU8();
61 digestType = in.readU8();
62 fingerprint = in.readByteArray();
H A DSingleNameBase.java37 rrFromWire(DNSInput in) throws IOException { argument
38 singleName = new Name(in);
H A DTKEYRecord.java58 * @param error The extended error field. Should be 0 in queries
79 rrFromWire(DNSInput in) throws IOException { argument
80 alg = new Name(in);
81 timeInception = new Date(1000 * in.readU32());
82 timeExpire = new Date(1000 * in.readU32());
83 mode = in.readU16();
84 error = in.readU16();
86 int keylen = in.readU16();
88 key = in.readByteArray(keylen);
92 int otherlen = in
[all...]
H A DTLSARecord.java31 * Full certificate; the Certificate binary structure defined in
37 * SubjectPublicKeyInfo; DER-encoded binary structure defined in
71 * match the certificate presented in the TLS handshake.
94 rrFromWire(DNSInput in) throws IOException { argument
95 certificateUsage = in.readU8();
96 selector = in.readU8();
97 matchingType = in.readU8();
98 certificateAssociationData = in.readByteArray();
H A DTSIGRecord.java44 * received is not in the range [now - fudge, now + fudge], the signature
48 * @param error The extended error field. Should be 0 in queries.
49 * @param other The other data field. Currently used only in BADTIME
69 rrFromWire(DNSInput in) throws IOException { argument
70 alg = new Name(in);
72 long timeHigh = in.readU16();
73 long timeLow = in.readU32();
76 fudge = in.readU16();
78 int sigLen = in.readU16();
79 signature = in
[all...]
H A DTXTBase.java53 rrFromWire(DNSInput in) throws IOException { argument
55 while (in.remaining() > 0) {
56 byte [] b = in.readCountedString();

Completed in 85 milliseconds

1234567891011>>