client_manager: add API for async operations
[oweals/gnunet.git] / src / include / gnunet_env_lib.h
index 85197a7e77d761ee493c7339a189f7665514b6ca..99f096ca258099bcb37c5a87d206c07e7cea39e5 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * This file is part of GNUnet.
- * (C) 2013 Christian Grothoff (and other contributing authors)
+ * Copyright (C) 2013 Christian Grothoff (and other contributing authors)
  *
  * GNUnet is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published
@@ -174,7 +174,7 @@ struct GNUNET_ENV_Modifier *
 GNUNET_ENV_environment_tail (const struct GNUNET_ENV_Environment *env);
 
 
-/** 
+/**
  * Remove a modifier from the environment.
  */
 void
@@ -282,19 +282,6 @@ int
 GNUNET_ENV_value_to_number (size_t size, const void *value, int64_t *number);
 
 
-/**
- * Get the variable's value as a list.
- *
- * @param size Size of value.
- * @param value Raw value of variable.
- * @param[out] list A newly created list holding the elements.
- *
- * @return #GNUNET_OK on success, #GNUNET_SYSERR if an error occurred (e.g. the value is invalid).
- */
-int
-GNUNET_ENV_value_to_list (size_t size, const void *value, struct GNUNET_CONTAINER_SList **list);
-
-
 /**
  * Get the variable's value as a dictionary.
  *
@@ -320,18 +307,6 @@ void *
 GNUNET_ENV_value_from_number (int64_t number, size_t *value_size);
 
 
-/**
- * Create a PSYC variable value from a list.
- *
- * @param list The list to convert.
- * @param[out] value_size Size of returned value.
- *
- * @return A newly allocated value or NULL on error.
- */
-void *
-GNUNET_ENV_value_from_list (struct GNUNET_CONTAINER_SList *list, size_t *value_size);
-
-
 /**
  * Create a PSYC variable value from a dictionary.
  *