Added an ITFoundationTester. Why doesn't it work inside PB? :\
[ITFoundation.git] / ShowcaseController.m
diff --git a/ShowcaseController.m b/ShowcaseController.m
new file mode 100755 (executable)
index 0000000..2efe0a4
--- /dev/null
@@ -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