Lines Matching refs:tlv
9 tlv = EDNS0TLV()
10 raw(tlv) == b'\x00\x00\x00\x00'
13 tlv = EDNS0TLV(optcode=42, optlen=12, optdata="edns0tlv")
14 raw(tlv) == b'\x00*\x00\x0cedns0tlv'
17 tlv = EDNS0TLV(optdata="edns0tlv")
18 raw(tlv) == b'\x00\x00\x00\x08edns0tlv'
21 tlv = EDNS0TLV(b'\x00*\x00\x08edns0tlv')
22 tlv.optcode == 42 and tlv.optlen == 8 and tlv.optdata == b"edns0tlv"
45 tlv = EDNS0TLV(optcode=5, optdata=b"\x00\x11\x22\x33")
46 raw(tlv) == b'\x00\x05\x00\x04\x00\x11"3'
60 tlv = EDNS0TLV(optcode=2, optdata="")
61 raw(tlv) == b'\x00\x02\x00\x00'