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

Method readU8

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

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

()

Source from the content-addressed store, hash-verified

156 * @throws WireParseException The end of the stream was reached.
157 */
158public int
159readU8() throws WireParseException {
160 require(1);
161 return (byteBuffer.get() & 0xFF);
162}
163
164/**
165 * Reads an unsigned 16 bit value from the stream, as an int.

Callers 15

readCountedStringMethod · 0.95
toRSAPublicKeyMethod · 0.95
toDSAPublicKeyMethod · 0.95
DSASignaturefromDNSMethod · 0.95
DSASignaturetoDNSMethod · 0.95
ECDSASignaturetoDNSMethod · 0.95
rrFromWireMethod · 0.80
rrFromWireMethod · 0.80
rrFromWireMethod · 0.80
TypeBitmapMethod · 0.80
rrFromWireMethod · 0.80
rrFromWireMethod · 0.80

Calls 2

requireMethod · 0.95
getMethod · 0.45

Tested by

no test coverage detected