X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fgns%2Fgnunet-service-gns_shorten.h;h=d82bb52f73a8fc5afb3b8c3cecd81eb177583299;hb=2105059516320800eaa8fff1196b58f29a50ba7c;hp=5f583eeb55c321073e1b57feae70eecf73176254;hpb=9351b1e9bdf2b067b6db06562c26ba658cff42b8;p=oweals%2Fgnunet.git diff --git a/src/gns/gnunet-service-gns_shorten.h b/src/gns/gnunet-service-gns_shorten.h index 5f583eeb5..d82bb52f7 100644 --- a/src/gns/gnunet-service-gns_shorten.h +++ b/src/gns/gnunet-service-gns_shorten.h @@ -1,6 +1,6 @@ /* This file is part of GNUnet. - (C) 2009-2013 Christian Grothoff (and other contributing authors) + Copyright (C) 2009-2013 GNUnet e.V. GNUnet is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with GNUnet; see the file COPYING. If not, write to the - Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /** * @file gns/gnunet-service-gns_shorten.h @@ -26,6 +26,7 @@ #define GNS_SHORTEN_H #include "gns.h" #include "gnunet_dht_service.h" +#include "gnunet_namecache_service.h" #include "gnunet_namestore_service.h" @@ -34,10 +35,12 @@ * MUST be called before #GNS_shorten_start. * * @param nh handle to the namestore + * @param nc the namecache handle * @param dht handle to the dht */ void GNS_shorten_init (struct GNUNET_NAMESTORE_Handle *nh, + struct GNUNET_NAMECACHE_Handle *nc, struct GNUNET_DHT_Handle *dht); @@ -59,8 +62,9 @@ GNS_shorten_done (void); */ void GNS_shorten_start (const char *original_label, - const struct GNUNET_CRYPTO_EcdsaPublicKey *pub, - const struct GNUNET_CRYPTO_EcdsaPrivateKey *shorten_zone); + const char *suggested_label, + const struct GNUNET_CRYPTO_EcdsaPublicKey *pub, + const struct GNUNET_CRYPTO_EcdsaPrivateKey *shorten_zone); #endif