MCPcopy Create free account
hub / github.com/DeNA/PacketProxy / readU32

Method readU32

src/main/java/core/org/xbill/DNS/DNSInput.java:180–184  ·  view source on GitHub ↗

Reads an unsigned 32 bit value from the stream, as a long. @return An unsigned 32 bit value. @throws WireParseException The end of the stream was reached.

()

Source from the content-addressed store, hash-verified

178 * @throws WireParseException The end of the stream was reached.
179 */
180public long
181readU32() throws WireParseException {
182 require(4);
183 return (byteBuffer.getInt() & 0xFFFFFFFFL);
184}
185
186/**
187 * Reads a byte array of a specified length from the stream into an existing

Callers 6

fromWireMethod · 0.80
rrFromWireMethod · 0.80
rrFromWireMethod · 0.80
rrFromWireMethod · 0.80
rrFromWireMethod · 0.80
rrFromWireMethod · 0.80

Calls 2

requireMethod · 0.95
getIntMethod · 0.80

Tested by

no test coverage detected