aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage/llhttpnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llmessage/llhttpnode.h')
-rw-r--r--linden/indra/llmessage/llhttpnode.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/linden/indra/llmessage/llhttpnode.h b/linden/indra/llmessage/llhttpnode.h
index 17ffd66..87f0c48 100644
--- a/linden/indra/llmessage/llhttpnode.h
+++ b/linden/indra/llmessage/llhttpnode.h
@@ -83,10 +83,10 @@ public:
83 //@{ 83 //@{
84public: 84public:
85 85
86 virtual LLSD get() const; 86 virtual LLSD simpleGet() const;
87 virtual LLSD put(const LLSD& input) const; 87 virtual LLSD simplePut(const LLSD& input) const;
88 virtual LLSD post(const LLSD& input) const; 88 virtual LLSD simplePost(const LLSD& input) const;
89 virtual LLSD del(const LLSD& context) const; 89 virtual LLSD simpleDel(const LLSD& context) const;
90 90
91 /** 91 /**
92 * @brief Abstract Base Class declaring Response interface. 92 * @brief Abstract Base Class declaring Response interface.
@@ -116,7 +116,7 @@ public:
116 /** 116 /**
117 * @brief Return no body, just status code and 'UNKNOWN ERROR'. 117 * @brief Return no body, just status code and 'UNKNOWN ERROR'.
118 */ 118 */
119 virtual void status(S32 code); 119 virtual void statusUnknownError(S32 code);
120 120
121 virtual void notFound(const std::string& message); 121 virtual void notFound(const std::string& message);
122 virtual void notFound(); 122 virtual void notFound();