PDA

View Full Version : Cocoa Socket Control?


SummerLand
2002.11.29, 03:56 PM
Someone know if in Cocoa there is a Socket Control like in Real Basic? Thanks

Taxxodium
2002.11.29, 05:09 PM
Nope. However there exists a socket framework called SmallSockets that will do the dirty work for you. Do search on SourceForge (http://www.sourceforge.net) after "SmallSockets" and download that.

I've been using that for an irc client I've been trying to make.

GoodDoug
2002.12.01, 12:46 AM
You can hook up an NSSocket to a bsd socket. You have to do a little lifting, but then it works pretty nicely.

wadesworld
2002.12.01, 01:15 AM
You also can use CFSockets.

Wade

Gastropod
2002.12.01, 03:52 AM
I've never used Real Basic, but for C/C++ I used OpenPlay for networking. It's open-sourced by apple and cross platform.