gpt4 book ai didi

c++ - python tcp 服务器和 c++ 客户端之间的对话

转载 作者:太空狗 更新时间:2023-10-29 21:30:59 28 4
gpt4 key购买 nike

我在尝试在 python TCP 服务器和 c++ TCP 客户端之间进行通信时遇到问题。在第一次调用后工作正常,后续调用会导致问题。

就 WinSock 而言,send() 函数工作正常,它返回正确的长度并且 WSAGetLastError() 没有返回任何重要信息。

但是,当使用 wireshark 观察数据包时,我注意到第一个调用发送了两个数据包,一个 PSH,其中包含所有数据的 ACK,然后是一个 ACK​​,但随后的调用不起作用, 只发送 PSH,ACK 包,不发送后续的 ACK 包

接收计算机 wireshark 证实了这一点,python 服务器什么也不做,它没有任何数据从套接字中出来,而且我无法进行更深入的调试,因为套接字是一个 native 类

当我运行一个 c++ 客户端和一个 c++ 服务器(python 的黑客复制品)时,客户端始终忠实地发送 PSH、ACk 和 ACK 数据包,即使是在第一次调用之后也是如此。

winsock 发送函数是否应该始终发送 PSH、ACK 和 ACK?如果是这样,为什么它会在连接到我的 C++ 服务器而不是 python 服务器时这样做?有没有人遇到过类似的问题?

最佳答案

client sends a PSH,ACK and then the server sends a PSH,ACK and a FIN,PSH,ACK

有一个 FIN,那么您的服务器的 Python 版本是否会在初始读取后立即关闭连接?

如果您没有明确关闭服务器的套接字,服务器的远程套接字变量可能会超出范围,从而关闭它(并且您的 C++ 版本中不存在此错误)?

假设是这种情况,我可以用这段代码为服务器生成一个非常相似的 TCP 序列:

# server.py
import socket
from time import sleep

def f(s):
r,a = s.accept()
print r.recv(100)

s = socket.socket()
s.bind(('localhost',1234))
s.listen(1)

f(s)
# wait around a bit for the client to send it's second packet
sleep(10)

这是给客户的:

# client.py
import socket
from time import sleep

s = socket.socket()
s.connect(('localhost',1234))

s.send('hello 1')
# wait around for a while so that the socket in server.py goes out of scope
sleep(5)
s.send('hello 2')

启动您的数据包嗅探器,然后运行 ​​server.py,然后运行 ​​client.py。这是 tcpdump -A -i lo 的输出,它符合您的观察:

tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on lo, link-type EN10MB (Ethernet), capture size 96 bytes
12:42:37.683710 IP localhost:33491 > localhost.1234: S 1129726741:1129726741(0) win 32792 <mss 16396,sackOK,timestamp 640881101 0,nop,wscale 7>
E..<R.@.@...............CVC.........I|....@....
&3..........
12:42:37.684049 IP localhost.1234 > localhost:33491: S 1128039653:1128039653(0) ack 1129726742 win 32768 <mss 16396,sackOK,timestamp 640881101 640881101,nop,wscale 7>
E..<..@.@.<.............C<..CVC.....Ia....@....
&3..&3......
12:42:37.684087 IP localhost:33491 > localhost.1234: . ack 1 win 257 <nop,nop,timestamp 640881102 640881101>
E..4R.@.@...............CVC.C<......1......
&3..&3..
12:42:37.684220 IP localhost:33491 > localhost.1234: P 1:8(7) ack 1 win 257 <nop,nop,timestamp 640881102 640881101>
E..;R.@.@...............CVC.C<......./.....
&3..&3..hello 1
12:42:37.684271 IP localhost.1234 > localhost:33491: . ack 8 win 256 <nop,nop,timestamp 640881102 640881102>
E..4.(@.@...............C<..CVC.....1}.....
&3..&3..
12:42:37.684755 IP localhost.1234 > localhost:33491: F 1:1(0) ack 8 win 256 <nop,nop,timestamp 640881103 640881102>
E..4.)@.@...............C<..CVC.....1{.....
&3..&3..
12:42:37.685639 IP localhost:33491 > localhost.1234: . ack 2 win 257 <nop,nop,timestamp 640881104 640881103>
E..4R.@.@...............CVC.C<......1x.....
&3..&3..
12:42:42.683367 IP localhost:33491 > localhost.1234: P 8:15(7) ack 2 win 257 <nop,nop,timestamp 640886103 640881103>
E..;R.@.@...............CVC.C<......./.....
&3%W&3..hello 2
12:42:42.683401 IP localhost.1234 > localhost:33491: R 1128039655:1128039655(0) win 0
E..(..@.@.<.............C<......P...b...

9 packets captured
27 packets received by filter
0 packets dropped by kernel

关于c++ - python tcp 服务器和 c++ 客户端之间的对话,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1423251/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com