Apache2
Charset Conversion
Collaboration diagram for Charset Conversion:

Variables

apr_xlate_tap_hdrs_to_ascii
 
apr_xlate_tap_hdrs_from_ascii
 

Detailed Description

These are the translation handles used to translate between the network format of protocol headers and the local machine format.

For an EBCDIC machine, these are valid handles which are set up at initialization to translate between ISO-8859-1 and the code page of the source code.
For an ASCII machine, they are undefined.

See also
ap_init_ebcdic()

Variable Documentation

◆ ap_hdrs_from_ascii

apr_xlate_t* ap_hdrs_from_ascii
extern

On EBCDIC machine this is a translation handle used to translate the headers from ASCII to the local machine format after network transmission.

Note
On ASCII system, this variable does not exist. So, its use should be guarded by #if APR_CHARSET_EBCDIC.

◆ ap_hdrs_to_ascii

apr_xlate_t* ap_hdrs_to_ascii
extern

On EBCDIC machine this is a translation handle used to translate the headers from the local machine format to ASCII for network transmission.

Note
On ASCII system, this variable does not exist. So, its use should be guarded by #if APR_CHARSET_EBCDIC.