RE: [PHP-DEV] Re: Client socket

2002-05-30 Thread J Smith
I'm no apache expert when it comes to hacking the source or anything, but it appears that ap_rwrite() and ap_write() might do what you're looking for. They look something like this: int ap_rwrite(const void *buf, int nbyte, request_rec *r); And apparently they let you write directly to the

RE: [PHP-DEV] Re: Client socket

2002-05-29 Thread Vinod Panicker
Makes sense. Dunno why it didn't occur to me before - the '3' says it all. I need the actual socket - which when written to will send data to the client. Is it there in the request_rec structure? Or can I get it some other way? Tx, Vinod. --- Vinod Panicker