Home | History | Annotate | Download | only in tasks

Lines Matching refs:_in

29     private final DNSIncoming _in;
38 this._in = in;
57 return super.toString() + " incomming: " + _in;
74 for (DNSQuestion question : _in.getQuestions()) {
83 int delay = (iAmTheOnlyOne && !_in.isTruncated()) ? 0 : DNSConstants.RESPONSE_MIN_WAIT_INTERVAL + JmDNSImpl.getRandom().nextInt(DNSConstants.RESPONSE_MAX_WAIT_INTERVAL - DNSConstants.RESPONSE_MIN_WAIT_INTERVAL + 1) - _in.elapseSinceArrival();
97 this.getDns().respondToQuery(_in);
106 for (DNSQuestion question : _in.getQuestions()) {
121 for (DNSRecord knownAnswer : _in.getAnswers()) {
135 DNSOutgoing out = new DNSOutgoing(DNSConstants.FLAGS_QR_RESPONSE | DNSConstants.FLAGS_AA, !_unicast, _in.getSenderUDPPayload());
136 out.setId(_in.getId());
144 out = this.addAnswer(out, _in, answer);