working version
[oweals/gnunet.git] / src / arm / gnunet-service-arm.h
index 0ef557157c595a2c254e52e7b198bf02e3585ae5..689f26c82b5d3996c4c8ae432384a9bfd1e566fb 100644 (file)
  * Start the specified service.
  *
  * @param client who is asking for this
- * @param servicename name of the service to start 
+ * @param servicename name of the service to start
  * @param lsocks -1 terminated list of listen sockets to pass (systemd style), or NULL
  * @return GNUNET_OK on success
  */
-int start_service (struct GNUNET_SERVER_Client *client,
-                  const char *servicename,
-                  const int *lsocks);
+int
+start_service (struct GNUNET_SERVER_Client *client, const char *servicename,
+               const int *lsocks);
 
 /**
  * Stop listening for connections to a service.
- * 
+ *
  * @param serviceName name of service to stop listening for
  * @return GNUNET_OK if we stopped to listen, GNUNET_NO if we were
  *         not listening
  */
-int stop_listening (const char *serviceName);
+int
+stop_listening (const char *serviceName);
 
-void prepareServices (const struct GNUNET_CONFIGURATION_Handle
-                     *configurationHandle);
+void
+prepareServices (const struct GNUNET_CONFIGURATION_Handle *configurationHandle);
 
 #endif