BLIP/Demo/BLIPEchoServer.h
author Jens Alfke <jens@mooseyard.com>
Sun Jul 13 10:42:50 2008 -0700 (2008-07-13)
changeset 22 8b883753394a
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.
jens@3
     1
//
jens@3
     2
//  BLIPEchoServer.h
jens@3
     3
//  MYNetwork
jens@3
     4
//
jens@3
     5
//  Created by Jens Alfke on 5/24/08.
jens@3
     6
//  Copyright 2008 Jens Alfke. All rights reserved.
jens@3
     7
//
jens@3
     8
jens@3
     9
#import <Foundation/Foundation.h>
jens@3
    10
#import "BLIPConnection.h"
jens@3
    11
jens@3
    12
@interface BLIPEchoServer : NSObject <TCPListenerDelegate, BLIPConnectionDelegate>
jens@3
    13
{
jens@3
    14
    BLIPListener *_listener;
jens@3
    15
}
jens@3
    16
jens@3
    17
@end