uncrustify as demanded.
[oweals/gnunet.git] / src / transport / transport-testing-loggers.c
index 6ad181e878a8d6cb6dd87707f2792f6b5555f7f4..5fb7f223396a1217b394f35ffa331697c49037fa 100644 (file)
      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/>.
 
      SPDX-License-Identifier: AGPL3.0-or-later
-*/
+ */
 /**
  * @file transport-testing-loggers.c
  * @brief convenience functions for logging common events in tests
  * @param other peer that connected.
  */
 void
-GNUNET_TRANSPORT_TESTING_log_connect (void *cls,
-                                      struct GNUNET_TRANSPORT_TESTING_PeerContext *me,
-                                      const struct GNUNET_PeerIdentity *other)
+GNUNET_TRANSPORT_TESTING_log_connect(void *cls,
+                                     struct GNUNET_TRANSPORT_TESTING_PeerContext *me,
+                                     const struct GNUNET_PeerIdentity *other)
 {
   char *ps;
 
-  ps = GNUNET_strdup (GNUNET_i2s (&me->id));
-  GNUNET_log (GNUNET_ERROR_TYPE_INFO,
-              "Peer %s connected to %u (%s)!\n",
-              GNUNET_i2s (other),
-              me->no,
-              ps);
-  GNUNET_free (ps);
+  ps = GNUNET_strdup(GNUNET_i2s(&me->id));
+  GNUNET_log(GNUNET_ERROR_TYPE_INFO,
+             "Peer %s connected to %u (%s)!\n",
+             GNUNET_i2s(other),
+             me->no,
+             ps);
+  GNUNET_free(ps);
 }
 
 
@@ -59,19 +59,19 @@ GNUNET_TRANSPORT_TESTING_log_connect (void *cls,
  * @param other peer that disconnected.
  */
 void
-GNUNET_TRANSPORT_TESTING_log_disconnect (void *cls,
-                                         struct GNUNET_TRANSPORT_TESTING_PeerContext *me,
-                                         const struct GNUNET_PeerIdentity *other)
+GNUNET_TRANSPORT_TESTING_log_disconnect(void *cls,
+                                        struct GNUNET_TRANSPORT_TESTING_PeerContext *me,
+                                        const struct GNUNET_PeerIdentity *other)
 {
   char *ps;
 
-  ps = GNUNET_strdup (GNUNET_i2s (&me->id));
-  GNUNET_log (GNUNET_ERROR_TYPE_INFO,
-              "Peer `%s' disconnected from %u (%s)!\n",
-              GNUNET_i2s (other),
-              me->no,
-              ps);
-  GNUNET_free (ps);
+  ps = GNUNET_strdup(GNUNET_i2s(&me->id));
+  GNUNET_log(GNUNET_ERROR_TYPE_INFO,
+             "Peer `%s' disconnected from %u (%s)!\n",
+             GNUNET_i2s(other),
+             me->no,
+             ps);
+  GNUNET_free(ps);
 }
 
 /* end of transport-testing-loggers.c */