diff options
Diffstat (limited to 'src/mds-registry.h')
-rw-r--r-- | src/mds-registry.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mds-registry.h b/src/mds-registry.h index 6eb09b4..2f40f31 100644 --- a/src/mds-registry.h +++ b/src/mds-registry.h @@ -21,6 +21,8 @@ #include "mds-base.h" +#include <stdint.h> + /** * Handle the received message @@ -31,6 +33,14 @@ int handle_message(void); /** + * Convert a client ID string into a client ID integer + * + * @param str The client ID string + * @return The client ID integer + */ +uint64_t parse_client_id(const char* str); + +/** * Perform an action over the registry * * @param length The length of the received message |