aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-06-23 21:18:24 +0000
committerChristian Grothoff <christian@grothoff.org>2014-06-23 21:18:24 +0000
commit401a840149e7981a3ebda5723d65a5b2c11b8d4d (patch)
tree9f65e13911fcffe3cd39771f2940d2810c2e71be /src/transport
parent51b6dbc56f910bbb3e9ed378a71ebb2c87340885 (diff)
downloadgnunet-401a840149e7981a3ebda5723d65a5b2c11b8d4d.tar.gz
gnunet-401a840149e7981a3ebda5723d65a5b2c11b8d4d.zip
-indentation fixes
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/plugin_transport_tcp.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/transport/plugin_transport_tcp.c b/src/transport/plugin_transport_tcp.c
index 31d85966e..3e82465a7 100644
--- a/src/transport/plugin_transport_tcp.c
+++ b/src/transport/plugin_transport_tcp.c
@@ -1525,9 +1525,11 @@ tcp_plugin_get_session (void *cls,
1525 session); 1525 session);
1526 return session; 1526 return session;
1527 } 1527 }
1528 LOG(GNUNET_ERROR_TYPE_DEBUG, 1528 LOG (GNUNET_ERROR_TYPE_DEBUG,
1529 "Existing sessions did not match address `%s' or peer `%s'\n", 1529 "Existing sessions did not match address `%s' or peer `%s'\n",
1530 tcp_plugin_address_to_string(NULL, address->address, address->address_length), 1530 tcp_plugin_address_to_string (NULL,
1531 address->address,
1532 address->address_length),
1531 GNUNET_i2s (&address->peer)); 1533 GNUNET_i2s (&address->peer));
1532 } 1534 }
1533 1535
@@ -2063,11 +2065,13 @@ handle_tcp_nat_probe (void *cls,
2063 &tcp_nat_probe->clientIdentity); 2065 &tcp_nat_probe->clientIdentity);
2064 if (session == NULL) 2066 if (session == NULL)
2065 { 2067 {
2066 LOG(GNUNET_ERROR_TYPE_DEBUG, "Did NOT find session for NAT probe!\n"); 2068 LOG (GNUNET_ERROR_TYPE_DEBUG,
2069 "Did NOT find session for NAT probe!\n");
2067 GNUNET_SERVER_receive_done (client, GNUNET_OK); 2070 GNUNET_SERVER_receive_done (client, GNUNET_OK);
2068 return; 2071 return;
2069 } 2072 }
2070 LOG(GNUNET_ERROR_TYPE_DEBUG, "Found session for NAT probe!\n"); 2073 LOG (GNUNET_ERROR_TYPE_DEBUG,
2074 "Found session for NAT probe!\n");
2071 2075
2072 if (session->nat_connection_timeout != GNUNET_SCHEDULER_NO_TASK) 2076 if (session->nat_connection_timeout != GNUNET_SCHEDULER_NO_TASK)
2073 { 2077 {