X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=avahi-core%2Futil.h;h=1a073635770ec9992605511c4dc6a9d3a91dde5a;hb=16db94194059f7ca05813f68c26c59cfcfdcbd7c;hp=ef87f5f5a45f8e1b9531739f9728039c868bf6c8;hpb=f1b541eb614861312f917dab1bf75ad8267e321a;p=catta diff --git a/avahi-core/util.h b/avahi-core/util.h index ef87f5f..1a07363 100644 --- a/avahi-core/util.h +++ b/avahi-core/util.h @@ -22,34 +22,22 @@ USA. ***/ -#include +#include -gchar *avahi_normalize_name(const gchar *s); /* g_free() the result! */ -gchar *avahi_get_host_name(void); /* g_free() the result! */ +#include -gint avahi_timeval_compare(const GTimeVal *a, const GTimeVal *b); -glong avahi_timeval_diff(const GTimeVal *a, const GTimeVal *b); +AVAHI_C_DECL_BEGIN -gint avahi_set_cloexec(gint fd); -gint avahi_set_nonblock(gint fd); -gint avahi_wait_for_write(gint fd); +void avahi_hexdump(const void *p, size_t size); -GTimeVal *avahi_elapse_time(GTimeVal *tv, guint msec, guint jitter); +char *avahi_format_mac_address(const uint8_t* mac, size_t size); -glong avahi_age(const GTimeVal *a); +/** Change every character in the string to upper case (ASCII), return a pointer to the string */ +char *avahi_strup(char *s); -gboolean avahi_domain_equal(const gchar *a, const gchar *b); -gint avahi_binary_domain_cmp(const gchar *a, const gchar *b); +/** Change every character in the string to lower case (ASCII), return a pointer to the string */ +char *avahi_strdown(char *s); -void avahi_hexdump(gconstpointer p, guint size); - -/* Read the first label from the textual domain name *name, unescape - * it and write it to dest, *name is changed to point to the next label*/ -gchar *avahi_unescape_label(const gchar **name, gchar *dest, guint size); - -/* Escape the domain name in *src and write it to *ret_name */ -gchar *avahi_escape_label(const guint8* src, guint src_length, gchar **ret_name, guint *ret_size); - -guint avahi_domain_hash(const gchar *s); +AVAHI_C_DECL_END #endif