of course it is const
authorChristian Grothoff <christian@grothoff.org>
Sat, 15 Jun 2019 13:37:00 +0000 (15:37 +0200)
committerChristian Grothoff <christian@grothoff.org>
Sat, 15 Jun 2019 13:38:17 +0000 (15:38 +0200)
src/include/gnunet_identity_service.h
src/include/gnunet_strings_lib.h

index 4cc84d7c2d67e49a1ca0a742cc21e8d6c0b9ccae..b2472da43279fd066936553865d8e37fedcf0a3b 100644 (file)
@@ -329,6 +329,27 @@ void
 GNUNET_IDENTITY_ego_lookup_cancel (struct GNUNET_IDENTITY_EgoLookup *el);
 
 
+/**
+ * Obtain the ego with the maximum suffix match between the
+ * ego's name and the given domain name @a suffix.  I.e., given
+ * a @a suffix "a.b.c" and egos with names "d.a.b.c", "b.c" and "c",
+ * we return the ego for "b.c".
+ *
+ * @param id identity service to query
+ * @param suffix for which domain name suffix is an identity wanted
+ * @param cb function to call with the result (will only be called once)
+ * @param cb_cls closure for @a cb
+ * @return handle to abort the operation
+ */
+struct GNUNET_IDENTITY_EgoLookup *
+GNUNET_IDENTITY_ego_lookup_by_suffix (struct GNUNET_IDENTITY_Handle *id,
+                                     const char *suffix,
+                                     GNUNET_IDENTITY_EgoCallback cb,
+                                     void *cb_cls);
+
+
+
+
 #if 0 /* keep Emacsens' auto-indent happy */
 {
 #endif
index 9962160f2ace023d6492d1b6d6473a0c0ff42306..f43567611004015af5a2156c011ae3d3db09ac20 100644 (file)
@@ -222,7 +222,7 @@ GNUNET_STRINGS_buffer_fill (char *buffer,
  * in the buffer and assign the count (varargs) of type "const char**"
  * to the locations of the respective strings in the buffer.
  *
- * @param buffer the buffer to parse FIXME: not 'const', is it?
+ * @param buffer the buffer to parse
  * @param size size of the @a buffer
  * @param count number of strings to locate
  * @param ... pointers to where to store the strings