Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JDK 17 jdk.naming.dns.jmod - Naming DNS Module
JDK 17 jdk.naming.dns.jmod is the JMOD file for JDK 17 Naming DNS module.
JDK 17 Naming DNS module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.naming.dns.jmod.
JDK 17 Naming DNS module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Naming DNS module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.naming.dns.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/jndi/dns/ResourceRecords.java
/*
* Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package com.sun.jndi.dns;
import java.util.Vector;
import javax.naming.*;
/**
* The ResourceRecords class represents the resource records in the
* four sections of a DNS message.
*
* The additional records section is currently ignored.
*
* @author Scott Seligman
*/
class ResourceRecords {
// Four sections: question, answer, authority, additional.
// The question section is treated as being made up of (shortened)
// resource records, although this isn't technically how it's defined.
Vector<ResourceRecord> question = new Vector<>();
Vector<ResourceRecord> answer = new Vector<>();
Vector<ResourceRecord> authority = new Vector<>();
Vector<ResourceRecord> additional = new Vector<>();
/*
* True if these resource records are from a zone transfer. In
* that case only answer records are read (as per
* draft-ietf-dnsext-axfr-clarify-02.txt). Also, the rdata of
* those answer records is not decoded (for efficiency) except
* for SOA records.
*/
boolean zoneXfer;
/*
* Returns a representation of the resource records in a DNS message.
* Does not modify or store a reference to the msg array.
*/
ResourceRecords(byte[] msg, int msgLen, Header hdr, boolean zoneXfer)
throws NamingException {
if (zoneXfer) {
answer.ensureCapacity(8192); // an arbitrary "large" number
}
this.zoneXfer = zoneXfer;
add(msg, msgLen, hdr);
}
/*
* Returns the type field of the first answer record, or -1 if
* there are no answer records.
*/
int getFirstAnsType() {
if (answer.size() == 0) {
return -1;
}
return answer.firstElement().getType();
}
/*
* Returns the type field of the last answer record, or -1 if
* there are no answer records.
*/
int getLastAnsType() {
if (answer.size() == 0) {
return -1;
}
return answer.lastElement().getType();
}
/*
* Decodes the resource records in a DNS message and adds
* them to this object.
* Does not modify or store a reference to the msg array.
*/
void add(byte[] msg, int msgLen, Header hdr) throws NamingException {
ResourceRecord rr;
int pos = Header.HEADER_SIZE; // current offset into msg
try {
for (int i = 0; i < hdr.numQuestions; i++) {
rr = new ResourceRecord(msg, msgLen, pos, true, false);
if (!zoneXfer) {
question.addElement(rr);
}
pos += rr.size();
}
for (int i = 0; i < hdr.numAnswers; i++) {
rr = new ResourceRecord(
msg, msgLen, pos, false, !zoneXfer);
answer.addElement(rr);
pos += rr.size();
}
if (zoneXfer) {
return;
}
for (int i = 0; i < hdr.numAuthorities; i++) {
rr = new ResourceRecord(msg, msgLen, pos, false, true);
authority.addElement(rr);
pos += rr.size();
}
// The additional records section is currently ignored.
} catch (IndexOutOfBoundsException e) {
throw new CommunicationException(
"DNS error: corrupted message");
}
}
}
⏎ com/sun/jndi/dns/ResourceRecords.java
Or download all of them as a single archive file:
File name: jdk.naming.dns-17.0.5-src.zip File size: 48006 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.naming.rmi.jmod - Naming RMI Module
2023-07-29, ∼3614🔥, 0💬
Popular Posts:
Where to get the Java source code for Connector/J 8.0 Core API module? Java source code files for Co...
JDK 17 jdk.localedata.jmod is the JMOD file for JDK 17 Localedata module. JDK 17 Locale Data module ...
JDK 11 jdk.crypto.mscapi.jmod is the JMOD file for JDK 11 Crypto MSCAPI module. JDK 11 Crypto MSCAPI...
What Is poi-examples-5.2.3.jar? poi-examples-5.2.3.jar is one of the JAR files for Apache POI 5.2.3,...
ANTLR is a powerful parser generator for multiple programming languages including Java. ANTLR contai...