Hi Steve,
Thanks for your hint. I have it working by using a pipe
in ssl_util.c instead.
Andrew
ssl_util_ppopen_child()
{
...
CreatePipe(&hPipeRead, &hPipeWrite, &sa, 0);
..
si.hStdOutput = hPipeWrite;
..
if (CreateProcess(NULL, pCommand, NULL, NULL, TRUE, 0,
...
}
ssl_util_readfilter()
{
...
for (k = 0; ReadFile(hPipeRead, &c, 1, &n, NULL)
..
}
______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]