You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2018/03/22 21:07:02 UTC

svn commit: r1827529 - /httpd/httpd/trunk/include/http_protocol.h

Author: jailletc36
Date: Thu Mar 22 21:07:02 2018
New Revision: 1827529

URL: http://svn.apache.org/viewvc?rev=1827529&view=rev
Log:
Fix some doxygen comment

Modified:
    httpd/httpd/trunk/include/http_protocol.h

Modified: httpd/httpd/trunk/include/http_protocol.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/http_protocol.h?rev=1827529&r1=1827528&r2=1827529&view=diff
==============================================================================
--- httpd/httpd/trunk/include/http_protocol.h (original)
+++ httpd/httpd/trunk/include/http_protocol.h Thu Mar 22 21:07:02 2018
@@ -677,8 +677,8 @@ AP_DECLARE(apr_status_t) ap_rgetline(cha
                                      request_rec *r, int flags,
                                      apr_bucket_brigade *bb);
 #else /* ASCII box */
-#define ap_rgetline(s, n, read, r, fold, bb) \
-        ap_rgetline_core((s), (n), (read), (r), (fold), (bb))
+#define ap_rgetline(s, n, read, r, flags, bb) \
+        ap_rgetline_core((s), (n), (read), (r), (flags), (bb))
 #endif
 
 /** @see ap_rgetline */
@@ -817,8 +817,7 @@ AP_DECLARE_HOOK(int,protocol_propose,(co
  * @param c The current connection
  * @param r The current request or NULL
  * @param s The server/virtual host selected
- * @param choices A list of protocol identifiers, normally the client's wishes
- * @param proposals the list of protocol identifiers proposed by the hooks
+ * @param protocol The protocol identifier we try to swicth to
  * @return OK or DECLINED
  */
 AP_DECLARE_HOOK(int,protocol_switch,(conn_rec *c, request_rec *r,