mirror of
https://github.com/apache/httpd.git
synced 2025-08-05 16:55:50 +03:00
Added many log numbers to log statements that
had none. Those were not detected by the coccinelle script. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1725485 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -2315,12 +2315,12 @@ static int lua_websocket_read(lua_State *L)
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||
"Websocket: Reading %" APR_SIZE_T_FMT " (%s) bytes, masking is %s. %s",
|
||||
plen,
|
||||
(payload >= 126) ? "extra payload" : "no extra payload",
|
||||
mask ? "on" : "off",
|
||||
fin ? "This is a final frame" : "more to follow");
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(03210)
|
||||
"Websocket: Reading %" APR_SIZE_T_FMT " (%s) bytes, masking is %s. %s",
|
||||
plen,
|
||||
(payload >= 126) ? "extra payload" : "no extra payload",
|
||||
mask ? "on" : "off",
|
||||
fin ? "This is a final frame" : "more to follow");
|
||||
if (mask) {
|
||||
len = 4;
|
||||
if (plaintext) {
|
||||
|
Reference in New Issue
Block a user