summaryrefslogtreecommitdiff
path: root/indra/lscript/lscript_http.h
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
committerJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
commit420b91db29485df39fd6e724e782c449158811cb (patch)
treeb471a94563af914d3ed3edd3e856d21cb1b69945 /indra/lscript/lscript_http.h
Print done when done.
Diffstat (limited to 'indra/lscript/lscript_http.h')
-rw-r--r--indra/lscript/lscript_http.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/indra/lscript/lscript_http.h b/indra/lscript/lscript_http.h
new file mode 100644
index 0000000000..af70596673
--- /dev/null
+++ b/indra/lscript/lscript_http.h
@@ -0,0 +1,27 @@
+/**
+ * @file lscript_http.h
+ * @brief LSL HTTP keys
+ *
+ * Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+// Keys used in LSL HTTP function <key,value> pair lists.
+
+#ifndef LSCRIPT_HTTP_H
+#define LSCRIPT_HTTP_H
+
+enum LLScriptHTTPRequestParameterKey
+{
+ HTTP_METHOD,
+ HTTP_MIMETYPE,
+ HTTP_BODY_MAXLENGTH,
+ HTTP_VERIFY_CERT
+};
+
+enum LLScriptHTTPResponseMetadataKey
+{
+ HTTP_BODY_TRUNCATED
+};
+
+#endif