We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Andorid may need to use socks to proxy all requests in order to address DNS pollution issues. So DOH is also very necessary.
The text was updated successfully, but these errors were encountered:
Could you please provide more details on the use case or specific scenario where this feature would be applied?
Sorry, something went wrong.
我的意思是, 各个客户端有很多socks的场景, hev_task_dns_server_getaddrinfo() 这里的都是使用int getaddrinfo( const char *hostname, const char *service, const struct addrinfo *hints, struct addrinfo **result ); 查询dns, 现在网络污染太严重, 可能需要增强查询, 提供另外一种 getaddrinfo的实现方式, 如果打开这个开关,然后各个平台自己去实现这个getaddrinfo的查询。
流程是:
if enableCustomGetAddrinfo { // 假设这里是android 的实现binding. getaddrinfoEnhance() }else{ // 使用系统的查询 getaddrinfo() }
明白。我考虑一下怎么处理比较合适
No branches or pull requests
Andorid may need to use socks to proxy all requests in order to address DNS pollution issues. So DOH is also very necessary.
The text was updated successfully, but these errors were encountered: