【2013】实习收获3:python网络编程--client端与server端入门(server)

(1) In order to build a connection we also need build a socket in server, whic't  is the same as in client

s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)

(2) Also we can config the socket with setsockopt() function.

s.setsockopt(socket.SOL_SOCKET,socket.SO_REUSEADDR,1)

In here, we set the socket reuseable, which means we can reuse the addr and port right after we close the connection, so we don't need wait serval minutes while system release the addr and port. (By default the system would hold the addr and port for a while, and we will feel not convinient when debugging)

(3) After built the socket, we need bind the socket to a port and interface. Also, the value in bind() is a tuple.

s.bind((host,port))

(4) The last step to connect is waiting for the connection

s.listen(5)

.(5). Now since the connection has been built, it's time to realize the communication. In socket programming, it always run a endless loop to continue the connections,

In Python, we always use :

while 1:

xxxxxx

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值