org.xbill.DNS.ZoneTransferIn.newIXFR()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(6.0k)|赞(0)|评价(0)|浏览(156)

本文整理了Java中org.xbill.DNS.ZoneTransferIn.newIXFR()方法的一些代码示例,展示了ZoneTransferIn.newIXFR()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZoneTransferIn.newIXFR()方法的具体详情如下:
包路径:org.xbill.DNS.ZoneTransferIn
类名称:ZoneTransferIn
方法名:newIXFR

ZoneTransferIn.newIXFR介绍

暂无

代码示例

代码示例来源:origin: org.littleshoot/dnsjava

/**
 * Instantiates a ZoneTransferIn object to do an IXFR (incremental zone
 * transfer).
 * @param zone The zone to transfer.
 * @param serial The existing serial number.
 * @param fallback If true, fall back to AXFR if IXFR is not supported.
 * @param host The host from which to transfer the zone.
 * @param key The TSIG key used to authenticate the transfer, or null.
 * @return The ZoneTransferIn object.
 * @throws UnknownHostException The host does not exist.
 */
public static ZoneTransferIn
newIXFR(Name zone, long serial, boolean fallback, String host, TSIG key)
throws UnknownHostException
{
  return newIXFR(zone, serial, fallback, host, 0, key);
}

代码示例来源:origin: tiandawu/IotXmpp

/**
 * Instantiates a ZoneTransferIn object to do an IXFR (incremental zone
 * transfer).
 * @param zone The zone to transfer.
 * @param serial The existing serial number.
 * @param fallback If true, fall back to AXFR if IXFR is not supported.
 * @param host The host from which to transfer the zone.
 * @param key The TSIG key used to authenticate the transfer, or null.
 * @return The ZoneTransferIn object.
 * @throws UnknownHostException The host does not exist.
 */
public static ZoneTransferIn
newIXFR(Name zone, long serial, boolean fallback, String host, TSIG key)
throws UnknownHostException
{
  return newIXFR(zone, serial, fallback, host, 0, key);
}

代码示例来源:origin: dnsjava/dnsjava

/**
 * Instantiates a ZoneTransferIn object to do an IXFR (incremental zone
 * transfer).
 * @param zone The zone to transfer.
 * @param serial The existing serial number.
 * @param fallback If true, fall back to AXFR if IXFR is not supported.
 * @param host The host from which to transfer the zone.
 * @param key The TSIG key used to authenticate the transfer, or null.
 * @return The ZoneTransferIn object.
 * @throws UnknownHostException The host does not exist.
 */
public static ZoneTransferIn
newIXFR(Name zone, long serial, boolean fallback, String host, TSIG key)
throws UnknownHostException
{
  return newIXFR(zone, serial, fallback, host, 0, key);
}

代码示例来源:origin: net.sf.dnsjava-osgi/dnsjava-osgi

/**
 * Instantiates a ZoneTransferIn object to do an IXFR (incremental zone
 * transfer).
 * @param zone The zone to transfer.
 * @param serial The existing serial number.
 * @param fallback If true, fall back to AXFR if IXFR is not supported.
 * @param host The host from which to transfer the zone.
 * @param key The TSIG key used to authenticate the transfer, or null.
 * @return The ZoneTransferIn object.
 * @throws UnknownHostException The host does not exist.
 */
public static ZoneTransferIn
newIXFR(Name zone, long serial, boolean fallback, String host, TSIG key)
throws UnknownHostException
{
  return newIXFR(zone, serial, fallback, host, 0, key);
}

代码示例来源:origin: tiandawu/IotXmpp

/**
 * Instantiates a ZoneTransferIn object to do an IXFR (incremental zone
 * transfer).
 * @param zone The zone to transfer.
 * @param serial The existing serial number.
 * @param fallback If true, fall back to AXFR if IXFR is not supported.
 * @param host The host from which to transfer the zone.
 * @param port The port to connect to on the server, or 0 for the default.
 * @param key The TSIG key used to authenticate the transfer, or null.
 * @return The ZoneTransferIn object.
 * @throws UnknownHostException The host does not exist.
 */
