Skip to content

Instantly share code, notes, and snippets.

View CraigMetcalfe's full-sized avatar

Craig Metcalfe CraigMetcalfe

  • London, United Kingdom
View GitHub Profile
@rjungemann
rjungemann / Communicator.h
Created June 21, 2010 00:45
How to open a TCP socket in Objective-C
#import <Foundation/Foundation.h>
@interface Communicator : NSObject <NSStreamDelegate> {
@public
NSString *host;
int port;
}
- (void)setup;