Node.js net.Socket().connect() 挂起并且无法连接到服务器

发布于 2025-01-12 03:08:56 字数 686 浏览 0 评论 0原文

我使用 Node.js 的 net 模块设置了服务器和客户端。

这是我的服务器代码:

const server = net.createServer(function(socket) {
    socket.on("data", function(data) {
        // Do stuff with the connection
        socket.end();
    });
});
server.listen(this.port);

这是我的客户端代码:

const client = new net.Socket();
client.connect(this.port, this.host, function() {
    client.write("Test Message");
});

当在同一台计算机上运行时,两者都工作正常,但是当我尝试从另一台计算机连接时,客户端挂在 client.connect() 永远(直到我终止进程)。当我尝试在命令提示符中使用 telnet 命令时,我没有收到服务器的响应,但客户端不仅仅说连接被拒绝。这是怎么回事?

I have a server and a client set up using the net module for Node.js.

Here is my server's code:

const server = net.createServer(function(socket) {
    socket.on("data", function(data) {
        // Do stuff with the connection
        socket.end();
    });
});
server.listen(this.port);

Here is my client's code:

const client = new net.Socket();
client.connect(this.port, this.host, function() {
    client.write("Test Message");
});

When run on the same machine, both of these work fine, but when I try to connect from a different computer, the client hangs at client.connect() forever (until I terminate the process). When I tried to use the telnet command in command prompt, I don't get a response from the server, but the client doesn't just say connection refused. What's going on here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文