gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r10863 - gnunet/src/hostlist


From: gnunet
Subject: [GNUnet-SVN] r10863 - gnunet/src/hostlist
Date: Fri, 9 Apr 2010 17:23:44 +0200

Author: holindho
Date: 2010-04-09 17:23:44 +0200 (Fri, 09 Apr 2010)
New Revision: 10863

Modified:
   gnunet/src/hostlist/gnunet-daemon-hostlist.c
Log:
static until proven otherwise


Modified: gnunet/src/hostlist/gnunet-daemon-hostlist.c
===================================================================
--- gnunet/src/hostlist/gnunet-daemon-hostlist.c        2010-04-09 15:18:42 UTC 
(rev 10862)
+++ gnunet/src/hostlist/gnunet-daemon-hostlist.c        2010-04-09 15:23:44 UTC 
(rev 10863)
@@ -72,32 +72,32 @@
 /**
  * Handle to the core service (NULL until we've connected to it).
  */
-struct GNUNET_CORE_Handle *core;
+static struct GNUNET_CORE_Handle *core;
 
 /**
  * Handle to the hostlist client's advertisement handler
  */
-GNUNET_CORE_MessageCallback client_adv_handler = NULL;
+static GNUNET_CORE_MessageCallback client_adv_handler = NULL;
 
 /**
  * Handle to hostlist client's connect handler
  */
-GNUNET_CORE_ConnectEventHandler client_ch = NULL;
+static GNUNET_CORE_ConnectEventHandler client_ch = NULL;
 
 /**
  * Handle to hostlist client's disconnect handler
  */
-GNUNET_CORE_DisconnectEventHandler client_dh = NULL;
+static GNUNET_CORE_DisconnectEventHandler client_dh = NULL;
 
 /**
  * Handle to hostlist server's connect handler
  */
-GNUNET_CORE_ConnectEventHandler server_ch = NULL;
+static GNUNET_CORE_ConnectEventHandler server_ch = NULL;
 
 /**
  * Handle to hostlist server's disconnect handler
  */
-GNUNET_CORE_DisconnectEventHandler server_dh = NULL;
+static GNUNET_CORE_DisconnectEventHandler server_dh = NULL;
 
 /**
  * gnunet-daemon-hostlist command line options.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]