有什么方法可以立即释放绑定的套接字吗?

发布于 2025-01-01 17:18:59 字数 182 浏览 2 评论 0原文

我正在开发一个应用程序服务器,在此期间我不断地编辑-重新编译-重新运行代码。不幸的是,中断代码后,内核(Ubuntu 11.10)并没有立即回收绑定到套接字的端口,因此我必须等待几分钟才能重新运行。

我认为在中断处理程序中正确关闭套接字可以解决问题,但显然没有效果。

有没有什么方法可以加快这个过程,从而加快开发周期?

I’m developing an application server, during which I constantly edit–recompile–rerun the code. Unfortunately, after interrupting the code, the kernel (Ubuntu 11.10) does not immediately reclaim the port bound to the socket, so I have to wait several minutes until I can rerun.

I thought that properly closing the socket in an interrupt handler solves the problem but it apparently has no effect.

Is there any way to speed up the process and therefore the development cycle?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

作业与我同在 2025-01-08 17:18:59

打开套接字后,在套接字上设置 SO_REUSEADDR 选项。有关详细信息,请参阅此问题

Set the SO_REUSEADDR option on the socket after opening it. See this question for more information.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文