ACE 如何启用 IPv6
我在 Linux 中使用 ACE v5.7.1。 我想启用 ipv6,以便我的服务器也可以接受 ipv6 请求。我在 ace/config.h 文件中添加了 #define ACE_HAS_IPV6。但是
当我创建一个简单的客户端时, 方法 ACE_ipv6_enabled() 的返回值仍然是 0 ACE_INET_Addr(port,ipv6_address) 并尝试连接服务器,但出现错误 ACE_INET_Addr :: 权限被拒绝
请帮助我。
I am using ACE v5.7.1 in linux.
I want to enable ipv6 so that my server can accept ipv6 requests also.i have added #define ACE_HAS_IPV6 in the ace/config.h file.But still the return value from the method ACE_ipv6_enabled() is 0
when i create a simple client with ACE_INET_Addr(port,ipv6_address) and trying to connect the server it is giving error ACE_INET_Addr :: permission denied
Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您似乎为此使用了不正确的构造函数。看一下这个链接:
http://www.dre.vanderbilt.edu/Doxygen/5.7.1/html/ace/a00246.html#0ef39cee9fc65be37ca6ce4092b6ea04
您需要像下面这样调用它:
默认情况下你有
AF_UNSPEC
,它可能会假设AF_INET
You seem to be using the Incorrect constructor for this. Take a look at this link:
http://www.dre.vanderbilt.edu/Doxygen/5.7.1/html/ace/a00246.html#0ef39cee9fc65be37ca6ce4092b6ea04
You will need to call it similar to the following:
By default you have
AF_UNSPEC
which will probably assumeAF_INET