Changes have been pushed for the repository "fawkesrobotics/fawkes".

Clone:  https://github.com/fawkesrobotics/fawkes.git
Gitweb: https://github.com/fawkesrobotics/fawkes

The branch, common/microhttpd has been created
        at  ee02ffbc3b3e4f6340cfcad54a329e0768ef6ea5 (commit)

https://github.com/fawkesrobotics/fawkes/tree/common/microhttpd

- *Log* ---------------------------------------------------------------
commit 6ecdbae8c3228e82fb4b2d48dafdfad9d4e8ca31
Author:     Till Hofmann <hofm...@kbsg.rwth-aachen.de>
AuthorDate: Sat Oct 10 00:42:47 2020 +0200
Commit:     Till Hofmann <hofm...@kbsg.rwth-aachen.de>
CommitDate: Sat Oct 10 00:42:47 2020 +0200

    webview: fix type of upload_data_size for microhttpd
    
    The upload_data_size is not a long unsigned * but a size_t *. These are
    the same on x86_64, but not on i686.

https://github.com/fawkesrobotics/fawkes/commit/6ecdbae8c

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
commit ee02ffbc3b3e4f6340cfcad54a329e0768ef6ea5
Author:     Till Hofmann <hofm...@kbsg.rwth-aachen.de>
AuthorDate: Sat Oct 10 00:47:08 2020 +0200
Commit:     Till Hofmann <hofm...@kbsg.rwth-aachen.de>
CommitDate: Sat Oct 10 00:47:08 2020 +0200

    webview: fix license header in microhttpd_compat header

https://github.com/fawkesrobotics/fawkes/commit/ee02ffbc3

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


- *Summary* -----------------------------------------------------------
 src/libs/webview/microhttpd_compat.h | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)


- *Diffs* -------------------------------------------------------------

- *commit* 6ecdbae8c3228e82fb4b2d48dafdfad9d4e8ca31 - - - - - - - - - -
Author:  Till Hofmann <hofm...@kbsg.rwth-aachen.de>
Date:    Sat Oct 10 00:42:47 2020 +0200
Subject: webview: fix type of upload_data_size for microhttpd

 src/libs/webview/request_dispatcher.cpp | 2 +-
 src/libs/webview/request_dispatcher.h   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

_Diff for modified files_:
diff --git a/src/libs/webview/request_dispatcher.cpp 
b/src/libs/webview/request_dispatcher.cpp
index 2d74732ff..1e5baf1d7 100644
--- a/src/libs/webview/request_dispatcher.cpp
+++ b/src/libs/webview/request_dispatcher.cpp
@@ -170,7 +170,7 @@ WebRequestDispatcher::process_request_cb(void *             
    callback_data,
                                          const char *           method,
                                          const char *           version,
                                          const char *           upload_data,
-                                         long unsigned int *    
upload_data_size,
+                                         size_t *               
upload_data_size,
                                          void **                session_data)
 {
        WebRequestDispatcher *rd = static_cast<WebRequestDispatcher 
*>(callback_data);
diff --git a/src/libs/webview/request_dispatcher.h 
b/src/libs/webview/request_dispatcher.h
index a5a341541..949d005b7 100644
--- a/src/libs/webview/request_dispatcher.h
+++ b/src/libs/webview/request_dispatcher.h
@@ -59,7 +59,7 @@ public:
                                             const char *           method,
                                             const char *           version,
                                             const char *           upload_data,
-                                            long unsigned int *    
upload_data_size,
+                                            size_t *               
upload_data_size,
                                             void **                
session_data);
 
        static void request_completed_cb(void *                          cls,

- *commit* ee02ffbc3b3e4f6340cfcad54a329e0768ef6ea5 - - - - - - - - - -
Author:  Till Hofmann <hofm...@kbsg.rwth-aachen.de>
Date:    Sat Oct 10 00:47:08 2020 +0200
Subject: webview: fix license header in microhttpd_compat header

 src/libs/webview/microhttpd_compat.h | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

_Diff for modified files_:
diff --git a/src/libs/webview/microhttpd_compat.h 
b/src/libs/webview/microhttpd_compat.h
index d84896a82..1776ccaf4 100644
--- a/src/libs/webview/microhttpd_compat.h
+++ b/src/libs/webview/microhttpd_compat.h
@@ -2,7 +2,19 @@
  * microhttpd_compat.h
  * Copyright (C) 2020 Tarik Viehmann <viehm...@kbsg.rwth-aachen.de>
  *
- * Distributed under terms of the MIT license.
+ */
+
+/*  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU Library General Public License for more details.
+ *
+ *  Read the full text in the LICENSE.GPL file in the doc directory.
  */
 
 #ifndef MICROHTTPD_COMPAT_H



_______________________________________________
fawkes-commits mailing list
fawkes-commits@lists.kbsg.rwth-aachen.de
https://lists.kbsg.rwth-aachen.de/listinfo/fawkes-commits

Reply via email to