summaryrefslogtreecommitdiffstats
path: root/avahi-core/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'avahi-core/util.c')
-rw-r--r--avahi-core/util.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/avahi-core/util.c b/avahi-core/util.c
index b186817..a41475a 100644
--- a/avahi-core/util.c
+++ b/avahi-core/util.c
@@ -403,3 +403,26 @@ guint avahi_domain_hash(const gchar *s) {
}
}
+gchar *avahi_format_mac_address(const guint8* mac, guint size) {
+ gchar *r, *t;
+ guint i;
+ static const gchar hex[] = "0123456789abcdef";
+
+ t = r = g_new(gchar, size > 0 ? size*3 : 1);
+
+ if (size <= 0) {
+ *r = 0;
+ return r;
+ }
+
+ for (i = 0; i < size; i++) {
+ *(t++) = hex[*mac >> 4];
+ *(t++) = hex[*mac & 0xF];
+ *(t++) = ':';
+
+ mac++;
+ }
+
+ *(--t) = 0;
+ return r;
+}