1124758Semax/*
2124758Semax * profile.h
3177059Semax */
4177059Semax
5177059Semax/*-
6124758Semax * Copyright (c) 2004 Maksim Yevmenkin <m_evmenkin@yahoo.com>
7124758Semax * All rights reserved.
8124758Semax *
9124758Semax * Redistribution and use in source and binary forms, with or without
10124758Semax * modification, are permitted provided that the following conditions
11124758Semax * are met:
12124758Semax * 1. Redistributions of source code must retain the above copyright
13124758Semax *    notice, this list of conditions and the following disclaimer.
14124758Semax * 2. Redistributions in binary form must reproduce the above copyright
15124758Semax *    notice, this list of conditions and the following disclaimer in the
16124758Semax *    documentation and/or other materials provided with the distribution.
17124758Semax *
18124758Semax * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19124758Semax * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20124758Semax * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21124758Semax * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22124758Semax * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23124758Semax * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24124758Semax * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25124758Semax * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26124758Semax * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27124758Semax * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28124758Semax * SUCH DAMAGE.
29124758Semax *
30124758Semax * $Id: profile.h,v 1.6 2004/01/13 19:31:54 max Exp $
31124758Semax * $FreeBSD$
32124758Semax */
33124758Semax
34124758Semax#ifndef _PROFILE_H_
35124758Semax#define _PROFILE_H_
36124758Semax
37124758Semax/*
38124758Semax * Attribute descriptor
39124758Semax */
40124758Semax
41124758Semaxtypedef int32_t	(profile_attr_create_t)(
42124758Semax			uint8_t *buf, uint8_t const * const eob,
43124758Semax			uint8_t const *data, uint32_t datalen);
44124758Semaxtypedef profile_attr_create_t *	profile_attr_create_p;
45124758Semax
46124758Semaxtypedef int32_t	(profile_data_valid_t)(
47124758Semax			uint8_t const *data, uint32_t datalen);
48124758Semaxtypedef profile_data_valid_t *	profile_data_valid_p;
49124758Semax
50124758Semaxstruct attr
51124758Semax{
52124758Semax	uint16_t		attr;	/* attribute id */
53124758Semax	profile_attr_create_p	create;	/* create attr value */
54124758Semax};
55124758Semax
56124758Semaxtypedef struct attr	attr_t;
57124758Semaxtypedef struct attr *	attr_p;
58124758Semax
59124758Semax/*
60124758Semax * Profile descriptor
61124758Semax */
62124758Semax
63124758Semax
64124758Semaxstruct profile
65124758Semax{
66124758Semax	uint16_t		uuid;	/* profile uuid */
67124758Semax	uint16_t		dsize;	/* profile data size */
68124758Semax	profile_data_valid_p	valid;	/* profile data validator */
69124758Semax	attr_t const * const	attrs;	/* supported attributes */
70124758Semax};
71124758Semax
72124758Semaxtypedef struct profile	profile_t;
73124758Semaxtypedef struct profile *profile_p;
74124758Semax
75124758Semaxprofile_p		profile_get_descriptor(uint16_t uuid);
76124758Semaxprofile_attr_create_p	profile_get_attr(const profile_p profile, uint16_t attr);
77124758Semax
78124758Semaxprofile_attr_create_t	common_profile_create_service_record_handle;
79124758Semaxprofile_attr_create_t	common_profile_create_service_class_id_list;
80124758Semaxprofile_attr_create_t	common_profile_create_bluetooth_profile_descriptor_list;
81124758Semaxprofile_attr_create_t	common_profile_create_language_base_attribute_id_list;
82124758Semaxprofile_attr_create_t	common_profile_create_service_provider_name;
83124758Semaxprofile_attr_create_t	common_profile_create_string8;
84177358Semaxprofile_attr_create_t	common_profile_create_service_availability;
85124758Semaxprofile_attr_create_t	rfcomm_profile_create_protocol_descriptor_list;
86124758Semaxprofile_attr_create_t	obex_profile_create_protocol_descriptor_list;
87124758Semaxprofile_attr_create_t	obex_profile_create_supported_formats_list;
88177059Semaxprofile_attr_create_t	bnep_profile_create_protocol_descriptor_list;
89177059Semaxprofile_attr_create_t	bnep_profile_create_security_description;
90124758Semax
91177059Semaxprofile_data_valid_t	common_profile_always_valid;
92124758Semaxprofile_data_valid_t	common_profile_server_channel_valid;
93124758Semaxprofile_data_valid_t	obex_profile_data_valid;
94124758Semax
95124758Semax#endif /* ndef _PROFILE_H_ */
96124758Semax
97