diff options
author | Monty Brandenberg <monty@lindenlab.com> | 2012-07-07 19:35:32 -0400 |
---|---|---|
committer | Monty Brandenberg <monty@lindenlab.com> | 2012-07-07 19:35:32 -0400 |
commit | f5f51d3cda8861b3b3a380cc96aaca98e572c377 (patch) | |
tree | 967c150112eab3d247bd28a428a2c3f4b100ea0f /indra/llcorehttp/_httpopcancel.h | |
parent | 70e976d1a87f4225c7593129a9c1c4732e2d38e4 (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/_httpopcancel.h')
-rw-r--r-- | indra/llcorehttp/_httpopcancel.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/indra/llcorehttp/_httpopcancel.h b/indra/llcorehttp/_httpopcancel.h index 4d927d1aaf..659d28955f 100644 --- a/indra/llcorehttp/_httpopcancel.h +++ b/indra/llcorehttp/_httpopcancel.h @@ -43,9 +43,10 @@ namespace LLCore /// HttpOpCancel requests that a previously issued request -/// be canceled, if possible. Requests that have been made -/// active and are available for sending on the wire cannot -/// be canceled. +/// be canceled, if possible. This includes active requests +/// that may be in the middle of an HTTP transaction. Any +/// completed request will not be canceled and will return +/// its final status unchanged. class HttpOpCancel : public HttpOperation { |