Home
last modified time | relevance | path

Searched refs:Telnet (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython3/Doc/library/
Dtelnetlib.rst1 :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/
Dtelnetlib.rst1 :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/
Dtest_telnetlib.py60 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/
Dtest_telnetlib.py42 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/
Dtelnet_scpi_client.py48 self._tn = telnetlib.Telnet()
/external/autotest/server/cros/network/
Dtelnet_helper.py42 self._tn = telnetlib.Telnet()
/external/python/pyserial/documentation/
Dexamples.rst84 - 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.
Dpyserial_api.rst912 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
Durl_handlers.rst52 timeout applies to the initial Telnet / :rfc:`2217` negotiation as well
/external/python/cpython3/Lib/
Dtelnetlib.py141 class Telnet: class
671 with Telnet() as tn:
/external/python/cpython2/Lib/
Dtelnetlib.py133 class Telnet: class
784 tn = Telnet()
/external/openthread/tools/harness-automation/autothreadharness/
Dpdu_controller.py90 self.tn = telnetlib.Telnet(self.ip, self.port)
/external/ppp/pppd/plugins/radius/etc/
Ddictionary162 VALUE Login-Service Telnet 0
/external/curl/
DCMakeLists.txt239 option(CURL_DISABLE_TELNET "disables Telnet" OFF)
/external/python/cpython3/Misc/NEWS.d/
D3.6.0a1.rst518 telnetlib.Telnet is now a context manager.
/external/tcpdump/
DCHANGES539 Telnet: Add some bounds checks
/external/python/cpython3/Doc/whatsnew/
D3.6.rst1523 :class:`~telnetlib.Telnet` is now a context manager (contributed by
D2.6.rst2468 :class:`telnetlib.Telnet` class constructor, specifying a timeout
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2464 :class:`telnetlib.Telnet` class constructor, specifying a timeout
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/python/cpython3/Misc/
DHISTORY14108 - Issue #6106: telnetlib.Telnet.process_rawq doesn't handle default WILL/WONT