Home | History | Annotate | Download | only in net

Lines Matching full:uint16

78 	// for v are *uint16, *uint32, *string, or []byte, and
87 Id uint16
88 Bits uint16
89 Qdcount, Ancount, Nscount, Arcount uint16
113 Qtype uint16
114 Qclass uint16
128 Rrtype uint16
129 Class uint16
131 Rdlength uint16 // length of data after header
235 Pref uint16
312 var n uint16 = 0
319 if rr.Hdr.Rdlength-n < uint16(len(txt))+1 {
322 n += uint16(len(txt)) + 1
330 Priority uint16
331 Weight uint16
332 Port uint16
511 case *uint16:
570 case *uint16:
574 *fv = uint16(msg[off])<<8 | uint16(msg[off+1])
668 case *uint16:
699 rr.Header().Rdlength = uint16(off2 - off1)
733 id uint16
767 dh.Bits = uint16(dns.opcode)<<11 | uint16(dns.rcode)
790 dh.Qdcount = uint16(len(question))
791 dh.Ancount = uint16(len(answer))
792 dh.Nscount = uint16(len(ns))
793 dh.Arcount = uint16(len(extra))