TCP/TCP_Internal.h
author Jens Alfke <jens@mooseyard.com>
Sun Jul 13 10:42:50 2008 -0700 (2008-07-13)
changeset 22 8b883753394a
parent 18 3be241de1630
child 26 cb9cdf247239
permissions -rw-r--r--
* Fixed: Responses still pending when a connection closed were not calling their onComplete targets.
* Fixed: BLIPTestClient target failed to build because it didn't link against zlib.
* If TCPListener.bonjourServiceName is changed while the listener is open, it now re-publishes the service with the new name.
* Added a TCPListener.bonjourService property.
* Added a BLIPMessage.representedObject property.
* Fixed a memory leak.
     1 //
     2 //  TCP_Internal.h
     3 //  MYNetwork
     4 //
     5 //  Created by Jens Alfke on 5/18/08.
     6 //  Copyright 2008 Jens Alfke. All rights reserved.
     7 //
     8 
     9 
    10 #import "TCPWriter.h"
    11 #import "TCPConnection.h"
    12 #import "TCPListener.h"
    13 
    14 /* Private declarations and APIs for TCP client/server implementation. */
    15 
    16 
    17 
    18 @interface TCPConnection ()
    19 - (void) _setStreamProperty: (id)value forKey: (NSString*)key;
    20 - (void) _streamOpened: (TCPStream*)stream;
    21 - (BOOL) _streamPeerCertAvailable: (TCPStream*)stream;
    22 - (void) _stream: (TCPStream*)stream gotError: (NSError*)error;
    23 - (void) _streamCanClose: (TCPStream*)stream;
    24 - (void) _streamGotEOF: (TCPStream*)stream;
    25 - (void) _streamDisconnected: (TCPStream*)stream;
    26 @end
    27 
    28 
    29 @interface TCPStream ()
    30 - (void) _unclose;
    31 @end
    32