summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/_httpoperation.cpp
diff options
context:
space:
mode:
authorMonty Brandenberg <monty@lindenlab.com>2012-07-07 19:35:32 -0400
committerMonty Brandenberg <monty@lindenlab.com>2012-07-07 19:35:32 -0400
commitf5f51d3cda8861b3b3a380cc96aaca98e572c377 (patch)
tree967c150112eab3d247bd28a428a2c3f4b100ea0f /indra/llcorehttp/_httpoperation.cpp
parent70e976d1a87f4225c7593129a9c1c4732e2d38e4 (diff)
SH-3185 Fill in some FIXME/TODO cases
Also added some comments and changed the callback userdata argument to be an HttpOpRequest rather than a libcurl handle. Less code, less clutter.
Diffstat (limited to 'indra/llcorehttp/_httpoperation.cpp')
-rw-r--r--indra/llcorehttp/_httpoperation.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/indra/llcorehttp/_httpoperation.cpp b/indra/llcorehttp/_httpoperation.cpp
index d80a8236e6..910dbf1f2f 100644
--- a/indra/llcorehttp/_httpoperation.cpp
+++ b/indra/llcorehttp/_httpoperation.cpp
@@ -91,31 +91,31 @@ void HttpOperation::setReplyPath(HttpReplyQueue * reply_queue,
void HttpOperation::stageFromRequest(HttpService *)
{
- // *FIXME: Message this a better way later.
// Default implementation should never be called. This
// indicates an operation making a transition that isn't
// defined.
- llassert_always(false);
+ LL_ERRS("HttpCore") << "Default stateFromRequest method may not be called."
+ << LL_ENDL;
}
void HttpOperation::stageFromReady(HttpService *)
{
- // *FIXME: Message this a better way later.
// Default implementation should never be called. This
// indicates an operation making a transition that isn't
// defined.
- llassert_always(false);
+ LL_ERRS("HttpCore") << "Default stateFromReady method may not be called."
+ << LL_ENDL;
}
void HttpOperation::stageFromActive(HttpService *)
{
- // *FIXME: Message this a better way later.
// Default implementation should never be called. This
// indicates an operation making a transition that isn't
// defined.
- llassert_always(false);
+ LL_ERRS("HttpCore") << "Default stateFromActive method may not be called."
+ << LL_ENDL;
}