Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/zeroconf/_dns.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ cdef class DNSService(DNSRecord):
cdef class DNSNsec(DNSRecord):

cdef public cython.int _hash
cdef public object next_name
cdef public str next_name
cdef public cython.list rdtypes

cdef _fast_init(self, str name, cython.uint type_, cython.uint class_, cython.float ttl, str next_name, cython.list rdtypes, double created)
Expand Down
2 changes: 2 additions & 0 deletions src/zeroconf/_protocol/outgoing.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ cdef class DNSOutgoing:

cpdef void write_string(self, cython.bytes value)

cpdef void write_character_string(self, cython.bytes value)

@cython.locals(utfstr=bytes)
cdef void _write_utf(self, cython.str value)

Expand Down