gpt4 book ai didi

ios - 如何仅在 iOS 中通过蜂窝网络正确发送请求

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:29:38 24 4
gpt4 key购买 nike

我的问题显然是两种情况:

  • (1) 仅通过 wifi 发送请求 URL1
  • (2) 仅通过手机发送请求 URL2

我知道 Reachability 实用程序(Apple 的代码和 AFNetworking/Alamofire 代码)和 allowsCellularAccess 属性(在 NSMutableURLRequest 和 NSURLSessionConfiguration 中)。

但是这些只能解决案例 (1)(因为我将 allowsCellularAccess 设置为 NO)。无法确保情况 (2),因为请求可以通过蜂窝或 wifi(如果可用)运行。即使我仅通过 Reachability for cellular 检查状态,仍然存在本文档中描述的一些异常情况 Restrict Cellular Networking Correctly

有没有更好的方法来确保仅使用 Cellular 网络,使用 Objective-C 或 Swift?

最佳答案

您可以使用 IP_BOUND_IF 在套接字中执行此操作:

  1. 使用“ifaddrs.h”中包含的“getifaddrs”获取接口(interface)地址:

struct ifaddrs *interfaces = NULL;
struct ifaddrs *temp_addr = NULL;
NSInteger success = getifaddrs(&interfaces);
if (success == 0) {
// Loop through linked list of interfaces
temp_addr = interfaces;
while(temp_addr != NULL) {
if(temp_addr->ifa_addr->sa_family == AF_INET) {
// Get NSString from C String
NSString* ifaName = [NSString stringWithUTF8String:temp_addr->ifa_name];
NSString* address = [NSString stringWithUTF8String:inet_ntoa(((struct sockaddr_in *) temp_addr->ifa_addr)->sin_addr)];
NSString* mask = [NSString stringWithUTF8String:inet_ntoa(((struct sockaddr_in *) temp_addr->ifa_netmask)->sin_addr)];
NSString* gateway = [NSString stringWithUTF8String:inet_ntoa(((struct sockaddr_in *) temp_addr->ifa_dstaddr)->sin_addr)];
NSLog(@"%@;%@;%@;%@",ifaName,address,mask,gateway);
}
temp_addr = temp_addr->ifa_next;
}
}

然后你会看到这样的输出:<我>
lo0;127.0.0.1;255.0.0.0;127.0.0.1
pdp_ip0;10.9.163.185;255.255.255.255;10.9.163.185
en0;10.0.0.6;255.255.0.0;10.0.255.255

(“pdp_ip0”表示手机接口(interface))

  1. 使用“net/if.h”中的“if_nametoindex”和“sys/socket.h”中的“setsockopt”通过指定接口(interface)发送msg

int s = socket(AF_INET, SOCK_STREAM, 0); 
int index = if_nametoindex( "pdp_ip0");
int suc = setsockopt(s, IPPROTO_IP, IP_BOUND_IF, &index, sizeof(index));

然后连接 socket ,你会看到你已经通过蜂窝接口(interface)连接到服务器

关于ios - 如何仅在 iOS 中通过蜂窝网络正确发送请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38603432/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com