@@ -127,16 +127,16 @@ cdef class DNSOutgoing:
|
127 | 127 | ) |
128 | 128 | cpdef packets(self) |
129 | 129 | |
130 | | - cpdef add_question_or_all_cache(self, DNSCache cache, object now, str name, object type_, object class_) |
| 130 | + cpdef add_question_or_all_cache(self, DNSCache cache, double now, str name, object type_, object class_) |
131 | 131 | |
132 | | - cpdef add_question_or_one_cache(self, DNSCache cache, object now, str name, object type_, object class_) |
| 132 | + cpdef add_question_or_one_cache(self, DNSCache cache, double now, str name, object type_, object class_) |
133 | 133 | |
134 | 134 | cpdef add_question(self, DNSQuestion question) |
135 | 135 | |
136 | 136 | cpdef add_answer(self, DNSIncoming inp, DNSRecord record) |
137 | 137 | |
138 | 138 | @cython.locals(now_double=double) |
139 | | - cpdef add_answer_at_time(self, DNSRecord record, object now) |
| 139 | + cpdef add_answer_at_time(self, DNSRecord record, double now) |
140 | 140 | |
141 | 141 | cpdef add_authorative_answer(self, DNSPointer record) |
142 | 142 | |
|