FACT++  1.0
void ConnectionLidar::PostRequest ( )
inlineprotected

Definition at line 210 of file magiclidar.cc.

211  {
212  const string cmd =
213  "GET "+fSite+" HTTP/1.1\r\n"
214  "Accept: */*\r\n"
215  "Content-Type: application/octet-stream\r\n"
216  "User-Agent: FACT\r\n"
217  "Host: www.fact-project.org\r\n"
218  "Pragma: no-cache\r\n"
219  "Cache-Control: no-cache\r\n"
220  "Expires: 0\r\n"
221  "Connection: Keep-Alive\r\n"
222  "Cache-Control: max-age=0\r\n"
223  "\r\n";
224 
225  PostMessage(cmd);
226  }