1.1 --- a/BLIP/BLIPRequest.h Sun May 25 12:32:47 2008 -0700
1.2 +++ b/BLIP/BLIPRequest.h Mon Jul 20 13:26:29 2009 -0700
1.3 @@ -11,7 +11,7 @@
1.4
1.5
1.6 /** A Request, or initiating message, in the <a href=".#blipdesc">BLIP</a> protocol. */
1.7 -@interface BLIPRequest : BLIPMessage
1.8 +@interface BLIPRequest : BLIPMessage <NSMutableCopying>
1.9 {
1.10 @private
1.11 BLIPResponse *_response;
1.12 @@ -25,6 +25,10 @@
1.13 + (BLIPRequest*) requestWithBody: (NSData*)body;
1.14
1.15 /** Creates an outgoing request.
1.16 + This is just like requestWithBody: except that you supply a string. */
1.17 ++ (BLIPRequest*) requestWithBodyString: (NSString*)bodyString;
1.18 +
1.19 +/** Creates an outgoing request.
1.20 The body or properties may be nil.
1.21 The request is not associated with any BLIPConnection yet, so you must either set its
1.22 connection property before calling -send, or pass the request as a parameter to