Package io.vertx.core.dns.impl.netty.decoder.record

Examples of io.vertx.core.dns.impl.netty.decoder.record.StartOfAuthorityRecord


        long serial = packet.readUnsignedInt();
        int refresh = packet.readInt();
        int retry = packet.readInt();
        int expire = packet.readInt();
        long minimum = packet.readUnsignedInt();
        return new StartOfAuthorityRecord(mName, rName, serial, refresh, retry, expire, minimum);
    }
View Full Code Here

TOP

Related Classes of io.vertx.core.dns.impl.netty.decoder.record.StartOfAuthorityRecord

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.