Re: Networking
Re: Networking
- Subject: Re: Networking
- From: mmalcolm crawford <email@hidden>
- Date: Mon, 24 Jan 2005 03:09:19 -0800
On Jan 24, 2005, at 2:48 AM, Killobit wrote:
I've looked at the BSD sockets and it looks more complicated than it
needs
to be, are there any good, simple classes that I can use to make a
TCP socket and UDP socket connection?
This article reviews several networking frameworks, perhaps one will
meet your requirements:
<http://www.stepwise.com/Articles/Technical/2003-04-22.01.html>
i know about CFSocket but that seems just as hard as BSD sockets
themselves and
is a very ****ty wrapper class anyway,
Perhaps you could elaborate on what functionality you find to be
missing? Better would be to file an enhancement request...
also, why doesn't apple just create a nice NSSocket class? i hear they
said that everyone
likes to do it themselves, but that's wrong because I don't want to, i
just want a nice simple class
... similarly here.
mySocket = [NSSocket init];
[mySocket type:@"UDP"]
I think you meant,
mySocket = [[NSSocket alloc] init];
[mySocket setType:@"UDP"];
mmalc
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
References: | |
| >Networking (From: Killobit <email@hidden>) |