a5c89047c0
NetBSD Foundation Membership still pending.) This stack was written by Iain under sponsorship from Itronix Inc. The stack includes support for rfcomm networking (networking via your bluetooth enabled cell phone), hid devices (keyboards/mice), and headsets. Drivers for both PCMCIA and USB bluetooth controllers are included.
108 lines
4.3 KiB
C
108 lines
4.3 KiB
C
/* $NetBSD: provider.h,v 1.1 2006/06/19 15:44:56 gdamore Exp $ */
|
|
|
|
/*-
|
|
* Copyright (c) 2006 Itronix Inc.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. The name of Itronix Inc. may not be used to endorse
|
|
* or promote products derived from this software without specific
|
|
* prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY ITRONIX INC. ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ITRONIX INC. BE LIABLE FOR ANY
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
/*
|
|
* provider.h
|
|
*
|
|
* Copyright (c) 2004 Maksim Yevmenkin <m_evmenkin@yahoo.com>
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
* $Id: provider.h,v 1.1 2006/06/19 15:44:56 gdamore Exp $
|
|
* $FreeBSD: src/usr.sbin/bluetooth/sdpd/provider.h,v 1.1 2004/01/20 20:48:26 emax Exp $
|
|
*/
|
|
|
|
#ifndef _PROVIDER_H_
|
|
#define _PROVIDER_H_
|
|
|
|
/*
|
|
* Provider of service
|
|
*/
|
|
|
|
struct profile;
|
|
|
|
struct provider
|
|
{
|
|
struct profile *profile; /* profile */
|
|
void *data; /* profile data */
|
|
uint32_t handle; /* record handle */
|
|
bdaddr_t bdaddr; /* provider's BDADDR */
|
|
int32_t fd; /* session descriptor */
|
|
TAILQ_ENTRY(provider) provider_next; /* all providers */
|
|
};
|
|
|
|
typedef struct provider provider_t;
|
|
typedef struct provider * provider_p;
|
|
|
|
#define provider_match_bdaddr(p, b) \
|
|
(bdaddr_any(b) || bdaddr_any(&(p)->bdaddr) || \
|
|
bdaddr_same(&(p)->bdaddr, (b)))
|
|
|
|
int32_t provider_register_sd (int32_t fd);
|
|
provider_p provider_register (profile_p const profile,
|
|
bdaddr_t const *bdaddr,
|
|
int32_t fd,
|
|
uint8_t const *data,
|
|
uint32_t datalen);
|
|
|
|
void provider_unregister (provider_p provider);
|
|
int32_t provider_update (provider_p provider,
|
|
uint8_t const *data,
|
|
uint32_t datalen);
|
|
provider_p provider_by_handle (uint32_t handle);
|
|
provider_p provider_get_first (void);
|
|
provider_p provider_get_next (provider_p provider);
|
|
uint32_t provider_get_change_state (void);
|
|
|
|
int32_t server_prepare_attr_list(provider_p const, uint8_t const *, uint8_t const *,
|
|
uint8_t *, uint8_t const *);
|
|
|
|
#endif /* ndef _PROVIDER_H_ */
|