89e77db68a
library, to avoid breakage on pkgbulk build which does not provide the same level of mk support as a NetBSD host
77 lines
1.9 KiB
Text
77 lines
1.9 KiB
Text
$NetBSD: patch-ab,v 1.5 2012/03/19 12:09:00 plunky Exp $
|
|
|
|
--- lib/bluetooth.h.orig 2012-02-29 18:23:20.000000000 +0000
|
|
+++ lib/bluetooth.h
|
|
@@ -30,6 +30,7 @@
|
|
extern "C" {
|
|
#endif
|
|
|
|
+#if 0
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
@@ -135,6 +136,20 @@ enum {
|
|
#else
|
|
#error "Unknown byte order"
|
|
#endif
|
|
+#else
|
|
+#include <bluetooth.h>
|
|
+#include <string.h>
|
|
+
|
|
+#define SOL_HCI BTPROTO_HCI
|
|
+
|
|
+#define htobs(d) htole16(d)
|
|
+#define htobl(d) htole32(d)
|
|
+#define btohs(d) le16toh(d)
|
|
+#define btohl(d) le32toh(d)
|
|
+#define bswap_64(v) bswap64(v)
|
|
+#define bswap_32(v) bswap32(v)
|
|
+#define bswap_16(v) bswap16(v)
|
|
+#endif
|
|
|
|
/* Bluetooth unaligned access */
|
|
#define bt_get_unaligned(ptr) \
|
|
@@ -217,6 +232,7 @@ static inline uint16_t bt_get_be16(const
|
|
#error "Unknown byte order"
|
|
#endif
|
|
|
|
+#if 0
|
|
/* BD Address */
|
|
typedef struct {
|
|
uint8_t b[6];
|
|
@@ -225,6 +241,7 @@ typedef struct {
|
|
#define BDADDR_ANY (&(bdaddr_t) {{0, 0, 0, 0, 0, 0}})
|
|
#define BDADDR_ALL (&(bdaddr_t) {{0xff, 0xff, 0xff, 0xff, 0xff, 0xff}})
|
|
#define BDADDR_LOCAL (&(bdaddr_t) {{0, 0, 0, 0xff, 0xff, 0xff}})
|
|
+#endif
|
|
|
|
/* Copy, swap, convert BD Address */
|
|
static inline int bacmp(const bdaddr_t *ba1, const bdaddr_t *ba2)
|
|
@@ -237,9 +254,12 @@ static inline void bacpy(bdaddr_t *dst,
|
|
}
|
|
|
|
void baswap(bdaddr_t *dst, const bdaddr_t *src);
|
|
+#if 0
|
|
bdaddr_t *strtoba(const char *str);
|
|
char *batostr(const bdaddr_t *ba);
|
|
+#endif
|
|
int ba2str(const bdaddr_t *ba, char *str);
|
|
+#if 0
|
|
int str2ba(const char *str, bdaddr_t *ba);
|
|
int ba2oui(const bdaddr_t *ba, char *oui);
|
|
int bachk(const char *str);
|
|
@@ -248,11 +268,14 @@ int baprintf(const char *format, ...);
|
|
int bafprintf(FILE *stream, const char *format, ...);
|
|
int basprintf(char *str, const char *format, ...);
|
|
int basnprintf(char *str, size_t size, const char *format, ...);
|
|
+#endif
|
|
|
|
void *bt_malloc(size_t size);
|
|
void bt_free(void *ptr);
|
|
|
|
+#if 0
|
|
int bt_error(uint16_t code);
|
|
+#endif
|
|
char *bt_compidtostr(int id);
|
|
|
|
typedef struct {
|