From b76ea0f34f6d26d8711d402b22cc4aa21d8bac6c Mon Sep 17 00:00:00 2001 From: Uwe Stuehler Date: Mon, 24 Nov 2008 23:34:43 +0000 Subject: Bluetooth daemon and contrl utility, one for all, work in progress --- usr.sbin/btctl/btctl.h | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 usr.sbin/btctl/btctl.h (limited to 'usr.sbin/btctl/btctl.h') diff --git a/usr.sbin/btctl/btctl.h b/usr.sbin/btctl/btctl.h new file mode 100644 index 00000000000..291eaaf2021 --- /dev/null +++ b/usr.sbin/btctl/btctl.h @@ -0,0 +1,44 @@ +/* $OpenBSD: btctl.h,v 1.1 2008/11/24 23:34:41 uwe Exp $ */ + +/* + * Copyright (c) 2008 Uwe Stuehler + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER + * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING + * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include +#include + +enum btctl_stmt_type { + BTCTL_CONFIG, + BTCTL_INTERFACE_STMT, + BTCTL_ATTACH_STMT, + BTCTL_COMMIT, + BTCTL_ROLLBACK +}; + +typedef struct { + bdaddr_t addr; + char name[HCI_UNIT_NAME_SIZE]; + int8_t flags; +} btctl_interface_stmt; +#define BTCTL_INTERFACE_DISABLED 0x01 + +typedef struct { + bdaddr_t addr; + uint16_t type; + uint8_t pin[HCI_PIN_SIZE]; +} btctl_attach_stmt; + +/* parse.y */ +int parse_config(const char *, int); -- cgit v1.2.3