Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何发送一个字节(或多个字节)来测试在我的应用程序中侦听端口的 TCP 套接字?我的应用程序收到一个字节,告诉它要做什么。一些操作将接收额外的字节以进一步指示它。
我已经尝试过使用 Telnet,但是当我输入 int 值时,它似乎发送了 int(4 个字节)。
我只需要发送一个字节(8 位),而不是 4 个字节的序列。有没有一种简单的方法来测试我的套接字应用程序?我应该创建另一个应用程序来测试它吗?
您不应该为此使用 telnet。
更好的选择是使用 netcat。
然后,通过 bash 管道传输您的命令
例如。
echo -n 0x03 | nc 127.0.0.1 1234