diff options
Diffstat (limited to 'x11vnc/sslhelper.c')
-rw-r--r-- | x11vnc/sslhelper.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/x11vnc/sslhelper.c b/x11vnc/sslhelper.c index 83a9f38..7e5e5ec 100644 --- a/x11vnc/sslhelper.c +++ b/x11vnc/sslhelper.c @@ -1574,6 +1574,7 @@ void accept_openssl(int mode) { * instead of a direct SSL connection. */ rfbLog("Handling VNC request via https GET. [%d]\n", getpid()); + rfbLog("-- %s\n", buf); if (strstr(buf, "/reverse.proxy")) { char *buf2; @@ -1604,6 +1605,9 @@ void accept_openssl(int mode) { "Content-Type: octet-stream\r\n" "Pragma: no-cache\r\n\r\n"; + rfbLog("Handling Check HTTPS request via https GET. [%d]\n", getpid()); + rfbLog("-- %s\n", buf); + SSL_write(ssl, reply, strlen(reply)); SSL_shutdown(ssl); |