We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86e5c4f commit 4626399Copy full SHA for 4626399
1 file changed
src/zeroconf/_protocol/incoming.pxd
@@ -7,6 +7,7 @@ cdef cython.uint MAX_DNS_LABELS
7
cdef cython.uint DNS_COMPRESSION_POINTER_LEN
8
cdef cython.uint MAX_NAME_LENGTH
9
10
+cdef object current_time_millis
11
12
cdef cython.uint _TYPE_A
13
cdef cython.uint _TYPE_CNAME
@@ -31,6 +32,18 @@ cdef object DECODE_EXCEPTIONS
31
32
33
cdef object IncomingDecodeError
34
35
+from .._dns cimport (
36
+ DNSAddress,
37
+ DNSEntry,
38
+ DNSHinfo,
39
+ DNSNsec,
40
+ DNSPointer,
41
+ DNSRecord,
42
+ DNSService,
43
+ DNSText,
44
+)
45
+
46
47
cdef class DNSIncoming:
48
49
cdef bint _did_read_others
@@ -64,6 +77,8 @@ cdef class DNSIncoming:
64
77
65
78
cdef _initial_parse(self)
66
79
80
+ cdef _unpack(self, object unpacker, object length)
81
67
82
@cython.locals(
68
83
end=cython.uint,
69
84
length=cython.uint
0 commit comments