Displaying 1 result from an estimated 1 matches for "have_bluetooth".
2009 Nov 23
0
[PATCH] Bluetooth support.
...==============================
RCS file: /cvs/openssh/canohost.c,v
retrieving revision 1.75
diff -u -p -r1.75 canohost.c
--- canohost.c 21 Jun 2009 08:13:58 -0000 1.75
+++ canohost.c 23 Nov 2009 09:50:32 -0000
@@ -20,6 +20,11 @@
#include <netinet/in.h>
#include <arpa/inet.h>
+#ifdef HAVE_BLUETOOTH
+#include <bluetooth/bluetooth.h>
+#include <bluetooth/rfcomm.h>
+#endif
+
#include <ctype.h>
#include <errno.h>
#include <netdb.h>
@@ -60,6 +65,16 @@ get_remote_hostname(int sock, int use_dn
cleanup_exit(255);
}
+#ifdef HAVE_BLUETOOTH
+ if (from.ss_family ==...