Home | History | Annotate | Download | only in DNS

Lines Matching defs:MAXLENGTH

22 public static final int MAXLENGTH = 65535;
403 int maxLength)
418 if (out.current() > maxLength) {
428 toWire(DNSOutput out, int maxLength) {
429 if (maxLength < Header.LENGTH)
434 int tempMaxLength = maxLength;
499 * could happen if maxLength is smaller than a DNS header, for example.
500 * @param maxLength The maximum length of the message.
507 toWire(int maxLength) {
509 toWire(out, maxLength);