X-Git-Url: http://git.ithinksw.org/ITFoundation.git/blobdiff_plain/5fadb328bb7952174fcb7a6bb867c9c11f801df9..d7b4e9008bca3278755f8b96c0ea9d5e3c94c39d:/ShowcaseController.m diff --git a/ShowcaseController.m b/ShowcaseController.m new file mode 100755 index 0000000..2efe0a4 --- /dev/null +++ b/ShowcaseController.m @@ -0,0 +1,27 @@ +// +// ShowcaseController.m +// ITFoundation +// +// Created by Alexander Strange on Fri Feb 14 2003. +// Copyright (c) 2003 __MyCompanyName__. All rights reserved. +// + +#import "ShowcaseController.h" + + +@implementation ShowcaseController +- (void)applicationDidFinishLaunching:(NSNotification *)note +{ + + ITInetServerSocket *sock = [[ITInetServerSocket alloc] initWithDelegate:self]; + NSLog(@"rawr?"); + [sock setPort:4776]; + [sock setServiceName:@"Test Rendezvous Service"]; + [sock setServiceType:@"ittest" useForPort:NO]; + [sock start]; +} + +- (void)newClientJoined:(ITInetSocket*)client +{ +} +@end