comparison Resources/Patches/civetweb-1.12.patch @ 3801:9fe1d64a748c

upgrade to civetweb 1.12, error reporting if OpenSSL failure
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 02 Apr 2020 11:24:47 +0200
parents
children 6462ecaa045b
comparison
equal deleted inserted replaced
3800:38b0f51781aa 3801:9fe1d64a748c
1 diff -urEb civetweb-1.12.orig/include/civetweb.h civetweb-1.12/include/civetweb.h
2 --- civetweb-1.12.orig/include/civetweb.h 2020-04-02 10:56:55.681988632 +0200
3 +++ civetweb-1.12/include/civetweb.h 2020-04-02 10:57:36.413858039 +0200
4 @@ -1614,6 +1614,9 @@
5 struct mg_error_data *error);
6 #endif
7
8 +// Added by SJ
9 +CIVETWEB_API void mg_disable_keep_alive(struct mg_connection *conn);
10 +
11 #ifdef __cplusplus
12 }
13 #endif /* __cplusplus */
14 diff -urEb civetweb-1.12.orig/src/civetweb.c civetweb-1.12/src/civetweb.c
15 --- civetweb-1.12.orig/src/civetweb.c 2020-04-02 10:56:55.685988619 +0200
16 +++ civetweb-1.12/src/civetweb.c 2020-04-02 11:00:31.345304121 +0200
17 @@ -20705,4 +20705,13 @@
18 }
19
20
21 +// Added by SJ
22 +void mg_disable_keep_alive(struct mg_connection *conn)
23 +{
24 + if (conn != NULL) {
25 + conn->must_close = 1;
26 + }
27 +}
28 +
29 +
30 /* End of civetweb.c */