diff options
author | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2007-03-23 21:04:08 +0000 |
---|---|---|
committer | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2007-03-23 21:04:08 +0000 |
commit | ef3649fd9e62bd989ff67a125a05c962d5640fd3 (patch) | |
tree | f8ec45b3ad8422908f9c1990fb65eec6287d4b98 /network/common.h | |
parent | 696c7534eca66f0dd64de6aba2ab26e8a4b66eea (diff) |
network: using service class identifier instead of the uuid 128 string for server registration
Diffstat (limited to 'network/common.h')
-rw-r--r-- | network/common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/network/common.h b/network/common.h index 7dfc920a..36bb66b2 100644 --- a/network/common.h +++ b/network/common.h @@ -25,7 +25,8 @@ int bnep_init(void); int bnep_cleanup(void); uint16_t bnep_service_id(const char *svc); -const char *bnep_uuid(uint16_t uuid); +const char *bnep_uuid(uint16_t id); +const char *bnep_name(uint16_t id); int bnep_kill_connection(const char *addr); int bnep_kill_all_connections(void); |