Now all ITInetServerSockets share one runloop timer. Had to rewrite the entire API...
[ITFoundation.git] / ITInetSocket.m
1 //
2 //  ITInetSocket.m
3 //  ITFoundation
4 //
5 //  Created by Alexander Strange on Tue Feb 11 2003.
6 //  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
7 //
8
9 #import "ITInetSocket.h"
10
11
12 @implementation ITInetSocket
13 -(id)initWithFD:(int)fd delegate:(id)d
14 {
15     return nil;
16 }
17
18 -(void)disconnect
19 {
20 }
21 @end