| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/zeroconf/_handlers/ |
Upload File : |
import cython
from .._dns cimport DNSRecord
from .._protocol.outgoing cimport DNSOutgoing
cdef class QuestionAnswers:
cdef public dict ucast
cdef public dict mcast_now
cdef public dict mcast_aggregate
cdef public dict mcast_aggregate_last_second
cdef class AnswerGroup:
cdef public double send_after
cdef public double send_before
cdef public cython.dict answers
cdef object _FLAGS_QR_RESPONSE_AA
cdef object NAME_GETTER
cpdef DNSOutgoing construct_outgoing_multicast_answers(cython.dict answers)
cpdef DNSOutgoing construct_outgoing_unicast_answers(
cython.dict answers, bint ucast_source, cython.list questions, object id_
)
@cython.locals(answer=DNSRecord, additionals=cython.set, additional=DNSRecord)
cdef void _add_answers_additionals(DNSOutgoing out, cython.dict answers)