Differences From Artifact [3e54369073]:
- File src/OFSocket.m — part of check-in [917188fdcc] at 2009-05-13 19:49:50 on branch trunk — There's no need for + initialize to return anything. (user: js, size: 2215) [annotate] [blame] [check-ins using]
To Artifact [f1c982e206]:
- File src/OFSocket.m — part of check-in [4c6d6c56ac] at 2009-05-15 22:59:30 on branch trunk — As we memset our ivars to 0, get rid of some useless ivar inits. (user: js, size: 2199) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
34 35 36 37 38 39 40 |
- init
{
self = [super init];
sock = INVALID_SOCKET;
saddr = NULL;
| < | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
- init
{
self = [super init];
sock = INVALID_SOCKET;
saddr = NULL;
return self;
}
- (size_t)readNBytes: (size_t)size
intoBuffer: (char*)buf
{
|
| ︙ | ︙ |