实现 ENUM DNS 查找的库?
我正在编写一个 C++ 应用程序,它必须执行 ENUM 查找(电话号码通过 DNS 系统进行映射,RFC 6116)。
我不想重新发明轮子。是否有实现 ENUM 查找的库?
I'm writing a C++ application that has to do ENUM lookups (telephone number mappings via the DNS system, RFC 6116).
I don't want to reinvent the wheel. Is there a library the implements ENUM lookups ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不是 C++,但我的 enumdroid 应用程序中有一个 Java 实现。
它从基本 DDDS 规范一直到 DNS 中的 DDDS,再到作为类层次结构的 ENUM。
Not C++, but I have a Java implementation in my enumdroid application.
It works from the base DDDS specifications up through DDDS in DNS and thence to ENUM as a class hierarchy.
看看ENUMPlus。
Take a look at ENUMPlus.
实现 ENUM 查找的 C++ 库是 PTLib(OPAL 项目的一部分)。
A C++ library that implements ENUM lookups is PTLib (part of the OPAL project).