Loading modules/proxy/ajp.h +1 −14 Changes for modules/proxy/ajp.h: 1 added line, 14 removed lines. Original line number Diff line number Diff line Loading @@ -65,19 +65,6 @@ #define AJP13_SSL_SESSION_INDICATOR "SSL_SESSION_ID" #define AJP13_SSL_KEY_SIZE_INDICATOR "SSL_CIPHER_USEKEYSIZE" #if APR_CHARSET_EBCDIC #define USE_CHARSET_EBCDIC #define ajp_xlate_to_ascii(b, l) ap_xlate_proto_to_ascii(b, l) #define ajp_xlate_from_ascii(b, l) ap_xlate_proto_from_ascii(b, l) #else /* APR_CHARSET_EBCDIC */ #define ajp_xlate_to_ascii(b, l) #define ajp_xlate_from_ascii(b, l) #endif #ifdef AJP_USE_HTTPD_WRAP #include "httpd_wrap.h" #else Loading @@ -91,7 +78,7 @@ #endif #include "mod_proxy.h" #include "util_ebcdic.h" /** AJP Specific error codes */ Loading modules/proxy/ajp_header.c +1 −5 Changes for modules/proxy/ajp_header.c: 1 added line, 5 removed lines. Original line number Diff line number Diff line Loading @@ -473,7 +473,7 @@ static apr_status_t ajp_unmarshal_response(ajp_msg_t *msg, rc = ajp_msg_get_string(msg, &ptr); if (rc == APR_SUCCESS) { #if defined(AS400) || defined(_OSD_POSIX) /* EBCDIC platforms */ #if APR_CHARSET_EBCDIC /* copy only if we have to */ ptr = apr_pstrdup(r->pool, ptr); ap_xlate_proto_from_ascii(ptr, strlen(ptr)); #endif Loading Loading @@ -525,9 +525,7 @@ static apr_status_t ajp_unmarshal_response(ajp_msg_t *msg, "Null header name"); return rc; } #if defined(AS400) || defined(_OSD_POSIX) ap_xlate_proto_from_ascii(stringname, strlen(stringname)); #endif } rc = ajp_msg_get_string(msg, &value); Loading @@ -552,9 +550,7 @@ static apr_status_t ajp_unmarshal_response(ajp_msg_t *msg, value = ap_proxy_location_reverse_map(r, dconf, value); } #if defined(AS400) || defined(_OSD_POSIX) ap_xlate_proto_from_ascii(value, strlen(value)); #endif ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, "ajp_unmarshal_response: Header[%d] [%s] = [%s]", i, stringname, value); Loading modules/proxy/ajp_msg.c +1 −1 Changes for modules/proxy/ajp_msg.c: 1 added line, 1 removed line. Original line number Diff line number Diff line Loading @@ -289,7 +289,7 @@ apr_status_t ajp_msg_append_string_ex(ajp_msg_t *msg, const char *value, memcpy(msg->buf + msg->len, value, len + 1); /* including \0 */ if (convert) /* convert from EBCDIC if needed */ ajp_xlate_to_ascii((char *)msg->buf + msg->len, len + 1); ap_xlate_proto_to_ascii((char *)msg->buf + msg->len, len + 1); msg->len += len + 1; Loading Loading
modules/proxy/ajp.h +1 −14 Changes for modules/proxy/ajp.h: 1 added line, 14 removed lines. Original line number Diff line number Diff line Loading @@ -65,19 +65,6 @@ #define AJP13_SSL_SESSION_INDICATOR "SSL_SESSION_ID" #define AJP13_SSL_KEY_SIZE_INDICATOR "SSL_CIPHER_USEKEYSIZE" #if APR_CHARSET_EBCDIC #define USE_CHARSET_EBCDIC #define ajp_xlate_to_ascii(b, l) ap_xlate_proto_to_ascii(b, l) #define ajp_xlate_from_ascii(b, l) ap_xlate_proto_from_ascii(b, l) #else /* APR_CHARSET_EBCDIC */ #define ajp_xlate_to_ascii(b, l) #define ajp_xlate_from_ascii(b, l) #endif #ifdef AJP_USE_HTTPD_WRAP #include "httpd_wrap.h" #else Loading @@ -91,7 +78,7 @@ #endif #include "mod_proxy.h" #include "util_ebcdic.h" /** AJP Specific error codes */ Loading
modules/proxy/ajp_header.c +1 −5 Changes for modules/proxy/ajp_header.c: 1 added line, 5 removed lines. Original line number Diff line number Diff line Loading @@ -473,7 +473,7 @@ static apr_status_t ajp_unmarshal_response(ajp_msg_t *msg, rc = ajp_msg_get_string(msg, &ptr); if (rc == APR_SUCCESS) { #if defined(AS400) || defined(_OSD_POSIX) /* EBCDIC platforms */ #if APR_CHARSET_EBCDIC /* copy only if we have to */ ptr = apr_pstrdup(r->pool, ptr); ap_xlate_proto_from_ascii(ptr, strlen(ptr)); #endif Loading Loading @@ -525,9 +525,7 @@ static apr_status_t ajp_unmarshal_response(ajp_msg_t *msg, "Null header name"); return rc; } #if defined(AS400) || defined(_OSD_POSIX) ap_xlate_proto_from_ascii(stringname, strlen(stringname)); #endif } rc = ajp_msg_get_string(msg, &value); Loading @@ -552,9 +550,7 @@ static apr_status_t ajp_unmarshal_response(ajp_msg_t *msg, value = ap_proxy_location_reverse_map(r, dconf, value); } #if defined(AS400) || defined(_OSD_POSIX) ap_xlate_proto_from_ascii(value, strlen(value)); #endif ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, "ajp_unmarshal_response: Header[%d] [%s] = [%s]", i, stringname, value); Loading
modules/proxy/ajp_msg.c +1 −1 Changes for modules/proxy/ajp_msg.c: 1 added line, 1 removed line. Original line number Diff line number Diff line Loading @@ -289,7 +289,7 @@ apr_status_t ajp_msg_append_string_ex(ajp_msg_t *msg, const char *value, memcpy(msg->buf + msg->len, value, len + 1); /* including \0 */ if (convert) /* convert from EBCDIC if needed */ ajp_xlate_to_ascii((char *)msg->buf + msg->len, len + 1); ap_xlate_proto_to_ascii((char *)msg->buf + msg->len, len + 1); msg->len += len + 1; Loading