Skip to content

Instantly share code, notes, and snippets.

View gremlinc5's full-sized avatar

Chiesa Michele gremlinc5

View GitHub Profile
@gremlinc5
gremlinc5 / Communicator.h
Created September 11, 2016 14:42 — forked from rjungemann/Communicator.h
How to open a TCP socket in Objective-C
#import <Foundation/Foundation.h>
@interface Communicator : NSObject <NSStreamDelegate> {
@public
NSString *host;
int port;
}
- (void)setup;