aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index c9d21aa4..abe0f291 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -884,16 +884,19 @@ struct MHD_Connection
884 884
885 /** 885 /**
886 * Handler used for processing read connection operations 886 * Handler used for processing read connection operations
887 * @sa #MHD_connection_handle_read, #MHD_tls_connection_handle_read
887 */ 888 */
888 int (*read_handler) (struct MHD_Connection *connection); 889 int (*read_handler) (struct MHD_Connection *connection);
889 890
890 /** 891 /**
891 * Handler used for processing write connection operations 892 * Handler used for processing write connection operations
893 * @sa #MHD_connection_handle_write, #MHD_tls_connection_handle_write
892 */ 894 */
893 int (*write_handler) (struct MHD_Connection *connection); 895 int (*write_handler) (struct MHD_Connection *connection);
894 896
895 /** 897 /**
896 * Handler used for processing idle connection operations 898 * Handler used for processing idle connection operations
899 * @sa #MHD_connection_handle_idle, #MHD_tls_connection_handle_idle
897 */ 900 */
898 int (*idle_handler) (struct MHD_Connection *connection); 901 int (*idle_handler) (struct MHD_Connection *connection);
899 902