OnSendRawData , I find some keywords in the data, so i want to end of the request and send my message to client, i use these codes:
pfc->ServerSupportFunction(SF_REQ_SEND_RESPONSE_HEADER,
"404 Not Found", (LPDWORD)sm_pszHeader, NULL);
DWORD dwDataLen = (DWORD)_tcslen(sm_pszSvrErr);
return pfc->WriteClient(sm_pszSvrErr, &dwDataLen);
return SF_STATUS_REQ_FINISHED
But i find iis send the original data and my message to the client.
How can i just send my mesage not including original data