summaryrefslogtreecommitdiff
path: root/protocols/Steam/src/api/captcha.h
blob: b61dca89d65281161a1aa09c5f0948052daf311d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _STEAM_REQUEST_CAPTCHA_H_
#define _STEAM_REQUEST_CAPTCHA_H_

class GetCaptchaRequest : public HttpRequest
{
public:
	GetCaptchaRequest(const char *captchaId) :
		HttpRequest(REQUEST_GET, FORMAT, STEAM_WEB_URL "/public/captcha.php?gid=%s", captchaId)
	{
		flags = NLHRF_HTTP11 | NLHRF_NODUMP;
	}
};

#endif //_STEAM_REQUEST_CAPTCHA_H_