Skip to content
Merged
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
12 changes: 6 additions & 6 deletions src/zeroconf/_services/info.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ cdef class ServiceInfo(RecordUpdateListener):
cdef void _generate_decoded_properties(self)

@cython.locals(properties_contain_str=bint)
cpdef _set_properties(self, cython.dict properties)
cpdef void _set_properties(self, cython.dict properties)

cdef _set_text(self, cython.bytes text)
cdef void _set_text(self, cython.bytes text)

@cython.locals(record=DNSAddress)
cdef _get_ip_addresses_from_cache_lifo(self, object zc, double now, object type)
Expand All @@ -94,9 +94,9 @@ cdef class ServiceInfo(RecordUpdateListener):
@cython.locals(cache=DNSCache)
cdef cython.list _get_address_records_from_cache_by_type(self, object zc, object _type)

cdef _set_ipv4_addresses_from_cache(self, object zc, double now)
cdef void _set_ipv4_addresses_from_cache(self, object zc, double now)

cdef _set_ipv6_addresses_from_cache(self, object zc, double now)
cdef void _set_ipv6_addresses_from_cache(self, object zc, double now)

cdef cython.list _ip_addresses_by_version_value(self, object version_value)

Expand All @@ -121,7 +121,7 @@ cdef class ServiceInfo(RecordUpdateListener):
@cython.locals(cacheable=cython.bint)
cdef cython.set _get_address_and_nsec_records(self, object override_ttl)

cpdef async_clear_cache(self)
cpdef void async_clear_cache(self)

@cython.locals(cache=DNSCache)
cdef _generate_request_query(self, object zc, double now, object question_type)
cdef DNSOutgoing _generate_request_query(self, object zc, double now, object question_type)