Home | History | Annotate | Download | only in asyncio

Lines Matching refs:protocol

70     def _make_socket_transport(self, sock, protocol, waiter=None, *,
72 return _SelectorSocketTransport(self, sock, protocol, waiter,
75 def _make_ssl_transport(self, rawsock, protocol, sslcontext, waiter=None,
80 rawsock, protocol, sslcontext, waiter,
84 ssl_protocol = sslproto.SSLProtocol(self, protocol, sslcontext, waiter,
90 def _make_legacy_ssl_transport(self, rawsock, protocol, sslcontext,
97 self, rawsock, protocol, sslcontext, waiter,
100 def _make_datagram_transport(self, sock, protocol,
102 return _SelectorDatagramTransport(self, sock, protocol,
215 protocol = None
218 protocol = protocol_factory()
222 conn, protocol, sslcontext, waiter=waiter,
226 conn, protocol, waiter=waiter, extra=extra,
235 # It's now up to the protocol to handle the connection.
243 if protocol is not None:
244 context['protocol'] = protocol
553 def __init__(self, loop, sock, protocol, extra=None, server=None):
564 self._protocol = protocol
605 def set_protocol(self, protocol):
606 self._protocol = protocol
644 'protocol': self._protocol,
680 def __init__(self, loop, sock, protocol, waiter=None,
682 super().__init__(loop, sock, protocol, extra, server)
738 # protocol can write more, but we still can't
818 def __init__(self, loop, rawsock, protocol, sslcontext, waiter=None,
835 super().__init__(loop, sslsock, protocol, extra, server)
836 # the protocol connection is only made after the SSL handshake
1050 def __init__(self, loop, sock, protocol, address=None,
1052 super().__init__(loop, sock, protocol, extra)