diff options
author | tg <tg@140774ce-b5e7-0310-ab8b-a85725594a96> | 2012-11-18 18:09:34 +0000 |
---|---|---|
committer | tg <tg@140774ce-b5e7-0310-ab8b-a85725594a96> | 2012-11-18 18:09:34 +0000 |
commit | 0f6d08a90632c079556d938ef75a1e1ef8a7fb05 (patch) | |
tree | 0b6b383f354d1a27b5259a993723cc5a60dced8b /src/include/gnunet_hello_lib.h | |
parent | 01a2c635197a8f1718972fe0eb95cbf174422424 (diff) |
moved hello uri functions to hello lib
git-svn-id: https://gnunet.org/svn/gnunet@25040 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/include/gnunet_hello_lib.h')
-rw-r--r-- | src/include/gnunet_hello_lib.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/include/gnunet_hello_lib.h b/src/include/gnunet_hello_lib.h index 244ec36485..6a334a7e54 100644 --- a/src/include/gnunet_hello_lib.h +++ b/src/include/gnunet_hello_lib.h @@ -40,6 +40,12 @@ extern "C" /** + * Prefix that every HELLO URI must start with. + */ +#define GNUNET_HELLO_URI_PREFIX "gnunet://hello/" + + +/** * An address for communicating with a peer. We frequently * need this tuple and the components cannot really be * separated. This is NOT the format that would be used @@ -332,6 +338,42 @@ struct GNUNET_MessageHeader * GNUNET_HELLO_get_header (struct GNUNET_HELLO_Message *hello); + +typedef size_t (*GNUNET_HELLO_GenerateAddressListCallback) (void *cls, + size_t max, + void *buf); + + +typedef struct GNUNET_TRANSPORT_PluginFunctions * +(*GNUNET_HELLO_TransportPluginsFind) (const char *name); + + +/** + * Compose a hello URI string from a hello message. + * + * @param hello Hello message + * @param plugins_find Function to find transport plugins by name + * @return Hello URI string + */ +char * +GNUNET_HELLO_compose_uri (const struct GNUNET_HELLO_Message *hello, + GNUNET_HELLO_TransportPluginsFind plugins_find); + +/** + * Parse a hello URI string to a hello message. + * + * @param uri URI string to parse + * @param pubkey Pointer to struct where public key is parsed + * @param hello Pointer to struct where hello message is parsed + * @param plugins_find Function to find transport plugins by name + * @return GNUNET_OK on success, GNUNET_SYSERR if the URI was invalid, GNUNET_NO on other errors + */ +int +GNUNET_HELLO_parse_uri (const char *uri, + struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *pubkey, + struct GNUNET_HELLO_Message **hello, + GNUNET_HELLO_TransportPluginsFind plugins_find); + #if 0 /* keep Emacsens' auto-indent happy */ { #endif |