diff options
Diffstat (limited to 'comms/openobex/files/patch-lib-btobex.c')
-rw-r--r-- | comms/openobex/files/patch-lib-btobex.c | 110 |
1 files changed, 0 insertions, 110 deletions
diff --git a/comms/openobex/files/patch-lib-btobex.c b/comms/openobex/files/patch-lib-btobex.c deleted file mode 100644 index 48c54bd6e52e..000000000000 --- a/comms/openobex/files/patch-lib-btobex.c +++ /dev/null @@ -1,110 +0,0 @@ ---- lib/btobex.c.orig Tue Jan 3 20:36:15 2006 -+++ lib/btobex.c Sat Nov 25 22:00:13 2006 -@@ -46,8 +46,12 @@ - #include <netinet/in.h> - #include <sys/socket.h> - -+#ifdef HAVE_BLUETOOTH_NETGRAPH -+#include <bluetooth.h> -+#else /*HAVE_BLUETOOTH_NETGRAPH*/ - #include <bluetooth/bluetooth.h> - #include <bluetooth/rfcomm.h> -+#endif /*HAVE_BLUETOOTH_NETGRAPH*/ - - #endif /* _WIN32 */ - -@@ -63,6 +67,15 @@ - void btobex_prepare_connect(obex_t *self, bdaddr_t *src, bdaddr_t *dst, uint8_t channel) - { - #ifndef _WIN32 -+#ifdef HAVE_BLUETOOTH_NETGRAPH -+ self->trans.self.rfcomm.rfcomm_family = AF_BLUETOOTH; -+ bacpy(&self->trans.self.rfcomm.rfcomm_bdaddr, src); -+ self->trans.self.rfcomm.rfcomm_channel = 0; -+ -+ self->trans.peer.rfcomm.rfcomm_family = AF_BLUETOOTH; -+ bacpy(&self->trans.peer.rfcomm.rfcomm_bdaddr, dst); -+ self->trans.peer.rfcomm.rfcomm_channel = channel; -+#else /*HAVE_BLUETOOTH_NETGRAPH*/ - self->trans.self.rfcomm.rc_family = AF_BLUETOOTH; - bacpy(&self->trans.self.rfcomm.rc_bdaddr, src); - self->trans.self.rfcomm.rc_channel = 0; -@@ -70,6 +83,7 @@ - self->trans.peer.rfcomm.rc_family = AF_BLUETOOTH; - bacpy(&self->trans.peer.rfcomm.rc_bdaddr, dst); - self->trans.peer.rfcomm.rc_channel = channel; -+#endif /*HAVE_BLUETOOTH_NETGRAPH*/ - #endif /* _WIN32 */ - } - -@@ -83,9 +97,15 @@ - { - #ifndef _WIN32 - /* Bind local service */ -+#ifdef HAVE_BLUETOOTH_NETGRAPH -+ self->trans.self.rfcomm.rfcomm_family = AF_BLUETOOTH; -+ bacpy(&self->trans.self.rfcomm.rfcomm_bdaddr, src); -+ self->trans.self.rfcomm.rfcomm_channel = channel; -+#else /*HAVE_BLUETOOTH_NETGRAPH*/ - self->trans.self.rfcomm.rc_family = AF_BLUETOOTH; - bacpy(&self->trans.self.rfcomm.rc_bdaddr, src); - self->trans.self.rfcomm.rc_channel = channel; -+#endif /*HAVE_BLUETOOTH_NETGRAPH*/ - #endif /* _WIN32 */ - } - -@@ -106,9 +126,15 @@ - return -1; - } - -+#ifdef HAVE_BLUETOOTH_NETGRAPH -+ if (bind(self->serverfd, (struct sockaddr*) &self->trans.self.rfcomm, -+ sizeof(struct sockaddr_rfcomm))) -+ { -+#else /*HAVE_BLUETOOTH_NETGRAPH*/ - if (bind(self->serverfd, (struct sockaddr*) &self->trans.self.rfcomm, - sizeof(struct sockaddr_rc))) - { -+#endif /*HAVE_BLUETOOTH_NETGRAPH*/ - DEBUG(0, "Error doing bind\n"); - goto out_freesock; - } -@@ -140,7 +166,11 @@ - int btobex_accept(obex_t *self) - { - #ifndef _WIN32 -+#ifdef HAVE_BLUETOOTH_NETGRAPH -+ socklen_t addrlen = sizeof(struct sockaddr_rfcomm); -+#else /*HAVE_BLUETOOTH_NETGRAPH*/ - socklen_t addrlen = sizeof(struct sockaddr_rc); -+#endif /*HAVE_BLUETOOTH_NETGRAPH*/ - //int mtu; - //int len = sizeof(int); - -@@ -178,16 +208,26 @@ - return -1; - } - -+#ifdef HAVE_BLUETOOTH_NETGRAPH -+ ret = bind(self->fd, (struct sockaddr*) &self->trans.self.rfcomm, -+ sizeof(struct sockaddr_rfcomm)); -+#else /*HAVE_BLUETOOTH_NETGRAPH*/ - ret = bind(self->fd, (struct sockaddr*) &self->trans.self.rfcomm, - sizeof(struct sockaddr_rc)); -+#endif /*HAVE_BLUETOOTH_NETGRAPH*/ - - if (ret < 0) { - DEBUG(4, "ret=%d\n", ret); - goto out_freesock; - } - -+#ifdef HAVE_BLUETOOTH_NETGRAPH -+ ret = connect(self->fd, (struct sockaddr*) &self->trans.peer.rfcomm, -+ sizeof(struct sockaddr_rfcomm)); -+#else /*HAVE_BLUETOOTH_NETGRAPH*/ - ret = connect(self->fd, (struct sockaddr*) &self->trans.peer.rfcomm, - sizeof(struct sockaddr_rc)); -+#endif /*HAVE_BLUETOOTH_NETGRAPH*/ - if (ret < 0) { - DEBUG(4, "ret=%d\n", ret); - goto out_freesock; |