dump = fopen(REQUEST_DUMP, "ab"); /* b is for windows-preparing */
if(dump) {
- fwrite(reqbuf, 1, strlen(reqbuf), dump);
+ size_t len = strlen(reqbuf);
+ fwrite(reqbuf, 1, len, dump);
fclose(dump);
- logmsg("Wrote request input to " REQUEST_DUMP);
+ logmsg("Wrote request (%d bytes) input to " REQUEST_DUMP,
+ (int)len);
}
else {
logmsg("Failed to write request input to " REQUEST_DUMP);
fclose(dump);
- logmsg("Response sent (%d bytes)!", responsesize);
+ logmsg("Response sent (%d bytes) and written to " RESPONSE_DUMP,
+ responsesize);
if(ptr)
free(ptr);
if (msgsock == -1)
continue;
- logmsg("** New client connected");
+ logmsg("====> Client connect");
do {
if(get_request(msgsock, &req))
/* if we got a CONNECT, loop and get another request as well! */
} while(req.open || (req.testno == DOCNUMBER_CONNECT));
- logmsg("** Closing client connection");
+ logmsg("====> Client disconnect");
sclose(msgsock);
if (req.testno == DOCNUMBER_QUIT)