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

Method fromArray

src/main/java/core/org/xbill/DNS/ARecord.java:27–33  ·  view source on GitHub ↗
(byte [] array)

Source from the content-addressed store, hash-verified

25}
26
27private static final int
28fromArray(byte [] array) {
29 return (((array[0] & 0xFF) << 24) |
30 ((array[1] & 0xFF) << 16) |
31 ((array[2] & 0xFF) << 8) |
32 (array[3] & 0xFF));
33}
34
35private static final byte []
36toArray(int addr) {

Callers 3

ARecordMethod · 0.95
rrFromWireMethod · 0.95
rdataFromStringMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected