4 * Copyright (c) 2004 Maksim Yevmenkin <m_evmenkin@yahoo.com>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * $Id: opush.c,v 1.6 2004/01/13 19:31:54 max Exp $
32 #include <sys/queue.h>
33 #include <bluetooth.h>
40 opush_profile_create_service_class_id_list(
41 uint8_t *buf
, uint8_t const * const eob
,
42 uint8_t const *data
, uint32_t datalen
)
44 static uint16_t service_classes
[] = {
45 SDP_SERVICE_CLASS_OBEX_OBJECT_PUSH
48 return (common_profile_create_service_class_id_list(
50 (uint8_t const *) service_classes
,
51 sizeof(service_classes
)));
55 opush_profile_create_bluetooth_profile_descriptor_list(
56 uint8_t *buf
, uint8_t const * const eob
,
57 uint8_t const *data
, uint32_t datalen
)
59 static uint16_t profile_descriptor_list
[] = {
60 SDP_SERVICE_CLASS_OBEX_OBJECT_PUSH
,
64 return (common_profile_create_bluetooth_profile_descriptor_list(
66 (uint8_t const *) profile_descriptor_list
,
67 sizeof(profile_descriptor_list
)));
71 opush_profile_create_service_name(
72 uint8_t *buf
, uint8_t const * const eob
,
73 uint8_t const *data
, uint32_t datalen
)
75 static char service_name
[] = "OBEX Object Push";
77 return (common_profile_create_string8(
79 (uint8_t const *) service_name
, strlen(service_name
)));
83 opush_profile_create_protocol_descriptor_list(
84 uint8_t *buf
, uint8_t const * const eob
,
85 uint8_t const *data
, uint32_t datalen
)
87 provider_p provider
= (provider_p
) data
;
88 sdp_opush_profile_p opush
= (sdp_opush_profile_p
) provider
->data
;
90 return (obex_profile_create_protocol_descriptor_list(
92 (uint8_t const *) &opush
->server_channel
, 1));
96 opush_profile_create_supported_formats_list(
97 uint8_t *buf
, uint8_t const * const eob
,
98 uint8_t const *data
, uint32_t datalen
)
100 provider_p provider
= (provider_p
) data
;
101 sdp_opush_profile_p opush
= (sdp_opush_profile_p
) provider
->data
;
103 return (obex_profile_create_supported_formats_list(
105 (uint8_t const *) opush
->supported_formats
,
106 opush
->supported_formats_size
));
109 static attr_t opush_profile_attrs
[] = {
110 { SDP_ATTR_SERVICE_RECORD_HANDLE
,
111 common_profile_create_service_record_handle
},
112 { SDP_ATTR_SERVICE_CLASS_ID_LIST
,
113 opush_profile_create_service_class_id_list
},
114 { SDP_ATTR_BLUETOOTH_PROFILE_DESCRIPTOR_LIST
,
115 opush_profile_create_bluetooth_profile_descriptor_list
},
116 { SDP_ATTR_LANGUAGE_BASE_ATTRIBUTE_ID_LIST
,
117 common_profile_create_language_base_attribute_id_list
},
118 { SDP_ATTR_PRIMARY_LANGUAGE_BASE_ID
+ SDP_ATTR_SERVICE_NAME_OFFSET
,
119 opush_profile_create_service_name
},
120 { SDP_ATTR_PROTOCOL_DESCRIPTOR_LIST
,
121 opush_profile_create_protocol_descriptor_list
},
122 { SDP_ATTR_SUPPORTED_FORMATS_LIST
,
123 opush_profile_create_supported_formats_list
},
124 { 0, NULL
} /* end entry */
127 profile_t opush_profile_descriptor
= {
128 SDP_SERVICE_CLASS_OBEX_OBJECT_PUSH
,
129 sizeof(sdp_opush_profile_t
),
130 obex_profile_data_valid
,
131 (attr_t
const * const) &opush_profile_attrs