~ubuntu-branches/ubuntu/oneiric/bluez/oneiric

« back to all changes in this revision

Viewing changes to src/sdpd.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2011-06-06 18:11:44 UTC
  • mfrom: (1.1.33 upstream) (6.3.13 sid)
  • Revision ID: james.westby@ubuntu.com-20110606181144-28qwmmobedosb2ct
Tags: 4.94-0ubuntu1
* Resynchronize on Debian, remaining diff:
* debian/bluez.bluetooth.default:
  - Drop.  Doesn't do anything now.
* debian/control:
  - use arch: any rather than a list of architectures
* debian/bluez.bluetooth.init:
  - Drop most calls in this script as now all it serves as is to 
    workaround a problem with dbus not being ready early enough. Once dbus is 
    started by an upstart service, this should be able to be converted 
    to an upstart service too.
* debian/rules:
  - Don't build hid2hci anymore.  It's part of udev now.
  - Don't install bluez_agent.udev, doesn't work in Ubuntu.
  - Don't use simple-patchsys
* debian/source_bluez.py, debian/bluez.install:
  - apport hook made by Baptiste Mille-Mathias.      
* debian/source/format: 
  - use source format 3.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#define SDPDBG(fmt...)
35
35
#endif
36
36
 
37
 
#define EIR_DATA_LENGTH  240
38
 
 
39
 
#define EIR_FLAGS                   0x01  /* flags */
40
 
#define EIR_UUID16_SOME             0x02  /* 16-bit UUID, more available */
41
 
#define EIR_UUID16_ALL              0x03  /* 16-bit UUID, all listed */
42
 
#define EIR_UUID32_SOME             0x04  /* 32-bit UUID, more available */
43
 
#define EIR_UUID32_ALL              0x05  /* 32-bit UUID, all listed */
44
 
#define EIR_UUID128_SOME            0x06  /* 128-bit UUID, more available */
45
 
#define EIR_UUID128_ALL             0x07  /* 128-bit UUID, all listed */
46
 
#define EIR_NAME_SHORT              0x08  /* shortened local name */
47
 
#define EIR_NAME_COMPLETE           0x09  /* complete local name */
48
 
#define EIR_TX_POWER                0x0A  /* transmit power level */
49
 
#define EIR_DEVICE_ID               0x10  /* device ID */
50
 
 
51
37
typedef struct request {
52
38
        bdaddr_t device;
53
39
        bdaddr_t bdaddr;
83
69
int sdp_check_access(uint32_t handle, bdaddr_t *device);
84
70
uint32_t sdp_next_handle(void);
85
71
 
86
 
uint32_t sdp_get_time();
 
72
uint32_t sdp_get_time(void);
87
73
 
88
74
#define SDP_SERVER_COMPAT (1 << 0)
89
75
#define SDP_SERVER_MASTER (1 << 1)