c-ares specifying network interface for the DNS resolves(c-ares 为 DNS 解析指定网络接口)
问题描述
有没有办法设置DNS请求可以绑定到的网络接口.
Is there a way in which you can set the network interface to which the DNS requests can be bound to.
我们有一个项目需要使用高优先级流会话通过一个接口,所有其他请求通过第二个接口.
We have a project which requires to use a highpriority streaming session go through one interface and all the other requests channeled through the second one.
示例:设置 'eth0' 以便所有 ares 请求都通过 'eth0' 而不是在 'wlan0' 上.
example: setting 'eth0' so that all the ares requests will go through 'eth0' and not on 'wlan0'.
我在 c-ares(在 ares_init_options() API 中)找不到任何提供此设置界面选项的 API.
I was not able to find any API in c-ares (in ares_init_options() API) that gives this option of setting interface.
如果有什么方法可以做到这一点,或者我错过了什么,请告诉我.
Can you please let me know if there is some way to achive this or if I missed something.
谢谢,阿俊
推荐答案
如果你有一个相当新的 c-ares (c-ares >= 1.7.4),请查看 ares.h(这是我唯一的地方实际上发现它被引用了).
If you have a fairly new c-ares (c-ares >= 1.7.4), check out ares.h (It's the only place I've actually found it referenced).
/* These next 3 configure local binding for the out-going socket
* connection. Use these to specify source IP and/or network device
* on multi-homed systems.
*/
CARES_EXTERN void ares_set_local_ip4(ares_channel channel, unsigned int local_ip);
/* local_ip6 should be 16 bytes in length */
CARES_EXTERN void ares_set_local_ip6(ares_channel channel,
const unsigned char* local_ip6);
/* local_dev_name should be null terminated. */
CARES_EXTERN void ares_set_local_dev(ares_channel channel,
const char* local_dev_name);
这篇关于c-ares 为 DNS 解析指定网络接口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:c-ares 为 DNS 解析指定网络接口
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- C++ 协变模板 2021-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 从python回调到c++的选项 2022-11-16
- STL 中有 dereference_iterator 吗? 2022-01-01
- 静态初始化顺序失败 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01