HomeSort by relevance Sort by last modified time
    Searched refs:Telnet (Results 1 - 6 of 6) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_telnetlib.py 60 telnet = telnetlib.Telnet(HOST, self.port)
61 telnet.sock.close()
67 telnet = telnetlib.Telnet(HOST, self.port)
70 self.assertEqual(telnet.sock.gettimeout(), 30)
71 telnet.sock.close()
78 telnet = telnetlib.Telnet(HOST, self.port, timeout=None)
81 self.assertTrue(telnet.sock.gettimeout() is None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_telnetlib.py 60 telnet = telnetlib.Telnet(HOST, self.port)
61 telnet.sock.close()
67 telnet = telnetlib.Telnet(HOST, self.port)
70 self.assertEqual(telnet.sock.gettimeout(), 30)
71 telnet.sock.close()
78 telnet = telnetlib.Telnet(HOST, self.port, timeout=None)
81 self.assertTrue(telnet.sock.gettimeout() is None
    [all...]
  /external/chromium_org/chrome/test/pyautolib/chromeos/
power_strip.py 48 Sample telnet interaction:
74 tn = telnetlib.Telnet()
76 # are made to the telnet server on the power strip, we retry executing
105 # Exiting the telnet session cleanly significantly reduces the chance of
106 # connection error on initiating the following telnet session.
  /external/ppp/pppd/plugins/radius/etc/
dictionary 162 VALUE Login-Service Telnet 0
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
telnetlib.py 1 r"""TELNET client class.
3 Based on RFC 854: TELNET Protocol Specification, by J. Postel and
8 >>> from telnetlib import Telnet
9 >>> tn = Telnet('www.python.org', 79) # connect to finger port
20 It is possible to pass a Telnet object to select.select() in order to
42 __all__ = ["Telnet"]
47 # Telnet protocol defaults
50 # Telnet protocol characters (don't change)
71 # Telnet protocol options code (don't change)
72 # These ones all come from arpa/telnet.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
telnetlib.py 1 r"""TELNET client class.
3 Based on RFC 854: TELNET Protocol Specification, by J. Postel and
8 >>> from telnetlib import Telnet
9 >>> tn = Telnet('www.python.org', 79) # connect to finger port
20 It is possible to pass a Telnet object to select.select() in order to
42 __all__ = ["Telnet"]
47 # Telnet protocol defaults
50 # Telnet protocol characters (don't change)
71 # Telnet protocol options code (don't change)
72 # These ones all come from arpa/telnet.
    [all...]

Completed in 357 milliseconds