请教一个关于python socket的问题
2个回答
展开全部
比较简单的方法就是存储一个字典列表,每次一个链接把对象都保存到对象中,同时对象中存储对方IP。每次client连接过来,先判断列表中IP是否超限, 如果不超限 允许连接 把对象和IP存储到列表中。 如果超限 不允许连接 遍历列表中所有IP,如果IP和连接IP相同,对象断开即可,同时从列表中删除
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2017-06-12
展开全部
不要重复用同一个socket. 找不到文档支持这一点, 但改掉这一点后就没问题了. 测试结果对比:
Plain Text code
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/tmp/ python portscan.py # 不重用socket, 结果正确
8080 is connected!
error:[Errno 111] Connection refused
error:[Errno 111] Connection refused
8083 is connected!
error:[Errno 111] Connection refused
# 重用socket, 结果有两个问题:
# 1. 8081本没开放, 但程序认为它开放了.
# 2. 8083开放了, 但程序没检测到
/tmp/ python portscan2.py
error:[Errno 111] Connection refused
error:[Errno 103] Software caused connection abort
8080 is connected!
8081 is connected!
error:[Errno 106] Transport endpoint is already connected
error:[Errno 106] Transport endpoint is already connected
error:[Errno 106] Transport endpoint is already connected
Plain Text code
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/tmp/ python portscan.py # 不重用socket, 结果正确
8080 is connected!
error:[Errno 111] Connection refused
error:[Errno 111] Connection refused
8083 is connected!
error:[Errno 111] Connection refused
# 重用socket, 结果有两个问题:
# 1. 8081本没开放, 但程序认为它开放了.
# 2. 8083开放了, 但程序没检测到
/tmp/ python portscan2.py
error:[Errno 111] Connection refused
error:[Errno 103] Software caused connection abort
8080 is connected!
8081 is connected!
error:[Errno 106] Transport endpoint is already connected
error:[Errno 106] Transport endpoint is already connected
error:[Errno 106] Transport endpoint is already connected
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询