Some mre debugging stuff, should be removed before rele
[ITFoundation.git] / ShowcaseController.m
1 //
2 //  ShowcaseController.m
3 //  ITFoundation
4 //
5 //  Created by Alexander Strange on Fri Feb 14 2003.
6 //  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
7 //
8
9 #import "ShowcaseController.h"
10
11
12 @implementation ShowcaseController
13 - (void)awakeFromNib
14 {
15     
16     ITInetServerSocket *sock = [[ITInetServerSocket alloc] initWithDelegate:self];
17     NSLog(@"rawr?");
18     [sock setPort:4776];
19     [sock setServiceName:@"Test Rendezvous Service"];
20     [sock setServiceType:@"ittest" useForPort:NO];
21     [sock start];
22 }
23
24 - (void)newClientJoined:(ITInetSocket*)client
25 {
26 }
27 @end