Hi,

I'm developing a C fcgi application and I got quite far with that, enabling 
modular programming and several higher level modules that can now be used 
from the web application.  It's quite flexible and runs as fast as light.

Since I'm working low level I like such statements like:

puts("Status: 200\r\n");
puts("ContentType: text/html\r\n");
puts("\r\n<html>");
puts("...");
puts("</html>");


But If I do so the header is completed and the body begins (with mod_fcgi.2.2 
and fcgi-2.4.0 api library).

Actually I need to collect all my headers in one big string and do

puts(headers);
puts("\r\n<html>");
puts("...");
puts("</html>");

Which works.  Not that it is a problem, but it's quite annyoning sometimes, 
testing a new header.

bye ingo

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Mod-fcgid-users mailing list
Mod-fcgid-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mod-fcgid-users

Reply via email to