BLIP/BLIPReader.h
author Jens Alfke <jens@mooseyard.com>
Wed Jun 04 17:11:20 2008 -0700 (2008-06-04)
changeset 13 84c2d38f924c
parent 0 9d67172bb323
child 26 cb9cdf247239
permissions -rw-r--r--
Python implementation much improved. Can send requests now. Fully interoperable with Obj-C implementation's test cases.
     1 //
     2 //  BLIPReader.h
     3 //  MYNetwork
     4 //
     5 //  Created by Jens Alfke on 5/10/08.
     6 //  Copyright 2008 Jens Alfke. All rights reserved.
     7 //
     8 
     9 #import "TCPStream.h"
    10 #import "BLIP_Internal.h"
    11 @class BLIPResponse;
    12 
    13 
    14 /** INTERNAL class that reads BLIP frames from the socket. */
    15 @interface BLIPReader : TCPReader
    16 {
    17     BLIPFrameHeader _curHeader;
    18     UInt32 _curBytesRead;
    19     NSMutableData *_curBody;
    20 
    21     UInt32 _numRequestsReceived;
    22     NSMutableDictionary *_pendingRequests, *_pendingResponses;
    23 }
    24 
    25 - (void) _addPendingResponse: (BLIPResponse*)response;
    26 
    27 @end