在 gSoap 中,“主机”的作用是什么?参数soap_bind 是什么意思?
gSoap API 函数 soap_bind
有一个名为 host
的参数。该文档不清楚该论证的目的是什么。是:
- 我想监听的本地网络接口的主机名/IP
- 我允许连接的唯一远程主机的主机名/IP
- 还有其他吗?
The gSoap API function soap_bind
has an argument called host
. The documentation is unclear about what the argument is for. Is it:
- The hostname/IP of a local network interface on which I want to listen
- The hostname/IP of the only remote host I will allow to connect
- Something else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
选项 1:您将侦听的本地接口的主机名或 IP 地址。
它对应于传统的套接字绑定(然后监听、接受)序列。
Option 1: the hostname or IP address of the local interface you'll be listening on.
It corresponds to the traditional sockets bind (then listen, accept) sequence.