paragraph for gnunet devs that don't know how to use the web
[oweals/gnunet.git] / src / curl / curl.c
index 0a9fc5ffb722cf37475298f1f928fb0915bb7d83..2d0b09d92d1c46da30d4c21ba86ba4098ebbc863 100644 (file)
@@ -2,17 +2,18 @@
   This file is part of GNUnet
   Copyright (C) 2014, 2015, 2016, 2018 GNUnet e.V.
 
-  GNUnet 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 3, or (at your option) any later version.
-
-  GNUnet 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 General Public License for more details.
-
-  You should have received a copy of the GNU General Public License along with
-  GNUnet; see the file COPYING.  If not, If not, see
-  <http://www.gnu.org/licenses/>
+  GNUnet is free software: you can redistribute it and/or modify it
+  under the terms of the GNU Affero General Public License as published
+  by the Free Software Foundation, either version 3 of the License,
+  or (at your option) any later version.
+
+  GNUnet 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
+  Affero General Public License for more details.
+  You should have received a copy of the GNU Affero General Public License
+  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 /**
  * @file curl/curl.c
@@ -386,6 +387,11 @@ download_get_result (struct DownloadBuffer *db,
   json_error_t error;
   char *ct;
 
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+              "Downloaded body: %.*s\n",
+              (int) db->buf_size,
+              (char *) db->buf);
+
   if ( (CURLE_OK !=
         curl_easy_getinfo (eh,
                            CURLINFO_CONTENT_TYPE,
@@ -405,6 +411,8 @@ download_get_result (struct DownloadBuffer *db,
       GNUNET_break (0);
       *response_code = 0;
     }
+    GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+                "Did NOT detect response as JSON\n");
     return NULL;
   }
   json = NULL;