TCP Servers and clients

Source: Internet
Author: User

TCP Server writes: Listens on a port, receives data after the request is established and recovers bye, then closes the connection and waits for other clients to connect.

Server-side Programs

From socket Import *

Tcp_server = socket (af_inet,sock_stream) #创建socket

Tcp_server.bind ((' ', 5001)) #绑定本地IP与端口

Tcp_server.listen (5) #设置最大监听数

Client,client_info = tcp_server.accept () #等待连接

Recv_data = Client.recv (1024x768) #接收数据

Client.close ()

Tcp_server.close () #关闭连接

Client programs

From socket Import *

Tcp_client = socket (af_inet,sock_stream) #创建socket

Tcp_client.connect ((' localhost ', 5001)) #连接服务器

Tcp_client.send (' Hello python ') #发送数据

Tcp_client.close () #关闭连接

TCP Servers and clients

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.