]> granicus.if.org Git - php/commitdiff
some cosmetical changes
authorSascha Schumann <sas@php.net>
Wed, 24 Nov 1999 17:36:23 +0000 (17:36 +0000)
committerSascha Schumann <sas@php.net>
Wed, 24 Nov 1999 17:36:23 +0000 (17:36 +0000)
sapi/aolserver/aolserver.c

index 497c37a26c14b67480b35cda8d3b9f4b29588b0e..601bd11af48145b3cf3bd1c80e63a0b448ddf0f8 100644 (file)
@@ -24,7 +24,7 @@
 
 /* $Id$ */
 
-/* conflict between PHP and AOLserver */
+/* conflict between PHP and AOLserver headers */
 #define Debug php_Debug
 #include "php.h"
 #undef Debug
@@ -32,7 +32,7 @@
 #ifdef HAVE_AOLSERVER
 
 #ifndef ZTS
-#error AOLserver module only useable in thread-safe mode
+#error AOLserver module is only useable in thread-safe mode
 #endif
 
 #define NS_BUF_SIZE 511
@@ -46,6 +46,8 @@
 
 #include "php_version.h"
 
+/* This symbol is used by AOLserver to tell the API version we expect */
+
 int Ns_ModuleVersion = 1;
 
 #define NSLS_D ns_globals_struct *ns_context
@@ -74,8 +76,6 @@ typedef struct {
        size_t data_avail;
 } ns_globals_struct;
 
-static void php_ns_config(php_ns_context *ctx);
-
 /*
  * php_ns_sapi_ub_write() writes data to the client connection.
  */
@@ -139,7 +139,9 @@ php_ns_sapi_send_headers(sapi_headers_struct *sapi_headers SLS_DC)
        if(SG(sapi_headers).send_default_content_type) {
                Ns_ConnSetRequiredHeaders(NSG(conn), "text/html", 0);
        }
+       
        Ns_ConnFlushHeaders(NSG(conn), SG(sapi_headers).http_response_code);
+       
        return SAPI_HEADER_SENT_SUCCESSFULLY;
 }
 
@@ -264,7 +266,7 @@ php_ns_startup(sapi_module_struct *sapi_module)
 static sapi_module_struct sapi_module = {
        "PHP Language",
 
-       php_ns_startup,                                         /* startup */
+       php_ns_startup,                                                 /* startup */
        php_module_shutdown_wrapper,                    /* shutdown */
 
        php_ns_sapi_ub_write,                                   /* unbuffered write */