comparison OrthancFramework/Resources/Patches/civetweb-1.12.patch @ 4044:d25f4c0fa160 framework

splitting code into OrthancFramework and OrthancServer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 10 Jun 2020 20:30:34 +0200
parents Resources/Patches/civetweb-1.12.patch@6462ecaa045b
children c8c0bbaaace3
comparison
equal deleted inserted replaced
4043:6c6239aec462 4044:d25f4c0fa160
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 */