gnunet-daemon-experimentation_storage.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. This file is part of GNUnet.
  3. (C) 2009 Christian Grothoff (and other contributing authors)
  4. GNUnet is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published
  6. by the Free Software Foundation; either version 3, or (at your
  7. option) any later version.
  8. GNUnet is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNUnet; see the file COPYING. If not, write to the
  14. Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 02111-1307, USA.
  16. */
  17. /**
  18. * @file experimentation/gnunet-daemon-experimentation_storage.c
  19. * @brief experimentation daemon: store results
  20. * @author Christian Grothoff
  21. * @author Matthias Wachs
  22. */
  23. #include "platform.h"
  24. #include "gnunet_util_lib.h"
  25. #include "gnunet_core_service.h"
  26. #include "gnunet_statistics_service.h"
  27. #include "gnunet-daemon-experimentation.h"
  28. /**
  29. * Start the storage component
  30. */
  31. void
  32. GED_storage_start ()
  33. {
  34. }
  35. /**
  36. * Stop the storage component
  37. */
  38. void
  39. GED_storage_stop ()
  40. {
  41. }
  42. /* end of gnunet-daemon-experimentation_storage.c */