Hi Henri,

so now i5/OS should use send_bodyct like the other platforms. What I don't understand is:

[EMAIL PROTECTED] wrote:
@@ -375,7 +369,7 @@
static void JK_METHOD ws_flush(jk_ws_service_t *s)
 {
-#ifndef AS400
+#if ! (defined(AS400) && !defined(AS400_UTF8))
     if (s && s->ws_private) {
         apache_private_data_t *p = s->ws_private;
         ap_rflush(p->r);
@@ -423,7 +417,7 @@
                 }
             }
             if (p->r->header_only) {
-#ifndef AS400
+#if ! (defined(AS400) && !defined(AS400_UTF8))
                 ap_rflush(p->r);
 #endif
                 return JK_TRUE;


This looks like, if we have i5/OS and not UTF8, then we still won't use the flush. But without flush I think, that send_bodyct will not be set.

Can't you simply call the ap_rflush() for that platform exactly the same way, as for the other platforms?

Regards,

Rainer

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to