I have found a cool framework tcmportmapper for mapping the ports over NAT written in Objective-C (as a wrapper framework for some C libraries). I would like to use it in an iOS app, but so far I had little success building it with iOS SDK. Do you know some other framework with similar functionality for iOS or maybe some tips how one can compile a framework written for Cocoa for iOS ?
I have found a cool framework tcmportmapper for mapping the ports over NAT written
Share
After some research I realized the functionality is actually included in the Bonjour libraries and it pretty much comes down to a single function DNSServiceNATPortMappingCreate. Works like charm, so after all no porting will be necessary I guess.