aboutsummaryrefslogtreecommitdiff
path: root/src/pt
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-01-09 12:22:04 +0100
committerChristian Grothoff <christian@grothoff.org>2022-01-09 12:22:04 +0100
commitec19c1e316efdd29a7af0524fc2ff33cc4b19d09 (patch)
tree184a59ff1c8408c462254e53f7e2004be829e237 /src/pt
parentc3ecadd45b11f82e22ba81b42864c7826d0f97c6 (diff)
downloadgnunet-ec19c1e316efdd29a7af0524fc2ff33cc4b19d09.tar.gz
gnunet-ec19c1e316efdd29a7af0524fc2ff33cc4b19d09.zip
DHT: modify API and protocol messages to add path signatures, except for now the actual signatures are just placeholders (signing and signature verification are missing)
Diffstat (limited to 'src/pt')
-rw-r--r--src/pt/gnunet-daemon-pt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pt/gnunet-daemon-pt.c b/src/pt/gnunet-daemon-pt.c
index da4374223..b79a8e464 100644
--- a/src/pt/gnunet-daemon-pt.c
+++ b/src/pt/gnunet-daemon-pt.c
@@ -1140,9 +1140,9 @@ static void
1140handle_dht_result (void *cls, 1140handle_dht_result (void *cls,
1141 struct GNUNET_TIME_Absolute exp, 1141 struct GNUNET_TIME_Absolute exp,
1142 const struct GNUNET_HashCode *key, 1142 const struct GNUNET_HashCode *key,
1143 const struct GNUNET_PeerIdentity *get_path, 1143 const struct GNUNET_DHT_PathElement *get_path,
1144 unsigned int get_path_length, 1144 unsigned int get_path_length,
1145 const struct GNUNET_PeerIdentity *put_path, 1145 const struct GNUNET_DHT_PathElement *put_path,
1146 unsigned int put_path_length, 1146 unsigned int put_path_length,
1147 enum GNUNET_BLOCK_Type type, 1147 enum GNUNET_BLOCK_Type type,
1148 size_t size, const void *data) 1148 size_t size, const void *data)