⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mdrecord.java

📁 DNS Java 是java实现的DNS
💻 JAVA
字号:
// Copyright (c) 1999-2004 Brian Wellington (bwelling@xbill.org)package org.xbill.DNS;/** * Mail Destination Record  - specifies a mail agent which delivers mail * for a domain (obsolete) * * @author Brian Wellington */public class MDRecord extends SingleNameBase {MDRecord() {}RecordgetObject() {	return new MDRecord();}/**  * Creates a new MD Record with the given data * @param mailAgent The mail agent that delivers mail for the domain. */publicMDRecord(Name name, int dclass, long ttl, Name mailAgent) {	super(name, Type.MD, dclass, ttl, mailAgent, "mail agent");}/** Gets the mail agent for the domain */public NamegetMailAgent() {	return getSingleName();}public NamegetAdditionalName() {	return getSingleName();}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -