Home | History | Annotate | Download | only in impl

Lines Matching full:_packet

169     private final DatagramPacket     _packet;
185 this._packet = packet;
247 this._packet = packet;
260 DNSIncoming in = new DNSIncoming(this.getFlags(), this.getId(), this.isMulticast(), this._packet, this._receivedTime);
446 byte[] data = new byte[_packet.getLength()];
447 System.arraycopy(_packet.getData(), 0, data, 0, data.length);
457 if (_packet.getAddress() != null) {
458 buf.append(_packet.getAddress().getHostAddress());
461 buf.append(_packet.getPort());
463 buf.append(_packet.getLength());