| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -70,10 +70,10 @@ cdef class _ServiceBrowserBase(RecordUpdateListener): | |||
| 70 | 70 | ||
| 71 | 71 | cpdef _generate_ready_queries(self, object first_request, object now) | |
| 72 | 72 | ||
| 73 | - cpdef _enqueue_callback(self, object state_change, object type_, object name) | ||
| 73 | + cpdef void _enqueue_callback(self, object state_change, object type_, object name) | ||
| 74 | 74 | ||
| 75 | 75 | @cython.locals(record_update=RecordUpdate, record=DNSRecord, cache=DNSCache, service=DNSRecord, pointer=DNSPointer) | |
| 76 | - cpdef async_update_records(self, object zc, double now, cython.list records) | ||
| 76 | + cpdef void async_update_records(self, object zc, double now, cython.list records) | ||
| 77 | 77 | ||
| 78 | 78 | cpdef cython.list _names_matching_types(self, object types) | |
| 79 | 79 | ||
@@ -89,4 +89,4 @@ cdef class _ServiceBrowserBase(RecordUpdateListener): | |||
| 89 | 89 | ||
| 90 | 90 | cpdef _cancel_send_timer(self) | |
| 91 | 91 | ||
| 92 | - cpdef async_update_records_complete(self) | ||
| 92 | + cpdef void async_update_records_complete(self) | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -65,7 +65,7 @@ cdef class ServiceInfo(RecordUpdateListener): | |||
| 65 | 65 | cdef public cython.set _get_address_and_nsec_records_cache | |
| 66 | 66 | ||
| 67 | 67 | @cython.locals(record_update=RecordUpdate, update=bint, cache=DNSCache) | |
| 68 | - cpdef async_update_records(self, object zc, double now, cython.list records) | ||
| 68 | + cpdef void async_update_records(self, object zc, double now, cython.list records) | ||
| 69 | 69 | ||
| 70 | 70 | @cython.locals(cache=DNSCache) | |
| 71 | 71 | cpdef bint _load_from_cache(self, object zc, double now) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,6 +4,6 @@ import cython | |||
| 4 | 4 | ||
| 5 | 5 | cdef class RecordUpdateListener: | |
| 6 | 6 | ||
| 7 | - cpdef async_update_records(self, object zc, double now, cython.list records) | ||
| 7 | + cpdef void async_update_records(self, object zc, double now, cython.list records) | ||
| 8 | 8 | ||
| 9 | - cpdef async_update_records_complete(self) | ||
| 9 | + cpdef void async_update_records_complete(self) | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments