Lines Matching defs:sockets
276 def __init__(self, loop, sockets, protocol_factory, ssl_context, backlog,
279 self._sockets = sockets
291 return f'<{self.__class__.__name__} sockets={self.sockets!r}>'
328 def sockets(self):
334 sockets = self._sockets
335 if sockets is None:
339 for sock in sockets:
890 # NB: sendfile syscall is not supported for SSL sockets and
926 raise ValueError("only SOCK_STREAM type sockets are supported")
1105 # We support passing AF_UNIX sockets even though we have
1479 sockets = []
1507 sockets.append(sock)
1531 for sock in sockets:
1538 sockets = [sock]
1540 for sock in sockets:
1543 server = Server(self, sockets, protocol_factory,