aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage/llurlrequest.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llmessage/llurlrequest.h')
-rw-r--r--linden/indra/llmessage/llurlrequest.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/linden/indra/llmessage/llurlrequest.h b/linden/indra/llmessage/llurlrequest.h
index 888b962..f965dad 100644
--- a/linden/indra/llmessage/llurlrequest.h
+++ b/linden/indra/llmessage/llurlrequest.h
@@ -327,6 +327,9 @@ public:
327 LLURLRequestComplete(); 327 LLURLRequestComplete();
328 virtual ~LLURLRequestComplete(); 328 virtual ~LLURLRequestComplete();
329 329
330 // The first line of an http response must be the status line
331 // true if we have already parsed this line.
332 bool haveHTTPStatus() const { return mHaveHTTPStatus; }
330protected: 333protected:
331 /* @name LLIOPipe virtual implementations 334 /* @name LLIOPipe virtual implementations
332 */ 335 */
@@ -345,6 +348,8 @@ protected:
345 // value to note if we actually got the response. This value 348 // value to note if we actually got the response. This value
346 // depends on correct useage from the LLURLRequest instance. 349 // depends on correct useage from the LLURLRequest instance.
347 EStatus mRequestStatus; 350 EStatus mRequestStatus;
351
352 bool mHaveHTTPStatus;
348}; 353};
349 354
350 355