diff -r 000000000000 -r 6f608b552b77 TCP/TCP_Internal.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TCP/TCP_Internal.h Wed Jun 11 14:58:38 2008 -0700 @@ -0,0 +1,25 @@ +// +// TCP_Internal.h +// MYNetwork +// +// Created by Jens Alfke on 5/18/08. +// Copyright 2008 Jens Alfke. All rights reserved. +// + + +#import "TCPWriter.h" +#import "TCPConnection.h" +#import "TCPListener.h" + +/* Private declarations and APIs for TCP client/server implementation. */ + + + +@interface TCPConnection () +- (void) _setStreamProperty: (id)value forKey: (NSString*)key; +- (void) _streamOpened: (TCPStream*)stream; +- (BOOL) _streamPeerCertAvailable: (TCPStream*)stream; +- (void) _stream: (TCPStream*)stream gotError: (NSError*)error; +- (void) _streamGotEOF: (TCPStream*)stream; +- (void) _streamClosed: (TCPStream*)stream; +@end