Home
last modified time | relevance | path

Searched refs:connect_ex (Results 1 – 10 of 10) 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.py1345 def _real_connect(self, addr, connect_ex): argument
1357 if connect_ex:
1358 rc = super().connect_ex(addr)
1376 def connect_ex(self, addr): member in SSLSocket
Dasyncore.py338 err = self.socket.connect_ex(address)
/third_party/boost/libs/asio/include/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/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.rst771 You can use the :meth:`socket.connect_ex` method to avoid creating an exception. It will
772 just return the errno value. To poll, you can call :meth:`socket.connect_ex` again later
/third_party/python/Lib/test/
Dtest_ssl.py1117 rc = s.connect_ex((HOST, port))
2036 self.assertEqual(0, s.connect_ex(self.server_addr))
2048 rc = s.connect_ex(self.server_addr)
2362 rc = s.connect_ex((REMOTE_HOST, 443))
/third_party/python/Doc/library/
Dsocket.rst1266 .. method:: socket.connect_ex(address)
1275 .. 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()