30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
if (self != [OFSocket class])
return;
if (WSAStartup(MAKEWORD(2, 0), &wsa))
@throw [OFInitializationFailedException newWithClass: self];
}
#endif
- init
{
self = [super init];
sock = INVALID_SOCKET;
saddr = NULL;
|
>
>
>
>
>
|
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
if (self != [OFSocket class])
return;
if (WSAStartup(MAKEWORD(2, 0), &wsa))
@throw [OFInitializationFailedException newWithClass: self];
}
#endif
+ socket
{
return [[[self alloc] init] autorelease];
}
- init
{
self = [super init];
sock = INVALID_SOCKET;
saddr = NULL;
|