Searched refs:Telnet (Results 1 – 10 of 10) sorted by relevance
/third_party/python/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 …]
|
/third_party/python/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)
|
/third_party/mesa3d/.gitlab-ci/bare-metal/ |
D | telnet-buffer.py | 34 tn = telnetlib.Telnet(host, port, 1000000)
|
/third_party/python/Lib/ |
D | telnetlib.py | 141 class Telnet: class 671 with Telnet() as tn:
|
/third_party/curl/ |
D | CMakeLists.txt | 252 option(CURL_DISABLE_TELNET "disables Telnet" OFF)
|
/third_party/NuttX/ |
D | ReleaseNotes | 1322 and a NuttShell (NSH) configuration with Telnet support. 2579 Telnet console with NSH). 2581 * Networking: Add a lower level, primitive socket interface. Telnet 2584 A New Telnet daemon was created. It wraps a Telnet session within a 2586 Telnet session will then be inherited by tasks created from the 2587 Telnet session and the stdin/stdout from the created task will 2588 still go through the same Telnet connection. 2747 provides NSH only through a Telnet connection. 2776 executing the NSH 'ifconfig' command over Telnet. 3698 once for each Telnet session. [all …]
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0a1.rst | 518 telnetlib.Telnet is now a context manager.
|
/third_party/python/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
|
/third_party/python/Misc/ |
D | HISTORY | 14108 - Issue #6106: telnetlib.Telnet.process_rawq doesn't handle default WILL/WONT
|