1 /* $NetBSD: opush.c,v 1.2 2007/11/09 20:08:41 plunky Exp $ */
2 /* $DragonFly: src/usr.sbin/sdpd/opush.c,v 1.1 2008/01/06 21:51:30 hasso Exp $ */
7 * Copyright (c) 2004 Maksim Yevmenkin <m_evmenkin@yahoo.com>
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * $Id: opush.c,v 1.2 2007/11/30 07:39:37 griffin Exp $
32 * $FreeBSD: src/usr.sbin/bluetooth/sdpd/opush.c,v 1.1 2004/01/20 20:48:26 emax Exp $
35 #include <sys/queue.h>
36 #include <bluetooth.h>
43 opush_profile_create_service_class_id_list(
44 uint8_t *buf
, uint8_t const * const eob
,
45 uint8_t const *data
, uint32_t datalen
)
47 static uint16_t service_classes
[] = {
48 SDP_SERVICE_CLASS_OBEX_OBJECT_PUSH
51 return (common_profile_create_service_class_id_list(
53 (uint8_t const *) service_classes
,
54 sizeof(service_classes
)));
58 opush_profile_create_bluetooth_profile_descriptor_list(
59 uint8_t *buf
, uint8_t const * const eob
,
60 uint8_t const *data
, uint32_t datalen
)
62 static uint16_t profile_descriptor_list
[] = {
63 SDP_SERVICE_CLASS_OBEX_OBJECT_PUSH
,
67 return (common_profile_create_bluetooth_profile_descriptor_list(
69 (uint8_t const *) profile_descriptor_list
,
70 sizeof(profile_descriptor_list
)));
74 opush_profile_create_service_name(
75 uint8_t *buf
, uint8_t const * const eob
,
76 uint8_t const *data
, uint32_t datalen
)
78 static char service_name
[] = "OBEX Object Push";
80 return (common_profile_create_string8(
82 (uint8_t const *) service_name
, strlen(service_name
)));
86 opush_profile_create_protocol_descriptor_list(
87 uint8_t *buf
, uint8_t const * const eob
,
88 uint8_t const *data
, uint32_t datalen
)
90 provider_t
const *provider
= (provider_t
const *) data
;
91 sdp_opush_profile_p opush
= (sdp_opush_profile_p
) provider
->data
;
93 return (obex_profile_create_protocol_descriptor_list(
95 (uint8_t const *) &opush
->server_channel
, 1));
99 opush_profile_create_supported_formats_list(
100 uint8_t *buf
, uint8_t const * const eob
,
101 uint8_t const *data
, uint32_t datalen
)
103 provider_t
const *provider
= (provider_t
const *) data
;
104 sdp_opush_profile_p opush
= (sdp_opush_profile_p
) provider
->data
;
106 return (obex_profile_create_supported_formats_list(
108 (uint8_t const *) opush
->supported_formats
,
109 opush
->supported_formats_size
));
112 static attr_t opush_profile_attrs
[] = {
113 { SDP_ATTR_SERVICE_RECORD_HANDLE
,
114 common_profile_create_service_record_handle
},
115 { SDP_ATTR_SERVICE_CLASS_ID_LIST
,
116 opush_profile_create_service_class_id_list
},
117 { SDP_ATTR_BLUETOOTH_PROFILE_DESCRIPTOR_LIST
,
118 opush_profile_create_bluetooth_profile_descriptor_list
},
119 { SDP_ATTR_LANGUAGE_BASE_ATTRIBUTE_ID_LIST
,
120 common_profile_create_language_base_attribute_id_list
},
121 { SDP_ATTR_PRIMARY_LANGUAGE_BASE_ID
+ SDP_ATTR_SERVICE_NAME_OFFSET
,
122 opush_profile_create_service_name
},
123 { SDP_ATTR_PROTOCOL_DESCRIPTOR_LIST
,
124 opush_profile_create_protocol_descriptor_list
},
125 { SDP_ATTR_SUPPORTED_FORMATS_LIST
,
126 opush_profile_create_supported_formats_list
},
127 { 0, NULL
} /* end entry */
130 static uint16_t opush_profile_uuids
[] = {
131 SDP_SERVICE_CLASS_OBEX_OBJECT_PUSH
,
132 SDP_UUID_PROTOCOL_L2CAP
,
133 SDP_UUID_PROTOCOL_RFCOMM
,
134 SDP_UUID_PROTOCOL_OBEX
,
137 profile_t opush_profile_descriptor
= {
139 sizeof(opush_profile_uuids
),
140 sizeof(sdp_opush_profile_t
),
141 obex_profile_data_valid
,
142 (attr_t
const * const) &opush_profile_attrs