I'm working on a fairly low-key, low budget project that's having trouble issues with their server load when we release a new patch. For our solution, we decided that using torrenting to distribute our patches would be far superior than our current method. As of yet, we haven't been able to actually find a pre-built library to do this, so we settled on libTorrent. However, libTorrent is written in C++, which is slightly problematic. Our preferred solution is to use libTorrent as a framework, then just write our patching code. However, none of us are sure how to actually go about doing such.
How do we go about this? Googling turned up Objective-C++ wrapping with the .mm extension. How would you do that in a framework?