summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/_httpopsetpriority.h
diff options
context:
space:
mode:
authorMonty Brandenberg <monty@lindenlab.com>2012-06-01 17:23:51 -0400
committerMonty Brandenberg <monty@lindenlab.com>2012-06-01 17:23:51 -0400
commit7b9da4eeda7505162f37cbfa52591f7adff032e7 (patch)
tree74b2e727d62d30ddc0feae5c6fac28edd43d6b5d /indra/llcorehttp/_httpopsetpriority.h
parentf67084337cf8673d7d3fa76dbf3ace3b02b93e2c (diff)
Missed two instances of priority typed as 'float'. Became an
excuse to go through an use a typedef for priority and policy class id.
Diffstat (limited to 'indra/llcorehttp/_httpopsetpriority.h')
-rw-r--r--indra/llcorehttp/_httpopsetpriority.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/llcorehttp/_httpopsetpriority.h b/indra/llcorehttp/_httpopsetpriority.h
index e5d8e5fc1f..b972f50fff 100644
--- a/indra/llcorehttp/_httpopsetpriority.h
+++ b/indra/llcorehttp/_httpopsetpriority.h
@@ -29,7 +29,7 @@
#include "httpcommon.h"
-
+#include "httprequest.h"
#include "_httpoperation.h"
#include "_refcounted.h"
@@ -46,7 +46,7 @@ namespace LLCore
class HttpOpSetPriority : public HttpOperation
{
public:
- HttpOpSetPriority(HttpHandle handle, unsigned int priority);
+ HttpOpSetPriority(HttpHandle handle, HttpRequest::priority_t priority);
virtual ~HttpOpSetPriority();
private:
@@ -59,9 +59,9 @@ public:
virtual void visitNotifier(HttpRequest * request);
protected:
- HttpStatus mStatus;
- HttpHandle mHandle;
- unsigned int mPriority;
+ HttpStatus mStatus;
+ HttpHandle mHandle;
+ HttpRequest::priority_t mPriority;
}; // end class HttpOpSetPriority
} // end namespace LLCore