zoukankan      html  css  js  c++  java
  • socketserver 并发连接

    socketserver.TCPServer Example

    server side

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    import socketserver
     
    class MyTCPHandler(socketserver.BaseRequestHandler):
        """
        The request handler class for our server.
     
        It is instantiated once per connection to the server, and must
        override the handle() method to implement communication to the
        client.
        """
     
        def handle(self):
            # self.request is the TCP socket connected to the client
            self.data = self.request.recv(1024).strip()
            print("{} wrote:".format(self.client_address[0]))
            print(self.data)
            # just send back the same data, but upper-cased
            self.request.sendall(self.data.upper())
     
    if __name__ == "__main__":
        HOST, PORT = "localhost"9999
     
        # Create the server, binding to localhost on port 9999
        server = socketserver.TCPServer((HOST, PORT), MyTCPHandler)
     
        # Activate the server; this will keep running until you
        # interrupt the program with Ctrl-C
        server.serve_forever()

    client side

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    import socket
    import sys
     
    HOST, PORT = "localhost"9999
    data = " ".join(sys.argv[1:])
     
    # Create a socket (SOCK_STREAM means a TCP socket)
    sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
     
    try:
        # Connect to server and send data
        sock.connect((HOST, PORT))
        sock.sendall(bytes(data + " ""utf-8"))
     
        # Receive data from the server and shut down
        received = str(sock.recv(1024), "utf-8")
    finally:
        sock.close()
     
    print("Sent:     {}".format(data))
    print("Received: {}".format(received))

    上面这个例子你会发现,依然不能实现多并发,哈哈,在server端做一下更改就可以了

    1
    server = socketserver.TCPServer((HOST, PORT), MyTCPHandler)

    改成

    1
    server = socketserver.ThreadingTCPServer((HOST, PORT), MyTCPHandler)

     





  • 相关阅读:
    tcpdump教程入门
    ubuntu编译运行xv6
    sed学习笔记
    词典及容错处理
    [译]SpringMVC自定义验证注解(SpringMVC custom validation annotations)
    git指令集合
    linux绝大部分命令集合(自己需要的时候方便查找)
    django中使用AJAX时如何获取表单参数(按钮携带参数)
    正则表达式基础
    linux备份mysql文件并恢复的脚本,以及其中出现的错误:ERROR: ASCII '' appeared in the statement
  • 原文地址:https://www.cnblogs.com/bruceg/p/5264424.html
Copyright © 2011-2022 走看看