Advertisement
Guest User

Untitled

a guest
Nov 10th, 2014
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.83 KB | None | 0 0
  1. $ lsmod | grep "bluetooth"
  2. bluetooth 446190 6 bnep,btusb,rfcomm
  3. 6lowpan_iphc 18702 1 bluetooth
  4.  
  5. $ lsusb
  6. Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
  7. Bus 001 Device 003: ID 1bcf:2c54 Sunplus Innovation Technology Inc.
  8. Bus 001 Device 005: ID 248a:8566
  9. Bus 001 Device 004: ID 0489:e078 Foxconn / Hon Hai
  10. Bus 001 Device 002: ID 1a40:0101 Terminus Technology Inc. 4-Port HUB
  11. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  12.  
  13. $ dmesg | grep '0489'
  14. [ 2.998819] usb 1-2.1: New USB device found, idVendor=0489, idProduct=e078
  15.  
  16. $ hciconfig
  17. hci0: Type: BR/EDR Bus: USB
  18. BD Address: 00:71:CC:08:9F:7A ACL MTU: 1022:8 SCO MTU: 183:5
  19. UP RUNNING PSCAN ISCAN
  20. RX bytes:1993 acl:0 sco:0 events:113 errors:0
  21. TX bytes:2885 acl:0 sco:0 commands:110 errors:0
  22.  
  23. $ rfkill list
  24. 0: acer-wireless: Wireless LAN
  25. Soft blocked: no
  26. Hard blocked: no
  27. 1: acer-bluetooth: Bluetooth
  28. Soft blocked: no
  29. Hard blocked: no
  30. 3: phy0: Wireless LAN
  31. Soft blocked: no
  32. Hard blocked: no
  33. 4: hci0: Bluetooth
  34. Soft blocked: no
  35. Hard blocked: no
  36.  
  37. $ cat "/var/lib/bluetooth/00:71:CC:08:9F:7A/did"
  38. 00:71:CC:08:9F:7A FFFF 0000 0000 0000
  39.  
  40. $ cat /etc/bluetooth/main.conf
  41. [General]
  42.  
  43. # List of plugins that should not be loaded on bluetoothd startup
  44. #DisablePlugins = network,input
  45.  
  46. # Default adaper name
  47. # %h - substituted for hostname
  48. # %d - substituted for adapter id
  49. Name = cuoniclaptop
  50.  
  51. # Default device class. Only the major and minor device class bits are
  52. # considered.
  53. Class = 0x000100
  54.  
  55. # How long to stay in discoverable mode before going back to non-discoverable
  56. # The value is in seconds. Default is 180, i.e. 3 minutes.
  57. # 0 = disable timer, i.e. stay discoverable forever
  58. DiscoverableTimeout = 0
  59.  
  60. # How long to stay in pairable mode before going back to non-discoverable
  61. # The value is in seconds. Default is 0.
  62. # 0 = disable timer, i.e. stay pairable forever
  63. PairableTimeout = 0
  64.  
  65. # Use some other page timeout than the controller default one
  66. # which is 16384 (10 seconds).
  67. PageTimeout = 8192
  68.  
  69. # Automatic connection for bonded devices driven by platform/user events.
  70. # If a platform plugin uses this mechanism, automatic connections will be
  71. # enabled during the interval defined below. Initially, this feature
  72. # intends to be used to establish connections to ATT channels.
  73. AutoConnectTimeout = 60
  74.  
  75. # What value should be assumed for the adapter Powered property when
  76. # SetProperty(Powered, ...) hasn't been called yet. Defaults to true
  77. InitiallyPowered = true
  78.  
  79. # Remember the previously stored Powered state when initializing adapters
  80. RememberPowered = true
  81.  
  82. # Use vendor id source (assigner), vendor, product and version information for
  83. # DID profile support. The values are separated by ":" and assigner, VID, PID
  84. # and version.
  85. # Possible vendor id source values: bluetooth, usb (defaults to usb)
  86. #DeviceID = usb:0489:e078
  87.  
  88. # Do reverse service discovery for previously unknown devices that connect to
  89. # us. This option is really only needed for qualification since the BITE tester
  90. # doesn't like us doing reverse SDP for some test cases (though there could in
  91. # theory be other useful purposes for this too). Defaults to true.
  92. ReverseServiceDiscovery = true
  93.  
  94. # Enable name resolving after inquiry. Set it to 'false' if you don't need
  95. # remote devices name and want shorter discovery cycle. Defaults to 'true'.
  96. NameResolving = true
  97.  
  98. # Enable runtime persistency of debug link keys. Default is false which
  99. # makes debug link keys valid only for the duration of the connection
  100. # that they were created for.
  101. DebugKeys = ture
  102.  
  103. # Enable the GATT functionality. Default is false
  104. EnableGatt = true
  105.  
  106.  
  107. $ sudo bluetoothd -n -d
  108. bluetoothd[9384]: Bluetooth daemon 4.101
  109. bluetoothd[9384]: src/main.c:parse_config() parsing main.conf
  110. bluetoothd[9384]: src/main.c:parse_config() discovto=0
  111. bluetoothd[9384]: src/main.c:parse_config() pairto=0
  112. bluetoothd[9384]: src/main.c:parse_config() pageto=8192
  113. bluetoothd[9384]: src/main.c:parse_config() auto_to=60
  114. bluetoothd[9384]: src/main.c:parse_config() name=cuoniclaptop
  115. bluetoothd[9384]: src/main.c:parse_config() class=0x000100
  116. bluetoothd[9384]: src/main.c:parse_config() Key file does not have key 'DeviceID'
  117. bluetoothd[9384]: Starting SDP server
  118. bluetoothd[9384]: src/plugin.c:plugin_init() Loading builtin plugins
  119. bluetoothd[9384]: src/plugin.c:add_plugin() Loading audio plugin
  120. bluetoothd[9384]: src/plugin.c:add_plugin() Loading sap plugin
  121. bluetoothd[9384]: src/plugin.c:add_plugin() Loading input plugin
  122. bluetoothd[9384]: src/plugin.c:add_plugin() Loading serial plugin
  123. bluetoothd[9384]: src/plugin.c:add_plugin() Loading network plugin
  124. bluetoothd[9384]: src/plugin.c:add_plugin() Loading service plugin
  125. bluetoothd[9384]: src/plugin.c:add_plugin() Loading health plugin
  126. bluetoothd[9384]: src/plugin.c:add_plugin() Loading thermometer plugin
  127. bluetoothd[9384]: src/plugin.c:add_plugin() Loading alert plugin
  128. bluetoothd[9384]: src/plugin.c:add_plugin() Loading time plugin
  129. bluetoothd[9384]: src/plugin.c:add_plugin() Loading gatt_example plugin
  130. bluetoothd[9384]: src/plugin.c:add_plugin() Loading proximity plugin
  131. bluetoothd[9384]: src/plugin.c:add_plugin() Loading deviceinfo plugin
  132. bluetoothd[9384]: src/plugin.c:add_plugin() Loading hciops plugin
  133. bluetoothd[9384]: src/plugin.c:add_plugin() Loading mgmtops plugin
  134. bluetoothd[9384]: src/plugin.c:add_plugin() Loading formfactor plugin
  135. bluetoothd[9384]: src/plugin.c:add_plugin() Loading storage plugin
  136. bluetoothd[9384]: src/plugin.c:add_plugin() Loading adaptername plugin
  137. bluetoothd[9384]: src/plugin.c:add_plugin() Loading wiimote plugin
  138. bluetoothd[9384]: src/plugin.c:add_plugin() Loading dbusoob plugin
  139. bluetoothd[9384]: src/plugin.c:plugin_init() Loading plugins /usr/lib/x86_64-linux-gnu/bluetooth/plugins
  140. bluetoothd[9384]: plugins/service.c:register_interface() path /org/bluez/9384/any
  141. bluetoothd[9384]: plugins/service.c:register_interface() Registered interface org.bluez.Service on path /org/bluez/9384/any
  142. bluetoothd[9384]: plugins/dbusoob.c:dbusoob_init() Setup dbusoob plugin
  143. bluetoothd[9384]: Not enough free handles to register service
  144. bluetoothd[9384]: health/hdp.c:hdp_manager_start() Starting Health manager
  145. bluetoothd[9384]: network/manager.c:read_config() /etc/bluetooth/network.conf: Key file does not have key 'DisableSecurity'
  146. bluetoothd[9384]: network/manager.c:read_config() Config options: Security=true
  147. bluetoothd[9384]: input/manager.c:input_manager_init() input.conf: Key file does not have key 'IdleTimeout'
  148. bluetoothd[9384]: audio/manager.c:audio_manager_init() audio.conf: Key file does not have key 'AutoConnect'
  149. bluetoothd[9384]: plugins/hciops.c:hciops_init()
  150. bluetoothd[9384]: Bluetooth Management interface initialized
  151. bluetoothd[9384]: src/main.c:main() Entering main loop
  152. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  153. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  154. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  155. bluetoothd[9384]: plugins/mgmtops.c:read_version_complete() version 1 revision 6
  156. bluetoothd[9384]: src/rfkill.c:rfkill_event() RFKILL event idx 0 type 1 op 0 soft 0 hard 0
  157. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  158. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 13 bytes from management socket
  159. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  160. bluetoothd[9384]: plugins/mgmtops.c:add_controller() Added controller 0
  161. bluetoothd[9384]: src/rfkill.c:rfkill_event() RFKILL event idx 1 type 2 op 0 soft 0 hard 0
  162. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  163. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 289 bytes from management socket
  164. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  165. bluetoothd[9384]: plugins/mgmtops.c:read_info_complete() hci0 addr 00:71:CC:08:9F:7A version 7 manufacturer 69 class 0x6c0100
  166. bluetoothd[9384]: plugins/mgmtops.c:read_info_complete() hci0 settings
  167. bluetoothd[9384]: plugins/mgmtops.c:read_info_complete() hci0 name cuoniclaptop
  168. bluetoothd[9384]: plugins/mgmtops.c:read_info_complete() hci0 short name
  169. bluetoothd[9384]: plugins/mgmtops.c:mgmt_remove_uuid() index 0
  170. bluetoothd[9384]: src/adapter.c:btd_adapter_ref() 0x7f7a0a06ba00: ref=1
  171. bluetoothd[9384]: plugins/mgmtops.c:mgmt_read_bdaddr() index 0 addr 00:71:CC:08:9F:7A
  172. bluetoothd[9384]: src/sdpd-database.c:sdp_init_services_list()
  173. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  174. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  175. bluetoothd[9384]: src/attrib-server.c:btd_adapter_gatt_server_start() Start GATT server in hci0
  176. bluetoothd[9384]: src/adapter.c:btd_adapter_ref() 0x7f7a0a06ba00: ref=2
  177. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0001
  178. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0004
  179. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0006
  180. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0007
  181. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0008
  182. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Adding record with handle 0x10000
  183. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  184. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000007-0000-1000-8000-00805f9
  185. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000100-0000-1000-8000-00805f9
  186. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001002-0000-1000-8000-00805f9
  187. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001800-0000-1000-8000-00805f9
  188. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0010
  189. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Adding record with handle 0x10001
  190. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  191. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000007-0000-1000-8000-00805f9
  192. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000100-0000-1000-8000-00805f9
  193. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001002-0000-1000-8000-00805f9
  194. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001801-0000-1000-8000-00805f9
  195. bluetoothd[9384]: plugins/service.c:register_interface() path /org/bluez/9384/hci0
  196. bluetoothd[9384]: plugins/service.c:register_interface() Registered interface org.bluez.Service on path /org/bluez/9384/hci0
  197. bluetoothd[9384]: attrib/gatt-service.c:gatt_service_add() New service: handle 0x0009, UUID 1803, 3 attributes
  198. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0009
  199. bluetoothd[9384]: attrib/gatt-service.c:gatt_service_add() New characteristic: handle 0x000a
  200. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x000a
  201. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x000b
  202. bluetoothd[9384]: proximity/linkloss.c:link_loss_register() Link Loss service added
  203. bluetoothd[9384]: proximity/reporter.c:register_tx_power() start_handle=0x000c
  204. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x000c
  205. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x000d
  206. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x000e
  207. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x000f
  208. bluetoothd[9384]: attrib/gatt-service.c:gatt_service_add() New service: handle 0x0011, UUID 1802, 3 attributes
  209. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0011
  210. bluetoothd[9384]: attrib/gatt-service.c:gatt_service_add() New characteristic: handle 0x0012
  211. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0012
  212. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0013
  213. bluetoothd[9384]: proximity/immalert.c:imm_alert_register() Immediate Alert service added
  214. bluetoothd[9384]: proximity/reporter.c:reporter_init() Proximity Reporter for adapter 0x7f7a0a06ba00
  215. bluetoothd[9384]: src/adapter.c:btd_adapter_ref() 0x7f7a0a06ba00: ref=3
  216. bluetoothd[9384]: network/manager.c:network_server_probe() path /org/bluez/9384/hci0
  217. bluetoothd[9384]: src/adapter.c:btd_adapter_ref() 0x7f7a0a06ba00: ref=4
  218. bluetoothd[9384]: network/server.c:server_register() Registered interface org.bluez.NetworkServer on path /org/bluez/9384/hci0
  219. bluetoothd[9384]: serial/manager.c:proxy_probe() path /org/bluez/9384/hci0
  220. bluetoothd[9384]: src/adapter.c:btd_adapter_ref() 0x7f7a0a06ba00: ref=5
  221. bluetoothd[9384]: serial/proxy.c:proxy_register() Registered interface org.bluez.SerialProxyManager on path /org/bluez/9384/hci0
  222. bluetoothd[9384]: src/adapter.c:btd_adapter_ref() 0x7f7a0a06ba00: ref=6
  223. bluetoothd[9384]: sap/manager.c:sap_server_probe() path /org/bluez/9384/hci0
  224. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Adding record with handle 0x10002
  225. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  226. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000003-0000-1000-8000-00805f9
  227. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000100-0000-1000-8000-00805f9
  228. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001002-0000-1000-8000-00805f9
  229. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 0000112d-0000-1000-8000-00805f9
  230. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001204-0000-1000-8000-00805f9
  231. bluetoothd[9384]: sap/server.c:sap_server_register() Listen socket 0x13
  232. bluetoothd[9384]: audio/manager.c:media_server_probe() path /org/bluez/9384/hci0
  233. bluetoothd[9384]: src/adapter.c:btd_adapter_ref() 0x7f7a0a06ba00: ref=7
  234. bluetoothd[9384]: audio/manager.c:audio_adapter_ref() 0x7f7a0a06f180: ref=1
  235. bluetoothd[9384]: audio/manager.c:headset_server_probe() path /org/bluez/9384/hci0
  236. bluetoothd[9384]: audio/manager.c:audio_adapter_ref() 0x7f7a0a06f180: ref=2
  237. bluetoothd[9384]: audio/manager.c:headset_server_init() audio.conf: Key file does not have key 'Master'
  238. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Adding record with handle 0x10003
  239. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  240. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000003-0000-1000-8000-00805f9
  241. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000100-0000-1000-8000-00805f9
  242. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001002-0000-1000-8000-00805f9
  243. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001108-0000-1000-8000-00805f9
  244. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001112-0000-1000-8000-00805f9
  245. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001203-0000-1000-8000-00805f9
  246. bluetoothd[9384]: audio/headset.c:headset_config_init() audio.conf: Key file does not have key 'SCORouting'
  247. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Adding record with handle 0x10004
  248. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  249. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000003-0000-1000-8000-00805f9
  250. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000100-0000-1000-8000-00805f9
  251. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001002-0000-1000-8000-00805f9
  252. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 0000111e-0000-1000-8000-00805f9
  253. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 0000111f-0000-1000-8000-00805f9
  254. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001203-0000-1000-8000-00805f9
  255. bluetoothd[9384]: audio/manager.c:audio_adapter_ref() 0x7f7a0a06f180: ref=3
  256. bluetoothd[9384]: audio/manager.c:gateway_server_init() audio.conf: Key file does not have key 'Master'
  257. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Adding record with handle 0x10005
  258. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  259. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000003-0000-1000-8000-00805f9
  260. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000100-0000-1000-8000-00805f9
  261. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001002-0000-1000-8000-00805f9
  262. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 0000111e-0000-1000-8000-00805f9
  263. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001203-0000-1000-8000-00805f9
  264. bluetoothd[9384]: audio/manager.c:a2dp_server_probe() path /org/bluez/9384/hci0
  265. bluetoothd[9384]: audio/manager.c:audio_adapter_ref() 0x7f7a0a06f180: ref=4
  266. bluetoothd[9384]: audio/a2dp.c:a2dp_register() audio.conf: Key file does not have key 'Enable'
  267. bluetoothd[9384]: audio/a2dp.c:a2dp_register() audio.conf: Key file does not have key 'Disable'
  268. bluetoothd[9384]: audio/avdtp.c:avdtp_init() audio.conf: Key file does not have key 'Master'
  269. bluetoothd[9384]: audio/manager.c:avrcp_server_probe() path /org/bluez/9384/hci0
  270. bluetoothd[9384]: audio/manager.c:audio_adapter_ref() 0x7f7a0a06f180: ref=5
  271. bluetoothd[9384]: audio/avrcp.c:avrcp_register() audio.conf: Key file does not have key 'Master'
  272. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Adding record with handle 0x10006
  273. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  274. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000017-0000-1000-8000-00805f9
  275. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000100-0000-1000-8000-00805f9
  276. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001002-0000-1000-8000-00805f9
  277. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 0000110c-0000-1000-8000-00805f9
  278. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 0000110e-0000-1000-8000-00805f9
  279. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Adding record with handle 0x10007
  280. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  281. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000017-0000-1000-8000-00805f9
  282. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000100-0000-1000-8000-00805f9
  283. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001002-0000-1000-8000-00805f9
  284. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 0000110e-0000-1000-8000-00805f9
  285. bluetoothd[9384]: plugins/adaptername.c:adaptername_probe() Setting name 'cuoniclaptop' for device 'hci0'
  286. bluetoothd[9384]: plugins/mgmtops.c:mgmt_set_name() index 0, name cuoniclaptop
  287. bluetoothd[9384]: plugins/formfactor.c:formfactor_probe() Setting 0x00010c for major/minor device class
  288. bluetoothd[9384]: plugins/mgmtops.c:mgmt_set_dev_class() index 0 major 1 minor 12
  289. bluetoothd[9384]: src/adapter.c:btd_adapter_ref() 0x7f7a0a06ba00: ref=8
  290. bluetoothd[9384]: attrib/gatt-service.c:gatt_service_add() New service: handle 0x0014, UUID a002, 4 attributes
  291. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0014
  292. bluetoothd[9384]: attrib/gatt-service.c:gatt_service_add() New characteristic: handle 0x0015
  293. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0015
  294. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0016
  295. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0017
  296. bluetoothd[9384]: plugins/gatt-example.c:register_manuf1_service() start_handle=0x0018
  297. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0018
  298. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0019
  299. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x001a
  300. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x001b
  301. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x001c
  302. bluetoothd[9384]: plugins/gatt-example.c:register_manuf2_service() start_handle=0x001d
  303. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x001d
  304. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x001e
  305. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x001f
  306. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0020
  307. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0021
  308. bluetoothd[9384]: plugins/gatt-example.c:register_termometer_service() start_handle=0x0022 manuf1=0x0018-0x001c, manuf2=0x001d-0x0021
  309. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0022
  310. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0023
  311. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0024
  312. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0025
  313. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0026
  314. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0027
  315. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0028
  316. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x0029
  317. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x002a
  318. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x002b
  319. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x002c
  320. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Adding record with handle 0x10008
  321. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  322. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000007-0000-1000-8000-00805f9
  323. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000100-0000-1000-8000-00805f9
  324. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001002-0000-1000-8000-00805f9
  325. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 0000a004-0000-1000-8000-00805f9
  326. bluetoothd[9384]: plugins/gatt-example.c:register_vendor_service() start_handle=0x002d
  327. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x002d
  328. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x002e
  329. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0x002f
  330. bluetoothd[9384]: plugins/gatt-example.c:register_weight_service() start_handle=0xfffa, vendor=0x002d-0x002f
  331. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0xfffa
  332. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0xfffb
  333. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0xfffc
  334. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0xfffd
  335. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0xfffe
  336. bluetoothd[9384]: src/attrib-server.c:attrib_db_add_new() handle=0xffff
  337. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Adding record with handle 0x10009
  338. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  339. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000007-0000-1000-8000-00805f9
  340. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000100-0000-1000-8000-00805f9
  341. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001002-0000-1000-8000-00805f9
  342. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 4f0ac096-35d4-4911-9631-dea8dc7
  343. bluetoothd[9384]: plugins/mgmtops.c:mgmt_unblock_device() index 0 addr 00:00:00:00:00:00
  344. bluetoothd[9384]: plugins/mgmtops.c:mgmt_load_link_keys() index 0 keys 0 debug_keys 0
  345. bluetoothd[9384]: plugins/mgmtops.c:mgmtops_load_ltks() index 0 keys 0
  346. bluetoothd[9384]: plugins/mgmtops.c:mgmt_get_conn_list() index 0
  347. bluetoothd[9384]: src/manager.c:btd_manager_register_adapter() Adapter /org/bluez/9384/hci0 registered
  348. bluetoothd[9384]: src/adapter.c:btd_adapter_ref() 0x7f7a0a06ba00: ref=9
  349. bluetoothd[9384]: plugins/mgmtops.c:update_settings() new settings 2db
  350. bluetoothd[9384]: src/adapter.c:adapter_mode_changed() old 0x00 new 0x03
  351. bluetoothd[9384]: src/adapter.c:set_mode_complete()
  352. bluetoothd[9384]: plugins/mgmtops.c:read_info_complete() mgmtops setting name (null)
  353. bluetoothd[9384]: src/attrib-server.c:attrib_db_update() handle=0x0006
  354. bluetoothd[9384]: plugins/mgmtops.c:mgmt_set_dev_class() index 0 major 1 minor 0
  355. bluetoothd[9384]: audio/manager.c:state_changed() /org/bluez/9384/hci0 powered on
  356. bluetoothd[9384]: audio/telephony.c:telephony_init() telephony_init() successfully
  357. bluetoothd[9384]: audio/headset.c:telephony_ready_ind() Telephony plugin initialized
  358. bluetoothd[9384]: audio/headset.c:print_ag_features() HFP AG features: "Three-way calling" "EC and/or NR function" "Ability to reject a call" "Enhanced call status" "Enhanced call control" "Extended Error Result Codes"
  359. bluetoothd[9384]: plugins/mgmtops.c:mgmt_disable_cod_cache() index 0
  360. bluetoothd[9384]: Adapter /org/bluez/9384/hci0 has been enabled
  361. bluetoothd[9384]: src/adapter.c:btd_adapter_unref() 0x7f7a0a06ba00: ref=8
  362. bluetoothd[9384]: src/rfkill.c:rfkill_event() RFKILL event idx 3 type 1 op 0 soft 0 hard 0
  363. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  364. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  365. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  366. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete() remove_uuid complete
  367. bluetoothd[9384]: src/rfkill.c:rfkill_event() RFKILL event idx 4 type 2 op 0 soft 0 hard 0
  368. bluetoothd[9384]: Endpoint registered: sender=:1.75 path=/MediaEndpoint/HFPAG
  369. bluetoothd[9384]: Endpoint registered: sender=:1.75 path=/MediaEndpoint/HFPHS
  370. bluetoothd[9384]: audio/avdtp.c:avdtp_register_sep() SEP 0x7f7a0a06a600 registered: type:0 codec:0 seid:1
  371. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Adding record with handle 0x1000a
  372. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  373. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000019-0000-1000-8000-00805f9
  374. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000100-0000-1000-8000-00805f9
  375. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001002-0000-1000-8000-00805f9
  376. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 0000110a-0000-1000-8000-00805f9
  377. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 0000110d-0000-1000-8000-00805f9
  378. bluetoothd[9384]: Endpoint registered: sender=:1.75 path=/MediaEndpoint/A2DPSource
  379. bluetoothd[9384]: audio/avdtp.c:avdtp_register_sep() SEP 0x7f7a0a0776b0 registered: type:1 codec:0 seid:2
  380. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Adding record with handle 0x1000b
  381. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  382. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000019-0000-1000-8000-00805f9
  383. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00000100-0000-1000-8000-00805f9
  384. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 00001002-0000-1000-8000-00805f9
  385. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 0000110b-0000-1000-8000-00805f9
  386. bluetoothd[9384]: src/sdpd-service.c:add_record_to_server() Record pattern UUID 0000110d-0000-1000-8000-00805f9
  387. bluetoothd[9384]: Endpoint registered: sender=:1.75 path=/MediaEndpoint/A2DPSink
  388. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  389. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  390. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  391. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid_complete() index 0
  392. bluetoothd[9384]: plugins/mgmtops.c:handle_pending_uuids() index 0
  393. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  394. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  395. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 269 bytes from management socket
  396. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  397. bluetoothd[9384]: plugins/mgmtops.c:set_local_name_complete() hci0 name cuoniclaptop
  398. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  399. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 16 bytes from management socket
  400. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  401. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete() unblock_device complete
  402. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  403. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 9 bytes from management socket
  404. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  405. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete() load_link_keys complete
  406. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  407. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 9 bytes from management socket
  408. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  409. bluetoothd[9384]: Unknown command complete for opcode 19
  410. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  411. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 11 bytes from management socket
  412. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  413. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  414. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  415. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  416. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid_complete() index 0
  417. bluetoothd[9384]: plugins/mgmtops.c:handle_pending_uuids() index 0
  418. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  419. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  420. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  421. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  422. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid_complete() index 0
  423. bluetoothd[9384]: plugins/mgmtops.c:handle_pending_uuids() index 0
  424. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  425. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  426. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  427. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  428. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid_complete() index 0
  429. bluetoothd[9384]: plugins/mgmtops.c:handle_pending_uuids() index 0
  430. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  431. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  432. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  433. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  434. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid_complete() index 0
  435. bluetoothd[9384]: plugins/mgmtops.c:handle_pending_uuids() index 0
  436. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  437. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  438. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  439. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  440. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid_complete() index 0
  441. bluetoothd[9384]: plugins/mgmtops.c:handle_pending_uuids() index 0
  442. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  443. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  444. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  445. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  446. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid_complete() index 0
  447. bluetoothd[9384]: plugins/mgmtops.c:handle_pending_uuids() index 0
  448. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  449. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  450. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  451. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  452. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid_complete() index 0
  453. bluetoothd[9384]: plugins/mgmtops.c:handle_pending_uuids() index 0
  454. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  455. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  456. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  457. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  458. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid_complete() index 0
  459. bluetoothd[9384]: plugins/mgmtops.c:handle_pending_uuids() index 0
  460. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  461. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  462. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  463. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  464. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid_complete() index 0
  465. bluetoothd[9384]: plugins/mgmtops.c:handle_pending_uuids() index 0
  466. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  467. bluetoothd[9384]: src/adapter.c:register_agent() Agent registered for hci0 at :1.118:/org/blueman/agent/adapter/hci0
  468. bluetoothd[9384]: plugins/mgmtops.c:mgmt_set_io_capability() hci0 io_capability 0x01
  469. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  470. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  471. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  472. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid_complete() index 0
  473. bluetoothd[9384]: plugins/mgmtops.c:handle_pending_uuids() index 0
  474. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  475. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  476. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 9 bytes from management socket
  477. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  478. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete() set_io_capability complete
  479. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  480. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  481. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  482. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid_complete() index 0
  483. bluetoothd[9384]: plugins/mgmtops.c:handle_pending_uuids() index 0
  484. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  485. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  486. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  487. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  488. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid_complete() index 0
  489. bluetoothd[9384]: plugins/mgmtops.c:handle_pending_uuids() index 0
  490. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid() index 0
  491. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  492. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  493. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  494. bluetoothd[9384]: plugins/mgmtops.c:mgmt_add_uuid_complete() index 0
  495. bluetoothd[9384]: plugins/mgmtops.c:handle_pending_uuids() index 0
  496. bluetoothd[9384]: plugins/mgmtops.c:mgmt_set_dev_class() index 0 major 1 minor 0
  497. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() cond 1
  498. bluetoothd[9384]: plugins/mgmtops.c:mgmt_event() Received 12 bytes from management socket
  499. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete()
  500. bluetoothd[9384]: plugins/mgmtops.c:mgmt_cmd_complete() set_dev_class complete
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement