We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d653ceb commit caa71a9Copy full SHA for caa71a9
2 files changed
src/zeroconf/_dns.pxd
@@ -69,7 +69,7 @@ cdef class DNSRecord(DNSEntry):
69
cdef class DNSAddress(DNSRecord):
70
71
cdef public cython.int _hash
72
- cdef public object address
+ cdef public bytes address
73
cdef public object scope_id
74
75
cdef bint _eq(self, DNSAddress other)
src/zeroconf/_protocol/outgoing.pxd
@@ -109,6 +109,8 @@ cdef class DNSOutgoing:
109
110
cpdef write_string(self, cython.bytes value)
111
112
+ cpdef write_character_string(self, cython.bytes value)
113
+
114
@cython.locals(utfstr=bytes)
115
cpdef _write_utf(self, cython.str value)
116
0 commit comments