summaryrefslogtreecommitdiff
path: root/icespider/common/http.ice
diff options
context:
space:
mode:
Diffstat (limited to 'icespider/common/http.ice')
-rw-r--r--icespider/common/http.ice15
1 files changed, 15 insertions, 0 deletions
diff --git a/icespider/common/http.ice b/icespider/common/http.ice
new file mode 100644
index 0000000..33c0543
--- /dev/null
+++ b/icespider/common/http.ice
@@ -0,0 +1,15 @@
+#ifndef ICESPIDER_HTTP_ICE
+#define ICESPIDER_HTTP_ICE
+
+module IceSpider {
+ enum HttpMethod {
+ GET, HEAD, POST, PUT, DELETE, OPTIONS
+ };
+
+ enum ParameterSource {
+ URL, Body, QueryString, Header
+ };
+};
+
+#endif
+