How Python implements the Telnet server

Source: Internet
Author: User
The example in this article describes how Python implements the Telnet server. Share to everyone for your reference. The implementation method is as follows:

Import Threading Class MyThread (threading. Thread):  def __init__ (self,conn,add):    Threading. Thread.__init__ (self)    self.inputstr = "  self.connection=conn  self.address=add  def run (self):  ii=0 while    True:    self.connection.settimeout (buf)      = Self.connection.recv (1024x768)    if Buf.rfind ("\ n") >-1:         print "**-" +self.inputstr        self.connection.close () break      Else:         Self.inputstr+=buf    if ii==0:      self.connection.send (buf)    ii+=1        continueif __name__ = = ' __main__ ' :   Import Socket   sock = Socket.socket (socket.af_inet, socket. SOCK_STREAM)  sock.bind ((' 192.168.101.103 ', 8014))   Sock.listen (5) while  True:     try:      Connection,address = sock.accept ()      ithread=mythread (connection,address)      Ithread.start ()    except Socket.timeout:       print ' Time Out '

Hopefully this article will help you with Python programming.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.