linux – 只接受Go中Localhost的HTTP连接?

linux – 只接受Go中Localhost的HTTP连接?,第1张

概述我在Golang中有一个简单的HTTP服务器: h := http.NewServeMux()h.Handle("/somepath", MyHandler)s := &http.Server{ Addr: "1234", Handler: h,} s.ListenAndServe(); 在调用者不是localhost的情况下删除连接的最佳方法是什么?目前我正 我在Golang中有一个简单的http服务器:

h := http.NewServeMux()h.Handle("/somepath",MyHandler)s := &http.Server{    Addr:    "1234",Handler: h,}   s.ListenAndServe();

在调用者不是localhost的情况下删除连接的最佳方法是什么?目前我正在考虑检查底层连接信息并确保IP地址为127.0.0.1,但这会浪费大量资源(并运行一大堆Go代码),最终会丢弃连接.理想情况下,我可以检测Golang服务器根据IP地址丢弃初始TCP SYN数据包,而不是根本不创建TCP连接(或显示此端口正在侦听).

这里最干净的道路是什么?

解决方法 将 VonC的评论转换为答案.

您可以通过在http.Server.Addr或http.ListenAndServe中设置host:port来绑定主机.

他们在内部使用net.Listen.

net.Listen开始:

For TCP and UDP,the Syntax of laddr is “host:port”,like “127.0.0.1:8080”. If host is omitted,as in “:8080”,Listen Listens on all available interfaces instead of just the interface with the given host address.

总结

以上是内存溢出为你收集整理的linux – 只接受Go中Localhost的HTTP连接?全部内容,希望文章能够帮你解决linux – 只接受Go中Localhost的HTTP连接?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1027719.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存