Hi,
Peer-to-peer Wi-Fi + TCP works great. Here's how we create our TCP connection:
self.netService = [[NSNetService alloc] initWithDomain:domain type:protocol name:name port:self.port]; self.netService.includesPeerToPeer = YES; [self.netService setDelegate:self]; [self.netService publishWithOptions:NSNetServiceListenForConnections];
But as explained in the documentation, NSNetServiceListenForConnections doens't work for an UDP connection: "The listener supports only TCP connections."
Is there a way to enable Peer-to-peer Wi-Fi + UDP?