comparison Resources/Patches/civetweb-1.12.patch @ 3817:37e20bbf25f5

merge
author Alain Mazy <alain@mazy.be>
date Wed, 08 Apr 2020 14:50:06 +0200
parents 6462ecaa045b
children
comparison
equal deleted inserted replaced
3816:09f091b6b569 3817:37e20bbf25f5
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 12:07:20.727054140 +0200
3 +++ civetweb-1.12/include/civetweb.h 2020-04-02 12:07:42.734996559 +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 12:07:20.731054129 +0200
16 +++ civetweb-1.12/src/civetweb.c 2020-04-02 12:07:52.250971600 +0200
17 @@ -20704,5 +20704,12 @@
18 return 1;
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 /* End of civetweb.c */