示例#1
0
 public int htonl(int n) {
   return bytesex.htonl(n);
 }
示例#2
0
 public int unpack32(byte[] data, int offset) {
   return bytesex.unpack32(data, offset);
 }
示例#3
0
 public int ntohl(int n) {
   return bytesex.ntohl(n);
 }
示例#4
0
 public void pack32(byte[] data, int offset, int value) {
   bytesex.pack32(data, offset, value);
 }