global reindent, now with uncrustify hook enabled
[oweals/gnunet.git] / src / regex / regex_api_announce.c
index 8e018f26cec4fa5416f0b8ddf7787ecb3288a343..318d73263f3c2ba017593a8a89aa469053a5d526 100644 (file)
@@ -2,21 +2,21 @@
      This file is part of GNUnet
      Copyright (C) 2012, 2013, 2016 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 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
-     General Public License for more details.
+     Affero 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, write to the
-     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-     Boston, MA 02110-1301, USA.
-*/
+     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/>.
+
+     SPDX-License-Identifier: AGPL3.0-or-later
+ */
 /**
  * @file regex/regex_api_announce.c
  * @brief access regex service to advertise capabilities via regex
@@ -29,7 +29,7 @@
 #include "gnunet_regex_service.h"
 #include "regex_ipc.h"
 
-#define LOG(kind,...) GNUNET_log_from (kind, "regex-api",__VA_ARGS__)
+#define LOG(kind, ...) GNUNET_log_from (kind, "regex-api", __VA_ARGS__)
 
 /**
  * Handle to store cached data about a regex announce.
@@ -119,8 +119,8 @@ announce_reconnect (struct GNUNET_REGEX_Announcement *a)
   am->reserved = htons (0);
   am->refresh_delay = GNUNET_TIME_relative_hton (a->refresh_delay);
   GNUNET_memcpy (&am[1],
-          a->regex,
-          slen);
+                 a->regex,
+                 slen);
   GNUNET_MQ_send (a->mq,
                   env);
 }
@@ -139,17 +139,17 @@ announce_reconnect (struct GNUNET_REGEX_Announcement *a)
 struct GNUNET_REGEX_Announcement *
 GNUNET_REGEX_announce (const struct GNUNET_CONFIGURATION_Handle *cfg,
                        const char *regex,
-                      struct GNUNET_TIME_Relative refresh_delay,
+                       struct GNUNET_TIME_Relative refresh_delay,
                        uint16_t compression)
 {
   struct GNUNET_REGEX_Announcement *a;
   size_t slen;
 
   slen = strlen (regex) + 1;
-  if (slen + sizeof (struct AnnounceMessage) >= GNUNET_MAX_MESSAGE_SIZE)
+  if (slen + sizeof(struct AnnounceMessage) >= GNUNET_MAX_MESSAGE_SIZE)
   {
     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
-                _("Regex `%s' is too long!\n"),
+                _ ("Regex `%s' is too long!\n"),
                 regex);
     GNUNET_break (0);
     return NULL;