~ubuntu-branches/ubuntu/wily/bluez/wily

« back to all changes in this revision

Viewing changes to network/server.h

ImportĀ upstreamĀ versionĀ 4.81

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 *
3
3
 *  BlueZ - Bluetooth protocol stack for Linux
4
4
 *
5
 
 *  Copyright (C) 2004-2009  Marcel Holtmann <marcel@holtmann.org>
 
5
 *  Copyright (C) 2004-2010  Marcel Holtmann <marcel@holtmann.org>
6
6
 *
7
7
 *
8
8
 *  This program is free software; you can redistribute it and/or modify
21
21
 *
22
22
 */
23
23
 
24
 
int server_init(DBusConnection *conn, const char *iface_prefix,
25
 
                gboolean secure);
26
 
void server_exit();
27
 
int server_register(const char *path, bdaddr_t *src, uint16_t id);
28
 
int server_unregister(const char *path, uint16_t id);
29
 
int server_register_from_file(const char *path, const bdaddr_t *src,
30
 
                uint16_t id, const char *filename);
31
 
 
32
 
int server_store(const char *path);
 
24
int server_init(DBusConnection *conn, gboolean secure);
 
25
void server_exit(void);
 
26
int server_register(struct btd_adapter *adapter);
 
27
int server_unregister(struct btd_adapter *adapter);
33
28
 
34
29
int server_find_data(const char *path, const char *pattern);