ANSI C 如何在 Linux 中获取名称服务器 (DNS) 地址?

发布于 2024-11-09 14:17:58 字数 88 浏览 0 评论 0原文

我想在我的代码中使用本地 DNS 地址,并且正在寻找一个可以生成它的库。有类似的东西还是我必须自己解析 /etc/resolv.conf ?

谢谢

I want to use in my code local DNS addresses and am looking for a library that would produce it. Is there anything like it or do I have to parse /etc/resolv.conf myself?

Thanks

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

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

发布评论

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

评论(2

我的奇迹 2024-11-16 14:17:58

您可以使用解析器函数,如这个问题或从文件/etc/resolv.conf读取名称服务器的地址,这是一个简单的文本文件,例如

# Generated by NetworkManager
nameserver x.x.x.x
nameserver y.y.y.y

,其中 xxxxyyyy 是 IP 地址。

You can use the resolver functions as described in the answer to this question or read the addresses of name servers from the file /etc/resolv.conf which is a simple text file, such as

# Generated by NetworkManager
nameserver x.x.x.x
nameserver y.y.y.y

where x.x.x.x and y.y.y.y are ip addresses.

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