minor changes
authorMatthias Wachs <wachs@net.in.tum.de>
Thu, 17 Jul 2014 14:02:06 +0000 (14:02 +0000)
committerMatthias Wachs <wachs@net.in.tum.de>
Thu, 17 Jul 2014 14:02:06 +0000 (14:02 +0000)
src/transport/gnunet-service-transport.c
src/transport/plugin_transport_http.h

index a41aa7f65bca14ca98bf69895df3c8f1a424b90e..870e541a9843db6ae8dee9af4e4ecba07b2c1f26 100644 (file)
@@ -1097,7 +1097,7 @@ run (void *cls, struct GNUNET_SERVER_Handle *server,
   GNUNET_assert(NULL != GST_my_private_key);
 
   GNUNET_log(GNUNET_ERROR_TYPE_INFO, "My identity is `%4s'\n",
-      GNUNET_i2s (&GST_my_identity));
+      GNUNET_i2s_full (&GST_my_identity));
 
   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
       NULL );
index 2fb827be38760646e414465daf7e73c05c61b673..ae0c784eef230b7311bf1fd87ee564f12a15bbe3 100644 (file)
@@ -349,7 +349,7 @@ struct IPv6HttpAddress
 GNUNET_NETWORK_STRUCT_END
 
 
-struct ServerConnection
+struct ServerRequest
 {
   /* _RECV or _SEND */
   int direction;
@@ -477,12 +477,12 @@ struct Session
   /**
    * Client send handle
    */
-  struct ServerConnection *server_recv;
+  struct ServerRequest *server_recv;
 
   /**
    * Client send handle
    */
-  struct ServerConnection *server_send;
+  struct ServerRequest *server_send;
 };
 
 /**