@@ -77,9 +77,9 @@ cdef class ServiceInfo(RecordUpdateListener):
77
77
cdef void _generate_decoded_properties(self )
78
78
79
79
@ cython.locals (properties_contain_str = bint)
80
- cpdef _set_properties(self , cython.dict properties)
80
+ cpdef void _set_properties(self , cython.dict properties)
81
81
82
- cdef _set_text(self , cython.bytes text)
82
+ cdef void _set_text(self , cython.bytes text)
83
83
84
84
@ cython.locals (record = DNSAddress)
85
85
cdef _get_ip_addresses_from_cache_lifo(self , object zc, double now, object type )
@@ -94,9 +94,9 @@ cdef class ServiceInfo(RecordUpdateListener):
94
94
@ cython.locals (cache = DNSCache)
95
95
cdef cython.list _get_address_records_from_cache_by_type(self , object zc, object _type)
96
96
97
- cdef _set_ipv4_addresses_from_cache(self , object zc, double now)
97
+ cdef void _set_ipv4_addresses_from_cache(self , object zc, double now)
98
98
99
- cdef _set_ipv6_addresses_from_cache(self , object zc, double now)
99
+ cdef void _set_ipv6_addresses_from_cache(self , object zc, double now)
100
100
101
101
cdef cython.list _ip_addresses_by_version_value(self , object version_value)
102
102
@@ -121,7 +121,7 @@ cdef class ServiceInfo(RecordUpdateListener):
121
121
@ cython.locals (cacheable = cython.bint)
122
122
cdef cython.set _get_address_and_nsec_records(self , object override_ttl)
123
123
124
- cpdef async_clear_cache(self )
124
+ cpdef void async_clear_cache(self )
125
125
126
126
@ cython.locals (cache = DNSCache)
127
- cdef _generate_request_query(self , object zc, double now, object question_type)
127
+ cdef DNSOutgoing _generate_request_query(self , object zc, double now, object question_type)
0 commit comments