equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __CBTOBEX_SDP_PROTOCOL__ |
|
20 #define __CBTOBEX_SDP_PROTOCOL__ |
|
21 |
|
22 #include <e32def.h> |
|
23 #include <bt_sock.h> |
|
24 |
|
25 const TUid KUidBTObjectExchangeApp = {0x10005b8e}; |
|
26 |
|
27 // See entry for OBEX in table 4.3 "Protocols" |
|
28 // at the url http://www.bluetooth.org/assigned-numbers/sdp.htm |
|
29 const TUint KBtProtocolIdOBEX = 0x0008; |
|
30 |
|
31 const TUint KRfcommChannel = 1; |
|
32 |
|
33 // See entry for OBEXObjectPush in table 4.4 "Service Classes" |
|
34 // at the url http://www.bluetooth.org/assigned-numbers/sdp.htm |
|
35 const TUint KServiceClass = 0x1105; |
|
36 |
|
37 _LIT(KServiceName,"OBEX"); |
|
38 _LIT(KServiceDescription,"Object Push"); |
|
39 _LIT(KServerTransportName,"RFCOMM"); |
|
40 |
|
41 #endif //__CBTOBEX_SDP_PROTOCOL__ |