Searched refs:Telnet (Results 1 – 21 of 21) sorted by relevance
/external/python/cpython3/Doc/library/ |
D | telnetlib.rst | 1 :mod:`telnetlib` --- Telnet client 5 :synopsis: Telnet client class. 11 .. index:: single: protocol; Telnet 15 The :mod:`telnetlib` module provides a :class:`Telnet` class that implements the 16 Telnet protocol. See :rfc:`854` for details about the protocol. In addition, it 29 .. class:: Telnet(host=None, port=0[, timeout]) 31 :class:`Telnet` represents a connection to a Telnet server. The instance is 32 initially not connected by default; the :meth:`~Telnet.open` method must be used to 46 A :class:`Telnet` object is a context manager and can be used in a 50 >>> from telnetlib import Telnet [all …]
|
/external/python/cpython2/Doc/library/ |
D | telnetlib.rst | 1 :mod:`telnetlib` --- Telnet client 5 :synopsis: Telnet client class. 9 .. index:: single: protocol; Telnet 15 The :mod:`telnetlib` module provides a :class:`Telnet` class that implements the 16 Telnet protocol. See :rfc:`854` for details about the protocol. In addition, it 29 .. class:: Telnet([host[, port[, timeout]]]) 31 :class:`Telnet` represents a connection to a Telnet server. The instance is 52 :rfc:`854` - Telnet Protocol Specification 53 Definition of the Telnet protocol. 58 Telnet Objects [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_telnetlib.py | 60 telnet = telnetlib.Telnet(HOST, self.port) 67 telnet = telnetlib.Telnet(HOST, self.port) 78 telnet = telnetlib.Telnet(HOST, self.port, timeout=None) 85 telnet = telnetlib.Telnet(HOST, self.port, timeout=30) 90 telnet = telnetlib.Telnet() 97 telnet = telnetlib.Telnet(HOST, self.port, timeout=30) 132 telnet = telnetlib.Telnet(HOST, self.port) 141 telnet = telnetlib.Telnet(HOST, self.port) 151 telnet = telnetlib.Telnet(HOST, self.port) 163 telnet = telnetlib.Telnet(HOST, self.port) [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_telnetlib.py | 42 telnet = telnetlib.Telnet(HOST, self.port) 46 with telnetlib.Telnet(HOST, self.port) as tn: 54 telnet = telnetlib.Telnet(HOST, self.port) 65 telnet = telnetlib.Telnet(HOST, self.port, timeout=None) 72 telnet = telnetlib.Telnet(HOST, self.port, timeout=30) 77 telnet = telnetlib.Telnet() 84 telnet = telnetlib.Telnet(HOST, self.port, timeout=30) 107 class TelnetAlike(telnetlib.Telnet): 115 telnetlib.Telnet.msg(self, msg, *args)
|
/external/python/mobly/mobly/controllers/attenuator_lib/ |
D | telnet_scpi_client.py | 48 self._tn = telnetlib.Telnet()
|
/external/autotest/server/cros/network/ |
D | telnet_helper.py | 42 self._tn = telnetlib.Telnet()
|
/external/python/pyserial/documentation/ |
D | examples.rst | 84 - Telnet character IAC (0xff) needs to be doubled in data stream. IAC followed 85 by another value is interpreted as Telnet command sequence. 86 - Telnet negotiation commands are sent when connecting to the server.
|
D | pyserial_api.rst | 912 Initializes the Manager and starts negotiating with client in Telnet 924 raw form (:meth:`escape` must not be used) as it is used to send Telnet 935 :return: data, escaped for Telnet/:rfc:`2217` 946 :param data: data read from the network, including Telnet and 948 :return: data, free from Telnet and :rfc:`2217` controls. 972 :rfc:`2217` - Telnet Com Port Control Option
|
D | url_handlers.rst | 52 timeout applies to the initial Telnet / :rfc:`2217` negotiation as well
|
/external/python/cpython3/Lib/ |
D | telnetlib.py | 141 class Telnet: class 671 with Telnet() as tn:
|
/external/python/cpython2/Lib/ |
D | telnetlib.py | 133 class Telnet: class 784 tn = Telnet()
|
/external/openthread/tools/harness-automation/autothreadharness/ |
D | pdu_controller.py | 90 self.tn = telnetlib.Telnet(self.ip, self.port)
|
/external/ppp/pppd/plugins/radius/etc/ |
D | dictionary | 162 VALUE Login-Service Telnet 0
|
/external/curl/ |
D | CMakeLists.txt | 239 option(CURL_DISABLE_TELNET "disables Telnet" OFF)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0a1.rst | 518 telnetlib.Telnet is now a context manager.
|
/external/tcpdump/ |
D | CHANGES | 539 Telnet: Add some bounds checks
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.6.rst | 1523 :class:`~telnetlib.Telnet` is now a context manager (contributed by
|
D | 2.6.rst | 2468 :class:`telnetlib.Telnet` class constructor, specifying a timeout
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 2464 :class:`telnetlib.Telnet` class constructor, specifying a timeout
|
/external/jline/src/src/test/resources/jline/example/ |
D | english.gz |
|
/external/python/cpython3/Misc/ |
D | HISTORY | 14108 - Issue #6106: telnetlib.Telnet.process_rawq doesn't handle default WILL/WONT
|