-
Notifications
You must be signed in to change notification settings - Fork 227
Expand file tree
/
Copy path_cache.pxd
More file actions
88 lines (67 loc) · 2.01 KB
/
_cache.pxd
File metadata and controls
88 lines (67 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import cython
from ._dns cimport (
DNSAddress,
DNSEntry,
DNSHinfo,
DNSNsec,
DNSPointer,
DNSRecord,
DNSService,
DNSText,
)
cdef object _UNIQUE_RECORD_TYPES
cdef unsigned int _TYPE_PTR
cdef cython.uint _ONE_SECOND
@cython.locals(
record_cache=dict,
)
cdef _remove_key(cython.dict cache, object key, DNSRecord record)
cdef class DNSCache:
cdef public cython.dict cache
cdef public cython.dict service_cache
cpdef bint async_add_records(self, object entries)
cpdef void async_remove_records(self, object entries)
@cython.locals(
store=cython.dict,
)
cpdef DNSRecord async_get_unique(self, DNSRecord entry)
@cython.locals(
record=DNSRecord,
)
cpdef list async_expire(self, double now)
@cython.locals(
records=cython.dict,
record=DNSRecord,
)
cpdef list async_all_by_details(self, str name, unsigned int type_, unsigned int class_)
cpdef cython.dict async_entries_with_name(self, str name)
cpdef cython.dict async_entries_with_server(self, str name)
@cython.locals(
cached_entry=DNSRecord,
)
cpdef DNSRecord get_by_details(self, str name, unsigned int type_, unsigned int class_)
@cython.locals(
records=cython.dict,
entry=DNSRecord,
)
cpdef cython.list get_all_by_details(self, str name, unsigned int type_, unsigned int class_)
@cython.locals(
store=cython.dict,
service_record=DNSService
)
cdef bint _async_add(self, DNSRecord record)
@cython.locals(
service_record=DNSService
)
cdef void _async_remove(self, DNSRecord record)
@cython.locals(
record=DNSRecord,
created_double=double,
)
cpdef void async_mark_unique_records_older_than_1s_to_expire(self, cython.set unique_types, object answers, double now)
cpdef entries_with_name(self, str name)
@cython.locals(
record=DNSRecord,
now=double
)
cpdef current_entry_with_name_and_alias(self, str name, str alias)