diff options
Diffstat (limited to 'icespider/common/http.ice')
-rw-r--r-- | icespider/common/http.ice | 15 |
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 + |