Exemplo n.º 1
0
 char* OnRequest(Request *req)
 {
     HTTPClientRequest *httpreq = (HTTPClientRequest *)req;
     if (!strcmp(httpreq->GetId(), HTTP_CLIENT_REQUEST))
     {
         HTTPSocket *sock = new HTTPSocket(ServerInstance, this);
         sock->DoRequest(httpreq);
         // No return value
     }
     return NULL;
 }