Files
haiku-beta6/headers/os/bluetooth/bdaddrUtils.h
T

66 lines
1.1 KiB
C++
Raw Normal View History

/*
2007-11-30 19:51:44 +00:00
* Copyright 2007 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com
*
* All rights reserved. Distributed under the terms of the MIT License.
*
*/
2007-11-30 19:51:44 +00:00
#ifndef _BDADDR_UTILS_H
#define _BDADDR_UTILS_H
#include <stdio.h>
2007-10-22 17:51:59 +00:00
#include <bluetooth/bluetooth.h>
namespace Bluetooth {
2007-10-22 17:51:59 +00:00
class bdaddrUtils {
public:
2007-11-30 19:51:44 +00:00
static inline bdaddr_t NullAddress()
2007-10-22 17:51:59 +00:00
{
return ((bdaddr_t) {{0, 0, 0, 0, 0, 0}});
}
static inline bdaddr_t LocalAddress()
{
return ((bdaddr_t) {{0, 0, 0, 0xff, 0xff, 0xff}});
}
static inline bdaddr_t BroadcastAddress()
{
return ((bdaddr_t) {{0xff, 0xff, 0xff, 0xff, 0xff, 0xff}});
}
static char* ToString(const bdaddr_t bdaddr)
2007-10-22 17:51:59 +00:00
{
// TODO: not safe
static char str[18];
sprintf(str,"%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X",bdaddr.b[0],
bdaddr.b[1],
bdaddr.b[2],
bdaddr.b[3],
bdaddr.b[4],
bdaddr.b[5]);
2007-10-22 17:51:59 +00:00
return str;
}
2007-10-22 17:51:59 +00:00
};
}
#ifndef _BT_USE_EXPLICIT_NAMESPACE
using Bluetooth::bdaddrUtils;
#endif
#endif