diff --git a/profiles/network/connection.c b/profiles/network/connection.c
index 671478c..3a913cf 100644
--- a/profiles/network/connection.c
+++ b/profiles/network/connection.c
const char *path;
DBusConnection *conn;
+ DBG("cond %u", cond);
+
if (cond & G_IO_NVAL)
return FALSE;
unsigned char pkt[BNEP_MTU];
int fd;
+ DBG("");
+
/* Send request */
req = (void *) pkt;
req->type = BNEP_CONTROL;
const bdaddr_t *src;
const bdaddr_t *dst;
+ DBG("id %u", id);
+
peer = find_peer(peers, device);
if (!peer)
return -ENOENT;
struct network_peer *peer;
struct network_conn *nc;
+ DBG("id %u", id);
+
peer = find_peer(peers, device);
if (!peer) {
peer = create_peer(device);
nc->state = DISCONNECTED;
nc->peer = peer;
+ DBG("id %u registered", id);
+
peer->connections = g_slist_append(peer->connections, nc);
return 0;