aboutsummaryrefslogtreecommitdiff
path: root/src/datacache/perf_datacache.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-11-13 20:05:40 +0000
committerChristian Grothoff <christian@grothoff.org>2012-11-13 20:05:40 +0000
commit4e1d85bac66209e6655f3fb4d3ddef7929f0f3fc (patch)
treedf5c5a0d972f35d741b51c3a3fc8d2298ac8b4fd /src/datacache/perf_datacache.c
parent855362e698928b0a5a8f72fc6427c2ea42af4e79 (diff)
downloadgnunet-4e1d85bac66209e6655f3fb4d3ddef7929f0f3fc.tar.gz
gnunet-4e1d85bac66209e6655f3fb4d3ddef7929f0f3fc.zip
changing datacache API to separate put-paths from data (so that plugins can test for duplicates), removing support for MySQL
Diffstat (limited to 'src/datacache/perf_datacache.c')
-rw-r--r--src/datacache/perf_datacache.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/datacache/perf_datacache.c b/src/datacache/perf_datacache.c
index 10289ec68..e30ae869d 100644
--- a/src/datacache/perf_datacache.c
+++ b/src/datacache/perf_datacache.c
@@ -44,9 +44,12 @@ static const char *plugin_name;
44 44
45 45
46static int 46static int
47checkIt (void *cls, struct GNUNET_TIME_Absolute exp, 47checkIt (void *cls,
48 const struct GNUNET_HashCode * key, size_t size, const char *data, 48 const struct GNUNET_HashCode * key, size_t size, const char *data,
49 enum GNUNET_BLOCK_Type type) 49 enum GNUNET_BLOCK_Type type,
50 struct GNUNET_TIME_Absolute exp,
51 unsigned int path_len,
52 const struct GNUNET_PeerIdentity *path)
50{ 53{
51 if ((size == sizeof (struct GNUNET_HashCode)) && (0 == memcmp (data, cls, size))) 54 if ((size == sizeof (struct GNUNET_HashCode)) && (0 == memcmp (data, cls, size)))
52 found++; 55 found++;
@@ -84,7 +87,8 @@ run (void *cls, char *const *args, const char *cfgfile,
84 GNUNET_CRYPTO_hash (&k, sizeof (struct GNUNET_HashCode), &n); 87 GNUNET_CRYPTO_hash (&k, sizeof (struct GNUNET_HashCode), &n);
85 ASSERT (GNUNET_OK == 88 ASSERT (GNUNET_OK ==
86 GNUNET_DATACACHE_put (h, &k, sizeof (struct GNUNET_HashCode), 89 GNUNET_DATACACHE_put (h, &k, sizeof (struct GNUNET_HashCode),
87 (const char *) &n, 1 + i % 16, exp)); 90 (const char *) &n, 1 + i % 16, exp,
91 0, NULL));
88 k = n; 92 k = n;
89 } 93 }
90 FPRINTF (stderr, "%s", "\n"); 94 FPRINTF (stderr, "%s", "\n");