X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=avahi-core%2Futil.h;h=8d2caeea5d4c1726cd1a8b0b979e0d807ebc9fc1;hb=9a048b843719ad831c17b030ac522bc1e57122f8;hp=6dcecfd6bcf73c6eee3ff3d0bf45512da7a5802d;hpb=a3596a5e3ec4937a220e6e60218639e2aba82701;p=catta diff --git a/avahi-core/util.h b/avahi-core/util.h index 6dcecfd..8d2caee 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(char *t, size_t l, const uint8_t* mac, size_t size); -gint 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); - -gint avahi_domain_hash(const gchar *s); +AVAHI_C_DECL_END #endif