You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mt...@apache.org on 2006/07/26 11:25:20 UTC

svn commit: r425690 - /httpd/httpd/trunk/modules/proxy/ajp.h

Author: mturk
Date: Wed Jul 26 02:25:19 2006
New Revision: 425690

URL: http://svn.apache.org/viewvc?rev=425690&view=rev
Log:
Add missing prototype for ajp_handle_cping_cpong function

Modified:
    httpd/httpd/trunk/modules/proxy/ajp.h

Modified: httpd/httpd/trunk/modules/proxy/ajp.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/ajp.h?rev=425690&r1=425689&r2=425690&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/ajp.h (original)
+++ httpd/httpd/trunk/modules/proxy/ajp.h Wed Jul 26 02:25:19 2006
@@ -458,6 +458,17 @@
 apr_status_t  ajp_parse_data(request_rec  *r, ajp_msg_t *msg,
                              apr_uint16_t *len, char **ptr);
 
+
+/** 
+ * Handle the CPING/CPONG messages
+ * @param sock      backend socket
+ * @param r         current request
+ * @param timeout   time window for receiving cpong reply
+ * @return          APR_SUCCESS or error
+ */
+apr_status_t ajp_handle_cping_cpong(apr_socket_t *sock,
+                                    request_rec *r,
+                                    apr_interval_time_t timeout);
 /** @} */
 
 #endif /* AJP_H */