TCP/TCP_Internal.h
changeset 17 70590cc555aa
child 18 3be241de1630
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/TCP/TCP_Internal.h	Thu Jun 19 10:22:19 2008 -0700
     1.3 @@ -0,0 +1,25 @@
     1.4 +//
     1.5 +//  TCP_Internal.h
     1.6 +//  MYNetwork
     1.7 +//
     1.8 +//  Created by Jens Alfke on 5/18/08.
     1.9 +//  Copyright 2008 Jens Alfke. All rights reserved.
    1.10 +//
    1.11 +
    1.12 +
    1.13 +#import "TCPWriter.h"
    1.14 +#import "TCPConnection.h"
    1.15 +#import "TCPListener.h"
    1.16 +
    1.17 +/* Private declarations and APIs for TCP client/server implementation. */
    1.18 +
    1.19 +
    1.20 +
    1.21 +@interface TCPConnection ()
    1.22 +- (void) _setStreamProperty: (id)value forKey: (NSString*)key;
    1.23 +- (void) _streamOpened: (TCPStream*)stream;
    1.24 +- (BOOL) _streamPeerCertAvailable: (TCPStream*)stream;
    1.25 +- (void) _stream: (TCPStream*)stream gotError: (NSError*)error;
    1.26 +- (void) _streamGotEOF: (TCPStream*)stream;
    1.27 +- (void) _streamClosed: (TCPStream*)stream;
    1.28 +@end