Hello!

I'm trying to write a simple program for downloading pages. It works OK but only for some pages. For the other I'm getting an errors.I think that the GET request is too small, it contains to few informations. For instance the Qhttp GET request is:

Qt Code:
  1. GET / HTTP/1.1
  2. Connection Keep-Alive
  3. Host www.wrotamalopolski.pl
To copy to clipboard, switch view to plain text mode 

and the same but browsers request is:

Qt Code:
  1. GET / HTTP/1.1
  2. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/525.13 (KHTML, like Gecko) Chrome/0.2.149.27 Safari/525.13
  3. Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
  4. Cookie: ASP.NET_SessionId=hwasqe55zv... ble ble ble
  5. Accept-Language: pl-PL,pl,en-US,en
  6. Accept-Charset: ISO-8859-2,*,utf-8
  7. Accept-Encoding: gzip,deflate,bzip2
  8. If-Modified-Since: 128650639665900000
  9. Host: www.wrotamalopolski.pl
  10. Connection: Keep-Alive
To copy to clipboard, switch view to plain text mode 

And my question is if there are any functions to add User-Agent,Accept-Language etc. to the GET request in QHttp?