Uses slightly less CPU now. Still too much.
[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     NSLog(@"Someone made a socket!");
16     return nil;
17 }
18
19 -(void)disconnect
20 {
21 }
22 @end