summaryrefslogtreecommitdiff
path: root/protocols/Steam/src/Steam/captcha.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Steam/src/Steam/captcha.h')
-rw-r--r--protocols/Steam/src/Steam/captcha.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/protocols/Steam/src/Steam/captcha.h b/protocols/Steam/src/Steam/captcha.h
new file mode 100644
index 0000000000..cb02fdda49
--- /dev/null
+++ b/protocols/Steam/src/Steam/captcha.h
@@ -0,0 +1,18 @@
+#ifndef _STEAM_CAPTCHA_H_
+#define _STEAM_CAPTCHA_H_
+
+namespace SteamWebApi
+{
+ class GetCaptchaRequest : public HttpGetRequest
+ {
+ public:
+ GetCaptchaRequest(const char *url) :
+ HttpGetRequest(url)
+ {
+ flags = NLHRF_HTTP11 | NLHRF_NODUMP;
+ }
+ };
+}
+
+
+#endif //_STEAM_CAPTCHA_H_ \ No newline at end of file