From 941ab8b9052b078d97c9c4581914e24987ef1dc4 Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Thu, 25 May 2006 19:41:40 +0000 Subject: [PATCH] * Fix documentation about the data types of attributes in the AJP protocol. PR: 39658 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@409442 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_proxy_ajp.html.en | 34 +++++++++++++-------------- docs/manual/mod/mod_proxy_ajp.xml | 34 +++++++++++++-------------- 2 files changed, 34 insertions(+), 34 deletions(-) diff --git a/docs/manual/mod/mod_proxy_ajp.html.en b/docs/manual/mod/mod_proxy_ajp.html.en index b695a20777..129e34a2a0 100644 --- a/docs/manual/mod/mod_proxy_ajp.html.en +++ b/docs/manual/mod/mod_proxy_ajp.html.en @@ -416,28 +416,28 @@ attribute_value := (string)

Attributes

The attributes prefixed with a ? (e.g. ?context) are all optional. For each, there is a - single byte code to indicate the type of attribute, and then a string to - give its value. They can be sent in any order (thogh the C code always - sends them in the order listed below). A special terminating code is - sent to signal the end of the list of optional attributes. The list of + single byte code to indicate the type of attribute, and then its value + (string or integer). They can be sent in any order (though the C code + always sends them in the order listed below). A special terminating code + is sent to signal the end of the list of optional attributes. The list of byte codes is:

- - + - - - - - - - - - + + + + + + + - - + +
InformationCode ValueNote
?context0x01Not currently implemented +
InformationCode ValueType Of ValueNote
?context0x01-Not currently implemented
?servlet_path0x02Not currently implemented +
?servlet_path0x02-Not currently implemented
?remote_user0x03
?auth_type0x04
?query_string0x05
?jvm_route0x06
?ssl_cert0x07
?ssl_cipher0x08
?ssl_session0x09
?req_attribute0x0AName (the name of the +
?remote_user0x03String
?auth_type0x04String
?query_string0x05String
?jvm_route0x06String
?ssl_cert0x07String
?ssl_cipher0x08String
?ssl_session0x09String
?req_attribute0x0AStringName (the name of the attribute follows)
?ssl_key_size0x0B
are_done0xFFrequest_terminator
?ssl_key_size0x0BInteger
are_done0xFF-request_terminator

The context and servlet_path are not currently set by the C code, and most of the Java code completely ignores diff --git a/docs/manual/mod/mod_proxy_ajp.xml b/docs/manual/mod/mod_proxy_ajp.xml index 107afbbd07..061c9cefc0 100644 --- a/docs/manual/mod/mod_proxy_ajp.xml +++ b/docs/manual/mod/mod_proxy_ajp.xml @@ -404,28 +404,28 @@ attribute_value := (string)

Attributes

The attributes prefixed with a ? (e.g. ?context) are all optional. For each, there is a - single byte code to indicate the type of attribute, and then a string to - give its value. They can be sent in any order (thogh the C code always - sends them in the order listed below). A special terminating code is - sent to signal the end of the list of optional attributes. The list of + single byte code to indicate the type of attribute, and then its value + (string or integer). They can be sent in any order (though the C code + always sends them in the order listed below). A special terminating code + is sent to signal the end of the list of optional attributes. The list of byte codes is:

- - + - - - - - - - - - + + + + + + + - - + +
InformationCode ValueNote
?context0x01Not currently implemented +
InformationCode ValueType Of ValueNote
?context0x01-Not currently implemented
?servlet_path0x02Not currently implemented +
?servlet_path0x02-Not currently implemented
?remote_user0x03
?auth_type0x04
?query_string0x05
?jvm_route0x06
?ssl_cert0x07
?ssl_cipher0x08
?ssl_session0x09
?req_attribute0x0AName (the name of the +
?remote_user0x03String
?auth_type0x04String
?query_string0x05String
?jvm_route0x06String
?ssl_cert0x07String
?ssl_cipher0x08String
?ssl_session0x09String
?req_attribute0x0AStringName (the name of the attribute follows)
?ssl_key_size0x0B
are_done0xFFrequest_terminator
?ssl_key_size0x0BInteger
are_done0xFF-request_terminator

The context and servlet_path are not currently set by the C code, and most of the Java code completely ignores -- 2.40.0