public static ZoneTransferIn
newIXFR(Name zone, long serial, boolean fallback, String host, int port,
  TSIG key)
throws UnknownHostException
{
  if (port == 0)
    port = SimpleResolver.DEFAULT_PORT;
  return newIXFR(zone, serial, fallback,
        new InetSocketAddress(host, port), key);
}

代码示例来源:origin: dnsjava/dnsjava

/**
 * Instantiates a ZoneTransferIn object to do an IXFR (incremental zone
 * transfer).
 * @param zone The zone to transfer.
 * @param serial The existing serial number.
 * @param fallback If true, fall back to AXFR if IXFR is not supported.
 * @param host The host from which to transfer the zone.
 * @param port The port to connect to on the server, or 0 for the default.
 * @param key The TSIG key used to authenticate the transfer, or null.
 * @return The ZoneTransferIn object.
 * @throws UnknownHostException The host does not exist.
 */
public static ZoneTransferIn
newIXFR(Name zone, long serial, boolean fallback, String host, int port,
  TSIG key)
throws UnknownHostException
{
  if (port == 0)
    port = SimpleResolver.DEFAULT_PORT;
  return newIXFR(zone, serial, fallback,
        new InetSocketAddress(host, port), key);
}

代码示例来源:origin: net.sf.dnsjava-osgi/dnsjava-osgi

/**
 * Instantiates a ZoneTransferIn object to do an IXFR (incremental zone
 * transfer).
 * @param zone The zone to transfer.
 * @param serial The existing serial number.
 * @param fallback If true, fall back to AXFR if IXFR is not supported.
 * @param host The host from which to transfer the zone.
 * @param port The port to connect to on the server, or 0 for the default.
 * @param key The TSIG key used to authenticate the transfer, or null.
 * @return The ZoneTransferIn object.
 * @throws UnknownHostException The host does not exist.
 */
public static ZoneTransferIn
newIXFR(Name zone, long serial, boolean fallback, String host, int port,
  TSIG key)
throws UnknownHostException
{
  if (port == 0)
    port = SimpleResolver.DEFAULT_PORT;
  return newIXFR(zone, serial, fallback,
        new InetSocketAddress(host, port), key);
}

代码示例来源:origin: org.littleshoot/dnsjava

/**
 * Instantiates a ZoneTransferIn object to do an IXFR (incremental zone
 * transfer).
 * @param zone The zone to transfer.
 * @param serial The existing serial number.
 * @param fallback If true, fall back to AXFR if IXFR is not supported.
 * @param host The host from which to transfer the zone.
 * @param port The port to connect to on the server, or 0 for the default.
 * @param key The TSIG key used to authenticate the transfer, or null.
 * @return The ZoneTransferIn object.
 * @throws UnknownHostException The host does not exist.
 */
public static ZoneTransferIn
newIXFR(Name zone, long serial, boolean fallback, String host, int port,
  TSIG key)
throws UnknownHostException
{
  if (port == 0)
    port = SimpleResolver.DEFAULT_PORT;
  return newIXFR(zone, serial, fallback,
        new InetSocketAddress(host, port), key);
}

代码示例来源:origin: org.littleshoot/dnsjava

xfrin = ZoneTransferIn.newIXFR(zname, ixfr_serial, fallback,
            server, port, key);
else

代码示例来源:origin: net.sf.dnsjava-osgi/dnsjava-osgi

xfrin = ZoneTransferIn.newIXFR(zname, ixfr_serial, fallback,
            server, port, key);
else

代码示例来源:origin: tiandawu/IotXmpp

xfrin = ZoneTransferIn.newIXFR(zname, ixfr_serial, fallback,
            server, port, key);
else

代码示例来源:origin: OpenNMS/opennms

try {
  try {
    xfer = ZoneTransferIn.newIXFR(new Name(request.getZone()), request.getSerial(),
        request.getFallback(), request.getHost(), request.getPort(), null);
    records = getRecords(xfer);

相关文章