aboutsummaryrefslogtreecommitdiff
path: root/src/include/microhttpd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/microhttpd.h')
-rw-r--r--src/include/microhttpd.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 2dc1811c..77fbcccd 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -717,7 +717,9 @@ enum MHD_ConnectionInfoType
717 717
718 /** 718 /**
719 * Obtain IP address of the client. 719 * Obtain IP address of the client.
720 * Takes no extra arguments. 720 * Takes no extra arguments. Returns a
721 * 'struct sockaddr_in **' by accident; obsolete,
722 * use MHD_CONNECTION_INFO_CLIENT_SOCK_ADDR.
721 */ 723 */
722 MHD_CONNECTION_INFO_CLIENT_ADDRESS, 724 MHD_CONNECTION_INFO_CLIENT_ADDRESS,
723 725
@@ -730,6 +732,7 @@ enum MHD_ConnectionInfoType
730 * Get the GNUTLS client certificate handle. 732 * Get the GNUTLS client certificate handle.
731 */ 733 */
732 MHD_CONNECTION_INFO_GNUTLS_CLIENT_CERT 734 MHD_CONNECTION_INFO_GNUTLS_CLIENT_CERT
735
733}; 736};
734 737
735/** 738/**
@@ -1545,7 +1548,7 @@ union MHD_ConnectionInfo
1545 /** 1548 /**
1546 * Address information for the client. 1549 * Address information for the client.
1547 */ 1550 */
1548 struct sockaddr_in * client_addr; 1551 struct sockaddr_in *client_addr;
1549}; 1552};
1550 1553
1551/** 1554/**