aboutsummaryrefslogtreecommitdiff
path: root/doc/microhttpd.texi
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-01-27 08:56:36 +0000
committerChristian Grothoff <christian@grothoff.org>2011-01-27 08:56:36 +0000
commitc216670930063791d059ec90767886a44f32ca95 (patch)
treedf7de42175db535a01572b0540460a2aab4d8eee /doc/microhttpd.texi
parentb72654d5b4e5ba8b27614951947c5a76164d3ee5 (diff)
downloadlibmicrohttpd-c216670930063791d059ec90767886a44f32ca95.tar.gz
libmicrohttpd-c216670930063791d059ec90767886a44f32ca95.zip
docu
Diffstat (limited to 'doc/microhttpd.texi')
-rw-r--r--doc/microhttpd.texi18
1 files changed, 17 insertions, 1 deletions
diff --git a/doc/microhttpd.texi b/doc/microhttpd.texi
index d9ccda4c..aefeba2d 100644
--- a/doc/microhttpd.texi
+++ b/doc/microhttpd.texi
@@ -707,16 +707,30 @@ connection is desired.
707@table @code 707@table @code
708 708
709@item MHD_CONNECTION_INFO_CIPHER_ALGO 709@item MHD_CONNECTION_INFO_CIPHER_ALGO
710What cipher algorithm is being used. 710What cipher algorithm is being used (HTTPS connections only).
711Takes no extra arguments. 711Takes no extra arguments.
712NULL is returned for non-HTTPS connections.
712 713
713@item MHD_CONNECTION_INFO_PROTOCOL, 714@item MHD_CONNECTION_INFO_PROTOCOL,
714Takes no extra arguments. Allows finding out the TLS/SSL protocol used 715Takes no extra arguments. Allows finding out the TLS/SSL protocol used
715(HTTPS connections only). 716(HTTPS connections only).
717NULL is returned for non-HTTPS connections.
718
719@item MHD_CONNECTION_INFO_CLIENT_ADDRESS
720Returns information about the address of the client. Returns
721essentially a @code{struct sockaddr **} (since the API returns
722a @code{union MHD_ConnectionInfo *} and that union contains
723a @code{struct sockaddr *}).
716 724
717@item MHD_CONNECTION_INFO_GNUTLS_SESSION, 725@item MHD_CONNECTION_INFO_GNUTLS_SESSION,
718Takes no extra arguments. Allows access to the underlying GNUtls session, 726Takes no extra arguments. Allows access to the underlying GNUtls session,
719including access to the underlying GNUtls client certificate 727including access to the underlying GNUtls client certificate
728(HTTPS connections only). Takes no extra arguments.
729NULL is returned for non-HTTPS connections.
730
731@item MHD_CONNECTION_INFO_GNUTLS_CLIENT_CERT,
732Takes no extra arguments. Allows access to the client certificate
733including access to the underlying GNUtls client certificate
720(HTTPS connections only). Takes no extra arguments. 734(HTTPS connections only). Takes no extra arguments.
721 735
722@end table 736@end table
@@ -1924,6 +1938,8 @@ in case the desired information is not available or
1924applicable. 1938applicable.
1925@end deftypefun 1939@end deftypefun
1926 1940
1941
1942
1927@c ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1943@c ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1928 1944
1929 1945