diff options
author | Alexey Kardashevskiy <aik@ozlabs.ru> | 2014-03-11 10:42:26 +1100 |
---|---|---|
committer | Amit Shah <amit.shah@redhat.com> | 2014-03-27 15:18:45 +0530 |
commit | 4297c8ee6f0ef70e5a71e3387a0fccaa20b04f94 (patch) | |
tree | 0f112bd18364728886a78a2d67b1156e8933a21c /include | |
parent | db237e33c08a279f0179f8f5128a6d10d9adc38a (diff) | |
download | qemu-4297c8ee6f0ef70e5a71e3387a0fccaa20b04f94.zip |
util: add qemu_ether_ntoa
This adds a helper to format ethernet MAC address.
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu-common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/qemu-common.h b/include/qemu-common.h index c8a58a873a..a998e8d36c 100644 --- a/include/qemu-common.h +++ b/include/qemu-common.h @@ -472,4 +472,6 @@ size_t buffer_find_nonzero_offset(const void *buf, size_t len); */ int parse_debug_env(const char *name, int max, int initial); +const char *qemu_ether_ntoa(const MACAddr *mac); + #endif |