diff options
| author | Don Kjer <don@lindenlab.com> | 2013-04-04 21:50:45 +0000 | 
|---|---|---|
| committer | Don Kjer <don@lindenlab.com> | 2013-04-04 21:50:45 +0000 | 
| commit | beeefb45269f45ea717f58b30a0985951ae23c20 (patch) | |
| tree | 34f48c7703588b64bb625984f77a74752997099f /indra/llmessage/llsdhttpserver.cpp | |
| parent | 7c37af37d4459425b3ab705156eeff316531bc81 (diff) | |
Renaming HTTP_HEADER_* into HTTP_IN_HEADER_* and HTTP_OUT_HEADER_* to make it more clear which header strings should be used for incoming vs outgoing situations.
Using constants for commonly used llhttpnode context strings.
Diffstat (limited to 'indra/llmessage/llsdhttpserver.cpp')
| -rw-r--r-- | indra/llmessage/llsdhttpserver.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/llsdhttpserver.cpp b/indra/llmessage/llsdhttpserver.cpp index 5c8fc7b2bb..8ac6b3cb12 100644 --- a/indra/llmessage/llsdhttpserver.cpp +++ b/indra/llmessage/llsdhttpserver.cpp @@ -109,7 +109,7 @@ public:      virtual void get(ResponsePtr response, const LLSD& context) const  	{ -		const LLSD& remainder = context["request"]["remainder"]; +		const LLSD& remainder = context[CONTEXT_REQUEST]["remainder"];  		if (remainder.size() > 0)  		{  | 
