Home
last modified time | relevance | path

Searched refs:connect_ex (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Lib/asyncio/
Dtrsock.py101 def connect_ex(self, *args, **kwargs): member in TransportSocket
103 return self._sock.connect_ex(*args, **kwargs)
/third_party/python/Lib/
Dssl.py1313 def _real_connect(self, addr, connect_ex): argument
1325 if connect_ex:
1326 rc = super().connect_ex(addr)
1344 def connect_ex(self, addr): member in SSLSocket
Dasyncore.py331 err = self.socket.connect_ex(address)
/third_party/boost/boost/asio/detail/impl/
Dwin_iocp_socket_service_base.ipp600 if (connect_ex_fn connect_ex = get_connect_ex(impl, type))
626 BOOL result = connect_ex(impl.socket_,
/third_party/python/Doc/faq/
Dlibrary.rst774 You can use the :meth:`socket.connect_ex` method to avoid creating an exception. It will
775 just return the errno value. To poll, you can call :meth:`socket.connect_ex` again later
/third_party/python/Lib/test/
Dtest_ssl.py1081 rc = s.connect_ex((HOST, port))
1964 self.assertEqual(0, s.connect_ex(self.server_addr))
1976 rc = s.connect_ex(self.server_addr)
2255 rc = s.connect_ex((REMOTE_HOST, 443))
/third_party/python/Doc/library/
Dsocket.rst1226 .. method:: socket.connect_ex(address)
1235 .. audit-event:: socket.connect self,address socket.socket.connect_ex
/third_party/python/Doc/whatsnew/
D2.0.rst676 'hostname', 25 )` also works. :func:`socket.connect_ex` and :func:`socket.bind`
/third_party/python/Misc/
DHISTORY3141 - Issue #19919: Fix flaky SSL test. connect_ex() sometimes returns
9620 - Issue #12065: connect_ex() on an SSL socket now returns the original errno
10020 - Issue #11326: Add the missing connect_ex() implementation for SSL sockets,
26658 - The connect(), connect_ex() and bind() methods for sockets require
29990 - New socket method connect_ex() returns the error code from connect()