react-native-ble-mesh 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (465) hide show
  1. package/CHANGELOG.md +151 -0
  2. package/LICENSE +21 -0
  3. package/README.md +706 -0
  4. package/docs/API.md +462 -0
  5. package/docs/ARCHITECTURE.md +384 -0
  6. package/docs/CONTRIBUTING.md +244 -0
  7. package/docs/NODE_QUICKSTART.md +259 -0
  8. package/docs/PROTOCOL.md +195 -0
  9. package/docs/REACT_NATIVE.md +315 -0
  10. package/docs/SECURITY.md +152 -0
  11. package/docs/api/constants_audio.js.html +184 -0
  12. package/docs/api/constants_ble.js.html +165 -0
  13. package/docs/api/constants_crypto.js.html +107 -0
  14. package/docs/api/constants_errors.js.html +256 -0
  15. package/docs/api/constants_events.js.html +148 -0
  16. package/docs/api/constants_index.js.html +76 -0
  17. package/docs/api/constants_protocol.js.html +205 -0
  18. package/docs/api/crypto_aead.js.html +243 -0
  19. package/docs/api/crypto_chacha20.js.html +235 -0
  20. package/docs/api/crypto_hkdf.js.html +241 -0
  21. package/docs/api/crypto_hmac.js.html +197 -0
  22. package/docs/api/crypto_index.js.html +126 -0
  23. package/docs/api/crypto_keys_KeyManager.js.html +325 -0
  24. package/docs/api/crypto_keys_KeyPair.js.html +270 -0
  25. package/docs/api/crypto_keys_SecureStorage.js.html +273 -0
  26. package/docs/api/crypto_keys_index.js.html +86 -0
  27. package/docs/api/crypto_noise_handshake.js.html +464 -0
  28. package/docs/api/crypto_noise_index.js.html +81 -0
  29. package/docs/api/crypto_noise_session.js.html +307 -0
  30. package/docs/api/crypto_noise_state.js.html +322 -0
  31. package/docs/api/crypto_poly1305.js.html +167 -0
  32. package/docs/api/crypto_sha256.js.html +294 -0
  33. package/docs/api/crypto_x25519.js.html +208 -0
  34. package/docs/api/errors_AudioError.js.html +218 -0
  35. package/docs/api/errors_ConnectionError.js.html +163 -0
  36. package/docs/api/errors_CryptoError.js.html +157 -0
  37. package/docs/api/errors_HandshakeError.js.html +176 -0
  38. package/docs/api/errors_MeshError.js.html +154 -0
  39. package/docs/api/errors_MessageError.js.html +183 -0
  40. package/docs/api/errors_ValidationError.js.html +204 -0
  41. package/docs/api/errors_index.js.html +78 -0
  42. package/docs/api/fonts/OpenSans-Bold-webfont.eot +0 -0
  43. package/docs/api/fonts/OpenSans-Bold-webfont.svg +1830 -0
  44. package/docs/api/fonts/OpenSans-Bold-webfont.woff +0 -0
  45. package/docs/api/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  46. package/docs/api/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
  47. package/docs/api/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  48. package/docs/api/fonts/OpenSans-Italic-webfont.eot +0 -0
  49. package/docs/api/fonts/OpenSans-Italic-webfont.svg +1830 -0
  50. package/docs/api/fonts/OpenSans-Italic-webfont.woff +0 -0
  51. package/docs/api/fonts/OpenSans-Light-webfont.eot +0 -0
  52. package/docs/api/fonts/OpenSans-Light-webfont.svg +1831 -0
  53. package/docs/api/fonts/OpenSans-Light-webfont.woff +0 -0
  54. package/docs/api/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  55. package/docs/api/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
  56. package/docs/api/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  57. package/docs/api/fonts/OpenSans-Regular-webfont.eot +0 -0
  58. package/docs/api/fonts/OpenSans-Regular-webfont.svg +1831 -0
  59. package/docs/api/fonts/OpenSans-Regular-webfont.woff +0 -0
  60. package/docs/api/hooks_AppStateManager.js.html +233 -0
  61. package/docs/api/hooks_index.js.html +87 -0
  62. package/docs/api/hooks_useMesh.js.html +213 -0
  63. package/docs/api/hooks_useMessages.js.html +263 -0
  64. package/docs/api/hooks_usePeers.js.html +165 -0
  65. package/docs/api/index.html +868 -0
  66. package/docs/api/index.js.html +236 -0
  67. package/docs/api/mesh_dedup_BloomFilter.js.html +261 -0
  68. package/docs/api/mesh_dedup_DedupManager.js.html +266 -0
  69. package/docs/api/mesh_dedup_MessageCache.js.html +273 -0
  70. package/docs/api/mesh_dedup_index.js.html +70 -0
  71. package/docs/api/mesh_fragment_Assembler.js.html +335 -0
  72. package/docs/api/mesh_fragment_Fragmenter.js.html +230 -0
  73. package/docs/api/mesh_fragment_index.js.html +75 -0
  74. package/docs/api/mesh_index.js.html +72 -0
  75. package/docs/api/mesh_peer_Peer.js.html +296 -0
  76. package/docs/api/mesh_peer_PeerDiscovery.js.html +334 -0
  77. package/docs/api/mesh_peer_PeerManager.js.html +320 -0
  78. package/docs/api/mesh_peer_index.js.html +70 -0
  79. package/docs/api/mesh_router_MessageRouter.js.html +411 -0
  80. package/docs/api/mesh_router_PathFinder.js.html +386 -0
  81. package/docs/api/mesh_router_RouteTable.js.html +346 -0
  82. package/docs/api/mesh_router_index.js.html +70 -0
  83. package/docs/api/module-audio_buffer.html +168 -0
  84. package/docs/api/module-audio_buffer_FrameBuffer-FrameBuffer.html +2971 -0
  85. package/docs/api/module-audio_buffer_FrameBuffer.html +178 -0
  86. package/docs/api/module-audio_buffer_JitterBuffer-JitterBuffer.html +2761 -0
  87. package/docs/api/module-audio_buffer_JitterBuffer.html +178 -0
  88. package/docs/api/module-audio_codec.html +168 -0
  89. package/docs/api/module-audio_codec_LC3Codec-LC3Codec.html +2876 -0
  90. package/docs/api/module-audio_codec_LC3Codec.html +178 -0
  91. package/docs/api/module-audio_codec_LC3Decoder-LC3Decoder.html +1788 -0
  92. package/docs/api/module-audio_codec_LC3Decoder.html +178 -0
  93. package/docs/api/module-audio_codec_LC3Encoder-LC3Encoder.html +1512 -0
  94. package/docs/api/module-audio_codec_LC3Encoder.html +178 -0
  95. package/docs/api/module-audio_session.html +168 -0
  96. package/docs/api/module-audio_session_AudioSession-AudioSession.html +3922 -0
  97. package/docs/api/module-audio_session_AudioSession.html +178 -0
  98. package/docs/api/module-audio_session_VoiceMessage-VoiceMessage.html +3690 -0
  99. package/docs/api/module-audio_session_VoiceMessage-VoiceMessageRecorder.html +1780 -0
  100. package/docs/api/module-audio_session_VoiceMessage.html +332 -0
  101. package/docs/api/module-audio_transport.html +168 -0
  102. package/docs/api/module-audio_transport_AudioFragmenter-AudioAssembler.html +1545 -0
  103. package/docs/api/module-audio_transport_AudioFragmenter-AudioFragmenter.html +658 -0
  104. package/docs/api/module-audio_transport_AudioFragmenter.html +181 -0
  105. package/docs/api/module-audio_transport_AudioFramer.html +1414 -0
  106. package/docs/api/module-constants.html +168 -0
  107. package/docs/api/module-constants_audio.html +1782 -0
  108. package/docs/api/module-constants_ble.html +940 -0
  109. package/docs/api/module-constants_crypto.html +823 -0
  110. package/docs/api/module-constants_errors.html +316 -0
  111. package/docs/api/module-constants_events.html +244 -0
  112. package/docs/api/module-constants_protocol.html +1534 -0
  113. package/docs/api/module-crypto.html +169 -0
  114. package/docs/api/module-crypto_aead.html +1625 -0
  115. package/docs/api/module-crypto_chacha20.html +1440 -0
  116. package/docs/api/module-crypto_hkdf.html +1421 -0
  117. package/docs/api/module-crypto_hmac.html +828 -0
  118. package/docs/api/module-crypto_keys.html +169 -0
  119. package/docs/api/module-crypto_keys_KeyManager-KeyManager.html +2364 -0
  120. package/docs/api/module-crypto_keys_KeyManager.html +252 -0
  121. package/docs/api/module-crypto_keys_KeyPair.html +245 -0
  122. package/docs/api/module-crypto_keys_SecureStorage-MemorySecureStorage.html +923 -0
  123. package/docs/api/module-crypto_keys_SecureStorage-SecureStorage.html +942 -0
  124. package/docs/api/module-crypto_keys_SecureStorage.html +516 -0
  125. package/docs/api/module-crypto_noise.html +169 -0
  126. package/docs/api/module-crypto_noise_handshake-NoiseHandshake.html +2240 -0
  127. package/docs/api/module-crypto_noise_handshake.html +782 -0
  128. package/docs/api/module-crypto_noise_session-NoiseSession.html +1804 -0
  129. package/docs/api/module-crypto_noise_session.html +325 -0
  130. package/docs/api/module-crypto_noise_state-SymmetricState.html +1387 -0
  131. package/docs/api/module-crypto_noise_state.html +324 -0
  132. package/docs/api/module-crypto_poly1305.html +884 -0
  133. package/docs/api/module-crypto_sha256-HashContext.html +447 -0
  134. package/docs/api/module-crypto_sha256.html +942 -0
  135. package/docs/api/module-crypto_x25519.html +1503 -0
  136. package/docs/api/module-errors.html +168 -0
  137. package/docs/api/module-errors_AudioError-AudioError.html +4711 -0
  138. package/docs/api/module-errors_AudioError.html +178 -0
  139. package/docs/api/module-errors_ConnectionError-ConnectionError.html +3649 -0
  140. package/docs/api/module-errors_ConnectionError.html +178 -0
  141. package/docs/api/module-errors_CryptoError-CryptoError.html +3453 -0
  142. package/docs/api/module-errors_CryptoError.html +178 -0
  143. package/docs/api/module-errors_HandshakeError-HandshakeError.html +4261 -0
  144. package/docs/api/module-errors_HandshakeError.html +178 -0
  145. package/docs/api/module-errors_MeshError-MeshError.html +2155 -0
  146. package/docs/api/module-errors_MeshError.html +178 -0
  147. package/docs/api/module-errors_MessageError-MessageError.html +4545 -0
  148. package/docs/api/module-errors_MessageError.html +178 -0
  149. package/docs/api/module-errors_ValidationError-ValidationError.html +3432 -0
  150. package/docs/api/module-errors_ValidationError.html +178 -0
  151. package/docs/api/module-hooks.html +182 -0
  152. package/docs/api/module-hooks_AppStateManager-AppStateManager.html +1620 -0
  153. package/docs/api/module-hooks_AppStateManager.html +178 -0
  154. package/docs/api/module-hooks_useMesh.html +457 -0
  155. package/docs/api/module-hooks_useMessages.html +466 -0
  156. package/docs/api/module-hooks_usePeers.html +348 -0
  157. package/docs/api/module-mesh.html +168 -0
  158. package/docs/api/module-mesh_dedup.html +168 -0
  159. package/docs/api/module-mesh_dedup_BloomFilter-BloomFilter.html +2158 -0
  160. package/docs/api/module-mesh_dedup_BloomFilter.html +178 -0
  161. package/docs/api/module-mesh_dedup_DedupManager-DedupManager.html +2880 -0
  162. package/docs/api/module-mesh_dedup_DedupManager.html +178 -0
  163. package/docs/api/module-mesh_dedup_MessageCache-CacheNode.html +246 -0
  164. package/docs/api/module-mesh_dedup_MessageCache-MessageCache.html +2314 -0
  165. package/docs/api/module-mesh_dedup_MessageCache.html +181 -0
  166. package/docs/api/module-mesh_fragment.html +168 -0
  167. package/docs/api/module-mesh_fragment_Assembler-Assembler.html +2869 -0
  168. package/docs/api/module-mesh_fragment_Assembler-PendingFragmentSet.html +895 -0
  169. package/docs/api/module-mesh_fragment_Assembler.html +181 -0
  170. package/docs/api/module-mesh_fragment_Fragmenter.html +1084 -0
  171. package/docs/api/module-mesh_peer.html +168 -0
  172. package/docs/api/module-mesh_peer_Peer-Peer.html +4986 -0
  173. package/docs/api/module-mesh_peer_Peer.html +178 -0
  174. package/docs/api/module-mesh_peer_PeerDiscovery-PeerDiscovery.html +3423 -0
  175. package/docs/api/module-mesh_peer_PeerDiscovery.html +438 -0
  176. package/docs/api/module-mesh_peer_PeerManager-PeerManager.html +5258 -0
  177. package/docs/api/module-mesh_peer_PeerManager.html +178 -0
  178. package/docs/api/module-mesh_router.html +168 -0
  179. package/docs/api/module-mesh_router_MessageRouter-MessageRouter.html +3285 -0
  180. package/docs/api/module-mesh_router_MessageRouter.html +178 -0
  181. package/docs/api/module-mesh_router_PathFinder-PathFinder.html +3323 -0
  182. package/docs/api/module-mesh_router_PathFinder.html +421 -0
  183. package/docs/api/module-mesh_router_RouteTable-RouteTable.html +4115 -0
  184. package/docs/api/module-mesh_router_RouteTable.html +421 -0
  185. package/docs/api/module-protocol.html +169 -0
  186. package/docs/api/module-protocol_crc32.html +815 -0
  187. package/docs/api/module-protocol_deserializer.html +1393 -0
  188. package/docs/api/module-protocol_header-MessageHeader.html +2879 -0
  189. package/docs/api/module-protocol_header.html +892 -0
  190. package/docs/api/module-protocol_message-Message.html +4682 -0
  191. package/docs/api/module-protocol_message.html +178 -0
  192. package/docs/api/module-protocol_serializer.html +911 -0
  193. package/docs/api/module-protocol_validator.html +1396 -0
  194. package/docs/api/module-rn-ble-mesh.html +866 -0
  195. package/docs/api/module-service.html +168 -0
  196. package/docs/api/module-service_HandshakeManager-HandshakeManager.html +185 -0
  197. package/docs/api/module-service_HandshakeManager.html +175 -0
  198. package/docs/api/module-service_MeshService-MeshService.html +185 -0
  199. package/docs/api/module-service_MeshService.html +175 -0
  200. package/docs/api/module-service_SessionManager-SessionManager.html +174 -0
  201. package/docs/api/module-service_SessionManager.html +175 -0
  202. package/docs/api/module-service_audio.html +168 -0
  203. package/docs/api/module-service_audio_AudioManager-AudioManager.html +4653 -0
  204. package/docs/api/module-service_audio_AudioManager.html +254 -0
  205. package/docs/api/module-service_text.html +168 -0
  206. package/docs/api/module-service_text_TextManager-TextManager.html +6104 -0
  207. package/docs/api/module-service_text_TextManager.html +254 -0
  208. package/docs/api/module-service_text_broadcast.html +168 -0
  209. package/docs/api/module-service_text_broadcast_BroadcastManager-BroadcastManager.html +2434 -0
  210. package/docs/api/module-service_text_broadcast_BroadcastManager.html +254 -0
  211. package/docs/api/module-service_text_channel.html +168 -0
  212. package/docs/api/module-service_text_channel_Channel-Channel.html +4337 -0
  213. package/docs/api/module-service_text_channel_Channel.html +178 -0
  214. package/docs/api/module-service_text_channel_ChannelManager-ChannelManager.html +1927 -0
  215. package/docs/api/module-service_text_channel_ChannelManager.html +175 -0
  216. package/docs/api/module-service_text_message.html +168 -0
  217. package/docs/api/module-service_text_message_TextMessage-TextMessage.html +4162 -0
  218. package/docs/api/module-service_text_message_TextMessage.html +178 -0
  219. package/docs/api/module-service_text_message_TextSerializer.html +1725 -0
  220. package/docs/api/module-storage.html +168 -0
  221. package/docs/api/module-storage_AsyncStorageAdapter-AsyncStorageAdapter.html +4159 -0
  222. package/docs/api/module-storage_AsyncStorageAdapter.html +178 -0
  223. package/docs/api/module-storage_MemoryStorage-MemoryStorage.html +3154 -0
  224. package/docs/api/module-storage_MemoryStorage.html +178 -0
  225. package/docs/api/module-storage_MessageStore-MessageStore.html +5299 -0
  226. package/docs/api/module-storage_MessageStore.html +178 -0
  227. package/docs/api/module-storage_Storage-Storage.html +4169 -0
  228. package/docs/api/module-storage_Storage.html +178 -0
  229. package/docs/api/module-transport.html +168 -0
  230. package/docs/api/module-transport_BLEAdapter-BLEAdapter.html +4724 -0
  231. package/docs/api/module-transport_BLEAdapter.html +178 -0
  232. package/docs/api/module-transport_BLETransport-BLETransport.html +3263 -0
  233. package/docs/api/module-transport_BLETransport.html +178 -0
  234. package/docs/api/module-transport_MockTransport-MockTransport.html +3947 -0
  235. package/docs/api/module-transport_MockTransport.html +178 -0
  236. package/docs/api/module-transport_NodeBLEAdapter-NodeBLEAdapter.html +3216 -0
  237. package/docs/api/module-transport_NodeBLEAdapter.html +178 -0
  238. package/docs/api/module-transport_RNBLEAdapter-RNBLEAdapter.html +3216 -0
  239. package/docs/api/module-transport_RNBLEAdapter.html +178 -0
  240. package/docs/api/module-transport_Transport-Transport.html +4071 -0
  241. package/docs/api/module-transport_Transport.html +254 -0
  242. package/docs/api/module-transport_adapters.html +168 -0
  243. package/docs/api/module-transport_adapters_BLEAdapter-BLEAdapter.html +4724 -0
  244. package/docs/api/module-transport_adapters_BLEAdapter.html +178 -0
  245. package/docs/api/module-transport_adapters_NodeBLEAdapter-NodeBLEAdapter.html +3216 -0
  246. package/docs/api/module-transport_adapters_NodeBLEAdapter.html +178 -0
  247. package/docs/api/module-transport_adapters_RNBLEAdapter-RNBLEAdapter.html +3216 -0
  248. package/docs/api/module-transport_adapters_RNBLEAdapter.html +178 -0
  249. package/docs/api/module-utils.html +168 -0
  250. package/docs/api/module-utils_BoundedMap-BoundedMap.html +3301 -0
  251. package/docs/api/module-utils_BoundedMap.html +178 -0
  252. package/docs/api/module-utils_EventEmitter-EventEmitter.html +3358 -0
  253. package/docs/api/module-utils_EventEmitter.html +178 -0
  254. package/docs/api/module-utils_LRUCache-LRUCache.html +4134 -0
  255. package/docs/api/module-utils_LRUCache.html +178 -0
  256. package/docs/api/module-utils_RateLimiter-RateLimiter.html +2176 -0
  257. package/docs/api/module-utils_RateLimiter.html +500 -0
  258. package/docs/api/module-utils_TimeoutManager-TimeoutManager.html +1781 -0
  259. package/docs/api/module-utils_TimeoutManager.html +175 -0
  260. package/docs/api/module-utils_bytes.html +1789 -0
  261. package/docs/api/module-utils_debug.html +837 -0
  262. package/docs/api/module-utils_encoding.html +1184 -0
  263. package/docs/api/module-utils_retry.html +1457 -0
  264. package/docs/api/module-utils_time.html +1665 -0
  265. package/docs/api/module-utils_uuid.html +1269 -0
  266. package/docs/api/module-utils_validation.html +2176 -0
  267. package/docs/api/protocol_crc32.js.html +147 -0
  268. package/docs/api/protocol_deserializer.js.html +295 -0
  269. package/docs/api/protocol_header.js.html +276 -0
  270. package/docs/api/protocol_index.js.html +120 -0
  271. package/docs/api/protocol_message.js.html +287 -0
  272. package/docs/api/protocol_serializer.js.html +240 -0
  273. package/docs/api/protocol_validator.js.html +330 -0
  274. package/docs/api/scripts/linenumber.js +25 -0
  275. package/docs/api/scripts/prettify/Apache-License-2.0.txt +202 -0
  276. package/docs/api/scripts/prettify/lang-css.js +2 -0
  277. package/docs/api/scripts/prettify/prettify.js +28 -0
  278. package/docs/api/service_HandshakeManager.js.html +232 -0
  279. package/docs/api/service_MeshService.js.html +371 -0
  280. package/docs/api/service_SessionManager.js.html +153 -0
  281. package/docs/api/service_audio_AudioManager.js.html +541 -0
  282. package/docs/api/service_audio_buffer_FrameBuffer.js.html +223 -0
  283. package/docs/api/service_audio_buffer_JitterBuffer.js.html +244 -0
  284. package/docs/api/service_audio_buffer_index.js.html +68 -0
  285. package/docs/api/service_audio_codec_LC3Codec.js.html +345 -0
  286. package/docs/api/service_audio_codec_LC3Decoder.js.html +185 -0
  287. package/docs/api/service_audio_codec_LC3Encoder.js.html +194 -0
  288. package/docs/api/service_audio_codec_index.js.html +70 -0
  289. package/docs/api/service_audio_index.js.html +96 -0
  290. package/docs/api/service_audio_session_AudioSession.js.html +348 -0
  291. package/docs/api/service_audio_session_VoiceMessage.js.html +432 -0
  292. package/docs/api/service_audio_session_index.js.html +70 -0
  293. package/docs/api/service_audio_transport_AudioFragmenter.js.html +314 -0
  294. package/docs/api/service_audio_transport_AudioFramer.js.html +236 -0
  295. package/docs/api/service_audio_transport_index.js.html +69 -0
  296. package/docs/api/service_index.js.html +93 -0
  297. package/docs/api/service_text_TextManager.js.html +578 -0
  298. package/docs/api/service_text_broadcast_BroadcastManager.js.html +276 -0
  299. package/docs/api/service_text_broadcast_index.js.html +66 -0
  300. package/docs/api/service_text_channel_Channel.js.html +280 -0
  301. package/docs/api/service_text_channel_ChannelManager.js.html +225 -0
  302. package/docs/api/service_text_channel_index.js.html +68 -0
  303. package/docs/api/service_text_index.js.html +85 -0
  304. package/docs/api/service_text_message_TextMessage.js.html +350 -0
  305. package/docs/api/service_text_message_TextSerializer.js.html +218 -0
  306. package/docs/api/service_text_message_index.js.html +68 -0
  307. package/docs/api/storage_AsyncStorageAdapter.js.html +357 -0
  308. package/docs/api/storage_MemoryStorage.js.html +279 -0
  309. package/docs/api/storage_MessageStore.js.html +369 -0
  310. package/docs/api/storage_Storage.js.html +214 -0
  311. package/docs/api/storage_index.js.html +72 -0
  312. package/docs/api/styles/jsdoc-default.css +358 -0
  313. package/docs/api/styles/prettify-jsdoc.css +111 -0
  314. package/docs/api/styles/prettify-tomorrow.css +132 -0
  315. package/docs/api/transport_BLEAdapter.js.html +231 -0
  316. package/docs/api/transport_BLETransport.js.html +411 -0
  317. package/docs/api/transport_MockTransport.js.html +339 -0
  318. package/docs/api/transport_NodeBLEAdapter.js.html +479 -0
  319. package/docs/api/transport_RNBLEAdapter.js.html +382 -0
  320. package/docs/api/transport_Transport.js.html +242 -0
  321. package/docs/api/transport_adapters_BLEAdapter.js.html +231 -0
  322. package/docs/api/transport_adapters_NodeBLEAdapter.js.html +479 -0
  323. package/docs/api/transport_adapters_RNBLEAdapter.js.html +382 -0
  324. package/docs/api/transport_adapters_index.js.html +70 -0
  325. package/docs/api/transport_index.js.html +87 -0
  326. package/docs/api/utils_BoundedMap.js.html +205 -0
  327. package/docs/api/utils_EventEmitter.js.html +259 -0
  328. package/docs/api/utils_LRUCache.js.html +256 -0
  329. package/docs/api/utils_RateLimiter.js.html +256 -0
  330. package/docs/api/utils_TimeoutManager.js.html +218 -0
  331. package/docs/api/utils_base64%0A%0AThis%20implementation%20avoids%20string%20concatenation%20in%20loops%20which%20is%20O(n%C2%B2).%0AUses%20array%20building%20which%20is%20O(n)%20-%20critical%20for%20React%20Native%20performance.module_.html +717 -0
  332. package/docs/api/utils_base64.js.html +205 -0
  333. package/docs/api/utils_bytes.js.html +241 -0
  334. package/docs/api/utils_debug.js.html +205 -0
  335. package/docs/api/utils_encoding.js.html +302 -0
  336. package/docs/api/utils_index.js.html +160 -0
  337. package/docs/api/utils_retry.js.html +200 -0
  338. package/docs/api/utils_time.js.html +220 -0
  339. package/docs/api/utils_uuid.js.html +199 -0
  340. package/docs/api/utils_validation.js.html +259 -0
  341. package/examples/node-chat/chat.js +220 -0
  342. package/examples/node-quickstart/index.js +94 -0
  343. package/examples/testing/test-helper.js +182 -0
  344. package/package.json +111 -0
  345. package/src/constants/audio.js +130 -0
  346. package/src/constants/ble.js +111 -0
  347. package/src/constants/crypto.js +53 -0
  348. package/src/constants/errors.js +202 -0
  349. package/src/constants/events.js +94 -0
  350. package/src/constants/index.js +22 -0
  351. package/src/constants/protocol.js +151 -0
  352. package/src/crypto/aead.js +189 -0
  353. package/src/crypto/chacha20.js +181 -0
  354. package/src/crypto/hkdf.js +187 -0
  355. package/src/crypto/hmac.js +143 -0
  356. package/src/crypto/index.js +72 -0
  357. package/src/crypto/keys/KeyManager.js +271 -0
  358. package/src/crypto/keys/KeyPair.js +216 -0
  359. package/src/crypto/keys/SecureStorage.js +219 -0
  360. package/src/crypto/keys/index.js +32 -0
  361. package/src/crypto/noise/handshake.js +410 -0
  362. package/src/crypto/noise/index.js +27 -0
  363. package/src/crypto/noise/session.js +253 -0
  364. package/src/crypto/noise/state.js +268 -0
  365. package/src/crypto/poly1305.js +113 -0
  366. package/src/crypto/sha256.js +240 -0
  367. package/src/crypto/x25519.js +154 -0
  368. package/src/errors/AudioError.js +164 -0
  369. package/src/errors/ConnectionError.js +109 -0
  370. package/src/errors/CryptoError.js +103 -0
  371. package/src/errors/HandshakeError.js +122 -0
  372. package/src/errors/MeshError.js +100 -0
  373. package/src/errors/MessageError.js +129 -0
  374. package/src/errors/ValidationError.js +150 -0
  375. package/src/errors/index.js +24 -0
  376. package/src/hooks/AppStateManager.js +179 -0
  377. package/src/hooks/index.js +33 -0
  378. package/src/hooks/useMesh.js +159 -0
  379. package/src/hooks/useMessages.js +209 -0
  380. package/src/hooks/usePeers.js +111 -0
  381. package/src/index.d.ts +494 -0
  382. package/src/index.js +182 -0
  383. package/src/index.mjs +62 -0
  384. package/src/mesh/dedup/BloomFilter.js +207 -0
  385. package/src/mesh/dedup/DedupManager.js +212 -0
  386. package/src/mesh/dedup/MessageCache.js +219 -0
  387. package/src/mesh/dedup/index.js +16 -0
  388. package/src/mesh/fragment/Assembler.js +281 -0
  389. package/src/mesh/fragment/Fragmenter.js +176 -0
  390. package/src/mesh/fragment/index.js +21 -0
  391. package/src/mesh/index.js +18 -0
  392. package/src/mesh/peer/Peer.js +242 -0
  393. package/src/mesh/peer/PeerDiscovery.js +280 -0
  394. package/src/mesh/peer/PeerManager.js +266 -0
  395. package/src/mesh/peer/index.js +16 -0
  396. package/src/mesh/router/MessageRouter.js +357 -0
  397. package/src/mesh/router/PathFinder.js +332 -0
  398. package/src/mesh/router/RouteTable.js +292 -0
  399. package/src/mesh/router/index.js +16 -0
  400. package/src/protocol/crc32.js +93 -0
  401. package/src/protocol/deserializer.js +241 -0
  402. package/src/protocol/header.js +222 -0
  403. package/src/protocol/index.js +66 -0
  404. package/src/protocol/message.js +233 -0
  405. package/src/protocol/serializer.js +186 -0
  406. package/src/protocol/validator.js +276 -0
  407. package/src/service/HandshakeManager.js +178 -0
  408. package/src/service/MeshService.js +317 -0
  409. package/src/service/SessionManager.js +99 -0
  410. package/src/service/audio/AudioManager.js +487 -0
  411. package/src/service/audio/buffer/FrameBuffer.js +169 -0
  412. package/src/service/audio/buffer/JitterBuffer.js +190 -0
  413. package/src/service/audio/buffer/index.js +14 -0
  414. package/src/service/audio/codec/LC3Codec.js +291 -0
  415. package/src/service/audio/codec/LC3Decoder.js +131 -0
  416. package/src/service/audio/codec/LC3Encoder.js +140 -0
  417. package/src/service/audio/codec/index.js +16 -0
  418. package/src/service/audio/index.js +42 -0
  419. package/src/service/audio/session/AudioSession.js +294 -0
  420. package/src/service/audio/session/VoiceMessage.js +378 -0
  421. package/src/service/audio/session/index.js +16 -0
  422. package/src/service/audio/transport/AudioFragmenter.js +260 -0
  423. package/src/service/audio/transport/AudioFramer.js +182 -0
  424. package/src/service/audio/transport/index.js +15 -0
  425. package/src/service/index.js +39 -0
  426. package/src/service/text/TextManager.js +524 -0
  427. package/src/service/text/broadcast/BroadcastManager.js +222 -0
  428. package/src/service/text/broadcast/index.js +12 -0
  429. package/src/service/text/channel/Channel.js +226 -0
  430. package/src/service/text/channel/ChannelManager.js +171 -0
  431. package/src/service/text/channel/index.js +14 -0
  432. package/src/service/text/index.js +31 -0
  433. package/src/service/text/message/TextMessage.js +296 -0
  434. package/src/service/text/message/TextSerializer.js +164 -0
  435. package/src/service/text/message/index.js +14 -0
  436. package/src/storage/AsyncStorageAdapter.js +303 -0
  437. package/src/storage/MemoryStorage.js +225 -0
  438. package/src/storage/MessageStore.js +315 -0
  439. package/src/storage/Storage.js +160 -0
  440. package/src/storage/index.js +18 -0
  441. package/src/transport/BLEAdapter.js +177 -0
  442. package/src/transport/BLETransport.js +357 -0
  443. package/src/transport/MockTransport.js +285 -0
  444. package/src/transport/NodeBLEAdapter.js +425 -0
  445. package/src/transport/RNBLEAdapter.js +328 -0
  446. package/src/transport/Transport.js +188 -0
  447. package/src/transport/adapters/BLEAdapter.js +177 -0
  448. package/src/transport/adapters/NodeBLEAdapter.js +425 -0
  449. package/src/transport/adapters/RNBLEAdapter.js +328 -0
  450. package/src/transport/adapters/index.js +16 -0
  451. package/src/transport/index.js +33 -0
  452. package/src/utils/BoundedMap.js +151 -0
  453. package/src/utils/EventEmitter.js +205 -0
  454. package/src/utils/LRUCache.js +202 -0
  455. package/src/utils/RateLimiter.js +202 -0
  456. package/src/utils/TimeoutManager.js +164 -0
  457. package/src/utils/base64.js +151 -0
  458. package/src/utils/bytes.js +187 -0
  459. package/src/utils/debug.js +151 -0
  460. package/src/utils/encoding.js +248 -0
  461. package/src/utils/index.js +106 -0
  462. package/src/utils/retry.js +146 -0
  463. package/src/utils/time.js +166 -0
  464. package/src/utils/uuid.js +145 -0
  465. package/src/utils/validation.js +205 -0
@@ -0,0 +1,4986 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>JSDoc: Class: Peer</title>
6
+
7
+ <script src="scripts/prettify/prettify.js"> </script>
8
+ <script src="scripts/prettify/lang-css.js"> </script>
9
+ <!--[if lt IE 9]>
10
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
11
+ <![endif]-->
12
+ <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
13
+ <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
14
+ </head>
15
+
16
+ <body>
17
+
18
+ <div id="main">
19
+
20
+ <h1 class="page-title">Class: Peer</h1>
21
+
22
+
23
+
24
+
25
+
26
+
27
+ <section>
28
+
29
+ <header>
30
+
31
+ <h2><span class="attribs"><span class="type-signature"></span></span>
32
+ <span class="ancestors"><a href="module-mesh_peer_Peer.html">mesh/peer/Peer</a>~</span>Peer<span class="signature">()</span><span class="type-signature"></span></h2>
33
+
34
+
35
+ </header>
36
+
37
+ <article>
38
+ <div class="container-overview">
39
+
40
+
41
+
42
+
43
+
44
+
45
+ <h4 class="name" id="Peer"><span class="type-signature"></span>new Peer<span class="signature">()</span><span class="type-signature"></span></h4>
46
+
47
+
48
+
49
+
50
+
51
+
52
+ <div class="description">
53
+ <p>Represents a peer in the mesh network</p>
54
+ </div>
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+ <dl class="details">
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+ <dt class="tag-source">Source:</dt>
96
+ <dd class="tag-source"><ul class="dummy"><li>
97
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line11">line 11</a>
98
+ </li></ul></dd>
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+ </dl>
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+
127
+
128
+ </div>
129
+
130
+
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+ <h3 class="subsection-title">Members</h3>
144
+
145
+
146
+
147
+ <h4 class="name" id="connectionState"><span class="type-signature"></span>connectionState<span class="type-signature"> :string</span></h4>
148
+
149
+
150
+
151
+
152
+ <div class="description">
153
+ <p>Current connection state</p>
154
+ </div>
155
+
156
+
157
+
158
+ <h5>Type:</h5>
159
+ <ul>
160
+ <li>
161
+
162
+ <span class="param-type">string</span>
163
+
164
+
165
+ </li>
166
+ </ul>
167
+
168
+
169
+
170
+
171
+
172
+ <dl class="details">
173
+
174
+
175
+
176
+
177
+
178
+
179
+
180
+
181
+
182
+
183
+
184
+
185
+
186
+
187
+
188
+
189
+
190
+
191
+
192
+
193
+
194
+
195
+
196
+
197
+
198
+
199
+ <dt class="tag-source">Source:</dt>
200
+ <dd class="tag-source"><ul class="dummy"><li>
201
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line78">line 78</a>
202
+ </li></ul></dd>
203
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+ </dl>
211
+
212
+
213
+
214
+
215
+
216
+
217
+
218
+
219
+ <h4 class="name" id="discoveredAt"><span class="type-signature"></span>discoveredAt<span class="type-signature"> :number</span></h4>
220
+
221
+
222
+
223
+
224
+ <div class="description">
225
+ <p>Timestamp when peer was first discovered</p>
226
+ </div>
227
+
228
+
229
+
230
+ <h5>Type:</h5>
231
+ <ul>
232
+ <li>
233
+
234
+ <span class="param-type">number</span>
235
+
236
+
237
+ </li>
238
+ </ul>
239
+
240
+
241
+
242
+
243
+
244
+ <dl class="details">
245
+
246
+
247
+
248
+
249
+
250
+
251
+
252
+
253
+
254
+
255
+
256
+
257
+
258
+
259
+
260
+
261
+
262
+
263
+
264
+
265
+
266
+
267
+
268
+
269
+
270
+
271
+ <dt class="tag-source">Source:</dt>
272
+ <dd class="tag-source"><ul class="dummy"><li>
273
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line72">line 72</a>
274
+ </li></ul></dd>
275
+
276
+
277
+
278
+
279
+
280
+
281
+
282
+ </dl>
283
+
284
+
285
+
286
+
287
+
288
+
289
+
290
+
291
+ <h4 class="name" id="hasSecureSession"><span class="type-signature"></span>hasSecureSession<span class="type-signature"> :boolean</span></h4>
292
+
293
+
294
+
295
+
296
+ <div class="description">
297
+ <p>Whether a secure session has been established</p>
298
+ </div>
299
+
300
+
301
+
302
+ <h5>Type:</h5>
303
+ <ul>
304
+ <li>
305
+
306
+ <span class="param-type">boolean</span>
307
+
308
+
309
+ </li>
310
+ </ul>
311
+
312
+
313
+
314
+
315
+
316
+ <dl class="details">
317
+
318
+
319
+
320
+
321
+
322
+
323
+
324
+
325
+
326
+
327
+
328
+
329
+
330
+
331
+
332
+
333
+
334
+
335
+
336
+
337
+
338
+
339
+
340
+
341
+
342
+
343
+ <dt class="tag-source">Source:</dt>
344
+ <dd class="tag-source"><ul class="dummy"><li>
345
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line84">line 84</a>
346
+ </li></ul></dd>
347
+
348
+
349
+
350
+
351
+
352
+
353
+
354
+ </dl>
355
+
356
+
357
+
358
+
359
+
360
+
361
+
362
+
363
+ <h4 class="name" id="hopCount"><span class="type-signature"></span>hopCount<span class="type-signature"> :number</span></h4>
364
+
365
+
366
+
367
+
368
+ <div class="description">
369
+ <p>Distance in hops (0 = direct connection)</p>
370
+ </div>
371
+
372
+
373
+
374
+ <h5>Type:</h5>
375
+ <ul>
376
+ <li>
377
+
378
+ <span class="param-type">number</span>
379
+
380
+
381
+ </li>
382
+ </ul>
383
+
384
+
385
+
386
+
387
+
388
+ <dl class="details">
389
+
390
+
391
+
392
+
393
+
394
+
395
+
396
+
397
+
398
+
399
+
400
+
401
+
402
+
403
+
404
+
405
+
406
+
407
+
408
+
409
+
410
+
411
+
412
+
413
+
414
+
415
+ <dt class="tag-source">Source:</dt>
416
+ <dd class="tag-source"><ul class="dummy"><li>
417
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line60">line 60</a>
418
+ </li></ul></dd>
419
+
420
+
421
+
422
+
423
+
424
+
425
+
426
+ </dl>
427
+
428
+
429
+
430
+
431
+
432
+
433
+
434
+
435
+ <h4 class="name" id="id"><span class="type-signature"></span>id<span class="type-signature"> :string</span></h4>
436
+
437
+
438
+
439
+
440
+ <div class="description">
441
+ <p>Unique peer identifier</p>
442
+ </div>
443
+
444
+
445
+
446
+ <h5>Type:</h5>
447
+ <ul>
448
+ <li>
449
+
450
+ <span class="param-type">string</span>
451
+
452
+
453
+ </li>
454
+ </ul>
455
+
456
+
457
+
458
+
459
+
460
+ <dl class="details">
461
+
462
+
463
+
464
+
465
+
466
+
467
+
468
+
469
+
470
+
471
+
472
+
473
+
474
+
475
+
476
+
477
+
478
+
479
+
480
+
481
+
482
+
483
+
484
+
485
+
486
+
487
+ <dt class="tag-source">Source:</dt>
488
+ <dd class="tag-source"><ul class="dummy"><li>
489
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line36">line 36</a>
490
+ </li></ul></dd>
491
+
492
+
493
+
494
+
495
+
496
+
497
+
498
+ </dl>
499
+
500
+
501
+
502
+
503
+
504
+
505
+
506
+
507
+ <h4 class="name" id="lastSeen"><span class="type-signature"></span>lastSeen<span class="type-signature"> :number</span></h4>
508
+
509
+
510
+
511
+
512
+ <div class="description">
513
+ <p>Timestamp of last interaction</p>
514
+ </div>
515
+
516
+
517
+
518
+ <h5>Type:</h5>
519
+ <ul>
520
+ <li>
521
+
522
+ <span class="param-type">number</span>
523
+
524
+
525
+ </li>
526
+ </ul>
527
+
528
+
529
+
530
+
531
+
532
+ <dl class="details">
533
+
534
+
535
+
536
+
537
+
538
+
539
+
540
+
541
+
542
+
543
+
544
+
545
+
546
+
547
+
548
+
549
+
550
+
551
+
552
+
553
+
554
+
555
+
556
+
557
+
558
+
559
+ <dt class="tag-source">Source:</dt>
560
+ <dd class="tag-source"><ul class="dummy"><li>
561
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line66">line 66</a>
562
+ </li></ul></dd>
563
+
564
+
565
+
566
+
567
+
568
+
569
+
570
+ </dl>
571
+
572
+
573
+
574
+
575
+
576
+
577
+
578
+
579
+ <h4 class="name" id="metadata"><span class="type-signature"></span>metadata<span class="type-signature"> :Object</span></h4>
580
+
581
+
582
+
583
+
584
+ <div class="description">
585
+ <p>Additional metadata</p>
586
+ </div>
587
+
588
+
589
+
590
+ <h5>Type:</h5>
591
+ <ul>
592
+ <li>
593
+
594
+ <span class="param-type">Object</span>
595
+
596
+
597
+ </li>
598
+ </ul>
599
+
600
+
601
+
602
+
603
+
604
+ <dl class="details">
605
+
606
+
607
+
608
+
609
+
610
+
611
+
612
+
613
+
614
+
615
+
616
+
617
+
618
+
619
+
620
+
621
+
622
+
623
+
624
+
625
+
626
+
627
+
628
+
629
+
630
+
631
+ <dt class="tag-source">Source:</dt>
632
+ <dd class="tag-source"><ul class="dummy"><li>
633
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line90">line 90</a>
634
+ </li></ul></dd>
635
+
636
+
637
+
638
+
639
+
640
+
641
+
642
+ </dl>
643
+
644
+
645
+
646
+
647
+
648
+
649
+
650
+
651
+ <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
652
+
653
+
654
+
655
+
656
+ <div class="description">
657
+ <p>Display name</p>
658
+ </div>
659
+
660
+
661
+
662
+ <h5>Type:</h5>
663
+ <ul>
664
+ <li>
665
+
666
+ <span class="param-type">string</span>
667
+
668
+
669
+ </li>
670
+ </ul>
671
+
672
+
673
+
674
+
675
+
676
+ <dl class="details">
677
+
678
+
679
+
680
+
681
+
682
+
683
+
684
+
685
+
686
+
687
+
688
+
689
+
690
+
691
+
692
+
693
+
694
+
695
+
696
+
697
+
698
+
699
+
700
+
701
+
702
+
703
+ <dt class="tag-source">Source:</dt>
704
+ <dd class="tag-source"><ul class="dummy"><li>
705
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line48">line 48</a>
706
+ </li></ul></dd>
707
+
708
+
709
+
710
+
711
+
712
+
713
+
714
+ </dl>
715
+
716
+
717
+
718
+
719
+
720
+
721
+
722
+
723
+ <h4 class="name" id="publicKey"><span class="type-signature"></span>publicKey<span class="type-signature"> :Uint8Array|null</span></h4>
724
+
725
+
726
+
727
+
728
+ <div class="description">
729
+ <p>Peer's public key</p>
730
+ </div>
731
+
732
+
733
+
734
+ <h5>Type:</h5>
735
+ <ul>
736
+ <li>
737
+
738
+ <span class="param-type">Uint8Array</span>
739
+ |
740
+
741
+ <span class="param-type">null</span>
742
+
743
+
744
+ </li>
745
+ </ul>
746
+
747
+
748
+
749
+
750
+
751
+ <dl class="details">
752
+
753
+
754
+
755
+
756
+
757
+
758
+
759
+
760
+
761
+
762
+
763
+
764
+
765
+
766
+
767
+
768
+
769
+
770
+
771
+
772
+
773
+
774
+
775
+
776
+
777
+
778
+ <dt class="tag-source">Source:</dt>
779
+ <dd class="tag-source"><ul class="dummy"><li>
780
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line42">line 42</a>
781
+ </li></ul></dd>
782
+
783
+
784
+
785
+
786
+
787
+
788
+
789
+ </dl>
790
+
791
+
792
+
793
+
794
+
795
+
796
+
797
+
798
+ <h4 class="name" id="rssi"><span class="type-signature"></span>rssi<span class="type-signature"> :number</span></h4>
799
+
800
+
801
+
802
+
803
+ <div class="description">
804
+ <p>Received signal strength indicator</p>
805
+ </div>
806
+
807
+
808
+
809
+ <h5>Type:</h5>
810
+ <ul>
811
+ <li>
812
+
813
+ <span class="param-type">number</span>
814
+
815
+
816
+ </li>
817
+ </ul>
818
+
819
+
820
+
821
+
822
+
823
+ <dl class="details">
824
+
825
+
826
+
827
+
828
+
829
+
830
+
831
+
832
+
833
+
834
+
835
+
836
+
837
+
838
+
839
+
840
+
841
+
842
+
843
+
844
+
845
+
846
+
847
+
848
+
849
+
850
+ <dt class="tag-source">Source:</dt>
851
+ <dd class="tag-source"><ul class="dummy"><li>
852
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line54">line 54</a>
853
+ </li></ul></dd>
854
+
855
+
856
+
857
+
858
+
859
+
860
+
861
+ </dl>
862
+
863
+
864
+
865
+
866
+
867
+
868
+
869
+
870
+
871
+
872
+ <h3 class="subsection-title">Methods</h3>
873
+
874
+
875
+
876
+
877
+
878
+
879
+
880
+ <h4 class="name" id="clone"><span class="type-signature"></span>clone<span class="signature">()</span><span class="type-signature"> &rarr; {Peer}</span></h4>
881
+
882
+
883
+
884
+
885
+
886
+
887
+ <div class="description">
888
+ <p>Creates a copy of the peer</p>
889
+ </div>
890
+
891
+
892
+
893
+
894
+
895
+
896
+
897
+
898
+
899
+
900
+
901
+
902
+
903
+ <dl class="details">
904
+
905
+
906
+
907
+
908
+
909
+
910
+
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+
919
+
920
+
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+
929
+
930
+ <dt class="tag-source">Source:</dt>
931
+ <dd class="tag-source"><ul class="dummy"><li>
932
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line183">line 183</a>
933
+ </li></ul></dd>
934
+
935
+
936
+
937
+
938
+
939
+
940
+
941
+ </dl>
942
+
943
+
944
+
945
+
946
+
947
+
948
+
949
+
950
+
951
+
952
+
953
+
954
+
955
+
956
+
957
+ <h5>Returns:</h5>
958
+
959
+
960
+ <div class="param-desc">
961
+ <p>New Peer instance</p>
962
+ </div>
963
+
964
+
965
+
966
+ <dl>
967
+ <dt>
968
+ Type
969
+ </dt>
970
+ <dd>
971
+
972
+ <span class="param-type">Peer</span>
973
+
974
+
975
+ </dd>
976
+ </dl>
977
+
978
+
979
+
980
+
981
+
982
+
983
+
984
+
985
+
986
+
987
+
988
+
989
+
990
+ <h4 class="name" id="getAge"><span class="type-signature"></span>getAge<span class="signature">()</span><span class="type-signature"> &rarr; {number}</span></h4>
991
+
992
+
993
+
994
+
995
+
996
+
997
+ <div class="description">
998
+ <p>Gets the age of the peer since last seen</p>
999
+ </div>
1000
+
1001
+
1002
+
1003
+
1004
+
1005
+
1006
+
1007
+
1008
+
1009
+
1010
+
1011
+
1012
+
1013
+ <dl class="details">
1014
+
1015
+
1016
+
1017
+
1018
+
1019
+
1020
+
1021
+
1022
+
1023
+
1024
+
1025
+
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+
1034
+
1035
+
1036
+
1037
+
1038
+
1039
+
1040
+ <dt class="tag-source">Source:</dt>
1041
+ <dd class="tag-source"><ul class="dummy"><li>
1042
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line166">line 166</a>
1043
+ </li></ul></dd>
1044
+
1045
+
1046
+
1047
+
1048
+
1049
+
1050
+
1051
+ </dl>
1052
+
1053
+
1054
+
1055
+
1056
+
1057
+
1058
+
1059
+
1060
+
1061
+
1062
+
1063
+
1064
+
1065
+
1066
+
1067
+ <h5>Returns:</h5>
1068
+
1069
+
1070
+ <div class="param-desc">
1071
+ <p>Milliseconds since last seen</p>
1072
+ </div>
1073
+
1074
+
1075
+
1076
+ <dl>
1077
+ <dt>
1078
+ Type
1079
+ </dt>
1080
+ <dd>
1081
+
1082
+ <span class="param-type">number</span>
1083
+
1084
+
1085
+ </dd>
1086
+ </dl>
1087
+
1088
+
1089
+
1090
+
1091
+
1092
+
1093
+
1094
+
1095
+
1096
+
1097
+
1098
+
1099
+
1100
+ <h4 class="name" id="isConnected"><span class="type-signature"></span>isConnected<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
1101
+
1102
+
1103
+
1104
+
1105
+
1106
+
1107
+ <div class="description">
1108
+ <p>Checks if peer is currently connected</p>
1109
+ </div>
1110
+
1111
+
1112
+
1113
+
1114
+
1115
+
1116
+
1117
+
1118
+
1119
+
1120
+
1121
+
1122
+
1123
+ <dl class="details">
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+
1130
+
1131
+
1132
+
1133
+
1134
+
1135
+
1136
+
1137
+
1138
+
1139
+
1140
+
1141
+
1142
+
1143
+
1144
+
1145
+
1146
+
1147
+
1148
+
1149
+
1150
+ <dt class="tag-source">Source:</dt>
1151
+ <dd class="tag-source"><ul class="dummy"><li>
1152
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line97">line 97</a>
1153
+ </li></ul></dd>
1154
+
1155
+
1156
+
1157
+
1158
+
1159
+
1160
+
1161
+ </dl>
1162
+
1163
+
1164
+
1165
+
1166
+
1167
+
1168
+
1169
+
1170
+
1171
+
1172
+
1173
+
1174
+
1175
+
1176
+
1177
+ <h5>Returns:</h5>
1178
+
1179
+
1180
+ <div class="param-desc">
1181
+ <p>True if connected</p>
1182
+ </div>
1183
+
1184
+
1185
+
1186
+ <dl>
1187
+ <dt>
1188
+ Type
1189
+ </dt>
1190
+ <dd>
1191
+
1192
+ <span class="param-type">boolean</span>
1193
+
1194
+
1195
+ </dd>
1196
+ </dl>
1197
+
1198
+
1199
+
1200
+
1201
+
1202
+
1203
+
1204
+
1205
+
1206
+
1207
+
1208
+
1209
+
1210
+ <h4 class="name" id="isDirect"><span class="type-signature"></span>isDirect<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
1211
+
1212
+
1213
+
1214
+
1215
+
1216
+
1217
+ <div class="description">
1218
+ <p>Checks if peer is directly connected (not via relay)</p>
1219
+ </div>
1220
+
1221
+
1222
+
1223
+
1224
+
1225
+
1226
+
1227
+
1228
+
1229
+
1230
+
1231
+
1232
+
1233
+ <dl class="details">
1234
+
1235
+
1236
+
1237
+
1238
+
1239
+
1240
+
1241
+
1242
+
1243
+
1244
+
1245
+
1246
+
1247
+
1248
+
1249
+
1250
+
1251
+
1252
+
1253
+
1254
+
1255
+
1256
+
1257
+
1258
+
1259
+
1260
+ <dt class="tag-source">Source:</dt>
1261
+ <dd class="tag-source"><ul class="dummy"><li>
1262
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line116">line 116</a>
1263
+ </li></ul></dd>
1264
+
1265
+
1266
+
1267
+
1268
+
1269
+
1270
+
1271
+ </dl>
1272
+
1273
+
1274
+
1275
+
1276
+
1277
+
1278
+
1279
+
1280
+
1281
+
1282
+
1283
+
1284
+
1285
+
1286
+
1287
+ <h5>Returns:</h5>
1288
+
1289
+
1290
+ <div class="param-desc">
1291
+ <p>True if directly connected</p>
1292
+ </div>
1293
+
1294
+
1295
+
1296
+ <dl>
1297
+ <dt>
1298
+ Type
1299
+ </dt>
1300
+ <dd>
1301
+
1302
+ <span class="param-type">boolean</span>
1303
+
1304
+
1305
+ </dd>
1306
+ </dl>
1307
+
1308
+
1309
+
1310
+
1311
+
1312
+
1313
+
1314
+
1315
+
1316
+
1317
+
1318
+
1319
+
1320
+ <h4 class="name" id="isSecured"><span class="type-signature"></span>isSecured<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
1321
+
1322
+
1323
+
1324
+
1325
+
1326
+
1327
+ <div class="description">
1328
+ <p>Checks if peer has a secure session</p>
1329
+ </div>
1330
+
1331
+
1332
+
1333
+
1334
+
1335
+
1336
+
1337
+
1338
+
1339
+
1340
+
1341
+
1342
+
1343
+ <dl class="details">
1344
+
1345
+
1346
+
1347
+
1348
+
1349
+
1350
+
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+
1357
+
1358
+
1359
+
1360
+
1361
+
1362
+
1363
+
1364
+
1365
+
1366
+
1367
+
1368
+
1369
+
1370
+ <dt class="tag-source">Source:</dt>
1371
+ <dd class="tag-source"><ul class="dummy"><li>
1372
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line107">line 107</a>
1373
+ </li></ul></dd>
1374
+
1375
+
1376
+
1377
+
1378
+
1379
+
1380
+
1381
+ </dl>
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+
1388
+
1389
+
1390
+
1391
+
1392
+
1393
+
1394
+
1395
+
1396
+
1397
+ <h5>Returns:</h5>
1398
+
1399
+
1400
+ <div class="param-desc">
1401
+ <p>True if secured</p>
1402
+ </div>
1403
+
1404
+
1405
+
1406
+ <dl>
1407
+ <dt>
1408
+ Type
1409
+ </dt>
1410
+ <dd>
1411
+
1412
+ <span class="param-type">boolean</span>
1413
+
1414
+
1415
+ </dd>
1416
+ </dl>
1417
+
1418
+
1419
+
1420
+
1421
+
1422
+
1423
+
1424
+
1425
+
1426
+
1427
+
1428
+
1429
+
1430
+ <h4 class="name" id="isStale"><span class="type-signature"></span>isStale<span class="signature">(maxAge)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
1431
+
1432
+
1433
+
1434
+
1435
+
1436
+
1437
+ <div class="description">
1438
+ <p>Checks if the peer has gone stale</p>
1439
+ </div>
1440
+
1441
+
1442
+
1443
+
1444
+
1445
+
1446
+
1447
+
1448
+
1449
+ <h5>Parameters:</h5>
1450
+
1451
+
1452
+ <table class="params">
1453
+ <thead>
1454
+ <tr>
1455
+
1456
+ <th>Name</th>
1457
+
1458
+
1459
+ <th>Type</th>
1460
+
1461
+
1462
+
1463
+
1464
+
1465
+ <th class="last">Description</th>
1466
+ </tr>
1467
+ </thead>
1468
+
1469
+ <tbody>
1470
+
1471
+
1472
+ <tr>
1473
+
1474
+ <td class="name"><code>maxAge</code></td>
1475
+
1476
+
1477
+ <td class="type">
1478
+
1479
+
1480
+ <span class="param-type">number</span>
1481
+
1482
+
1483
+
1484
+ </td>
1485
+
1486
+
1487
+
1488
+
1489
+
1490
+ <td class="description last"><p>Maximum age in milliseconds</p></td>
1491
+ </tr>
1492
+
1493
+
1494
+ </tbody>
1495
+ </table>
1496
+
1497
+
1498
+
1499
+
1500
+
1501
+
1502
+ <dl class="details">
1503
+
1504
+
1505
+
1506
+
1507
+
1508
+
1509
+
1510
+
1511
+
1512
+
1513
+
1514
+
1515
+
1516
+
1517
+
1518
+
1519
+
1520
+
1521
+
1522
+
1523
+
1524
+
1525
+
1526
+
1527
+
1528
+
1529
+ <dt class="tag-source">Source:</dt>
1530
+ <dd class="tag-source"><ul class="dummy"><li>
1531
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line175">line 175</a>
1532
+ </li></ul></dd>
1533
+
1534
+
1535
+
1536
+
1537
+
1538
+
1539
+
1540
+ </dl>
1541
+
1542
+
1543
+
1544
+
1545
+
1546
+
1547
+
1548
+
1549
+
1550
+
1551
+
1552
+
1553
+
1554
+
1555
+
1556
+ <h5>Returns:</h5>
1557
+
1558
+
1559
+ <div class="param-desc">
1560
+ <p>True if stale</p>
1561
+ </div>
1562
+
1563
+
1564
+
1565
+ <dl>
1566
+ <dt>
1567
+ Type
1568
+ </dt>
1569
+ <dd>
1570
+
1571
+ <span class="param-type">boolean</span>
1572
+
1573
+
1574
+ </dd>
1575
+ </dl>
1576
+
1577
+
1578
+
1579
+
1580
+
1581
+
1582
+
1583
+
1584
+
1585
+
1586
+
1587
+
1588
+
1589
+ <h4 class="name" id="markSecured"><span class="type-signature"></span>markSecured<span class="signature">()</span><span class="type-signature"></span></h4>
1590
+
1591
+
1592
+
1593
+
1594
+
1595
+
1596
+ <div class="description">
1597
+ <p>Marks the peer as having a secure session</p>
1598
+ </div>
1599
+
1600
+
1601
+
1602
+
1603
+
1604
+
1605
+
1606
+
1607
+
1608
+
1609
+
1610
+
1611
+
1612
+ <dl class="details">
1613
+
1614
+
1615
+
1616
+
1617
+
1618
+
1619
+
1620
+
1621
+
1622
+
1623
+
1624
+
1625
+
1626
+
1627
+
1628
+
1629
+
1630
+
1631
+
1632
+
1633
+
1634
+
1635
+
1636
+
1637
+
1638
+
1639
+ <dt class="tag-source">Source:</dt>
1640
+ <dd class="tag-source"><ul class="dummy"><li>
1641
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line145">line 145</a>
1642
+ </li></ul></dd>
1643
+
1644
+
1645
+
1646
+
1647
+
1648
+
1649
+
1650
+ </dl>
1651
+
1652
+
1653
+
1654
+
1655
+
1656
+
1657
+
1658
+
1659
+
1660
+
1661
+
1662
+
1663
+
1664
+
1665
+
1666
+
1667
+
1668
+
1669
+
1670
+
1671
+
1672
+
1673
+
1674
+
1675
+
1676
+
1677
+ <h4 class="name" id="setConnectionState"><span class="type-signature"></span>setConnectionState<span class="signature">(state)</span><span class="type-signature"></span></h4>
1678
+
1679
+
1680
+
1681
+
1682
+
1683
+
1684
+ <div class="description">
1685
+ <p>Updates the connection state</p>
1686
+ </div>
1687
+
1688
+
1689
+
1690
+
1691
+
1692
+
1693
+
1694
+
1695
+
1696
+ <h5>Parameters:</h5>
1697
+
1698
+
1699
+ <table class="params">
1700
+ <thead>
1701
+ <tr>
1702
+
1703
+ <th>Name</th>
1704
+
1705
+
1706
+ <th>Type</th>
1707
+
1708
+
1709
+
1710
+
1711
+
1712
+ <th class="last">Description</th>
1713
+ </tr>
1714
+ </thead>
1715
+
1716
+ <tbody>
1717
+
1718
+
1719
+ <tr>
1720
+
1721
+ <td class="name"><code>state</code></td>
1722
+
1723
+
1724
+ <td class="type">
1725
+
1726
+
1727
+ <span class="param-type">string</span>
1728
+
1729
+
1730
+
1731
+ </td>
1732
+
1733
+
1734
+
1735
+
1736
+
1737
+ <td class="description last"><p>New connection state</p></td>
1738
+ </tr>
1739
+
1740
+
1741
+ </tbody>
1742
+ </table>
1743
+
1744
+
1745
+
1746
+
1747
+
1748
+
1749
+ <dl class="details">
1750
+
1751
+
1752
+
1753
+
1754
+
1755
+
1756
+
1757
+
1758
+
1759
+
1760
+
1761
+
1762
+
1763
+
1764
+
1765
+
1766
+
1767
+
1768
+
1769
+
1770
+
1771
+
1772
+
1773
+
1774
+
1775
+
1776
+ <dt class="tag-source">Source:</dt>
1777
+ <dd class="tag-source"><ul class="dummy"><li>
1778
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line132">line 132</a>
1779
+ </li></ul></dd>
1780
+
1781
+
1782
+
1783
+
1784
+
1785
+
1786
+
1787
+ </dl>
1788
+
1789
+
1790
+
1791
+
1792
+
1793
+
1794
+
1795
+
1796
+
1797
+
1798
+
1799
+
1800
+
1801
+
1802
+
1803
+
1804
+
1805
+
1806
+
1807
+
1808
+
1809
+
1810
+
1811
+
1812
+
1813
+
1814
+ <h4 class="name" id="setPublicKey"><span class="type-signature"></span>setPublicKey<span class="signature">(publicKey)</span><span class="type-signature"></span></h4>
1815
+
1816
+
1817
+
1818
+
1819
+
1820
+
1821
+ <div class="description">
1822
+ <p>Updates the public key</p>
1823
+ </div>
1824
+
1825
+
1826
+
1827
+
1828
+
1829
+
1830
+
1831
+
1832
+
1833
+ <h5>Parameters:</h5>
1834
+
1835
+
1836
+ <table class="params">
1837
+ <thead>
1838
+ <tr>
1839
+
1840
+ <th>Name</th>
1841
+
1842
+
1843
+ <th>Type</th>
1844
+
1845
+
1846
+
1847
+
1848
+
1849
+ <th class="last">Description</th>
1850
+ </tr>
1851
+ </thead>
1852
+
1853
+ <tbody>
1854
+
1855
+
1856
+ <tr>
1857
+
1858
+ <td class="name"><code>publicKey</code></td>
1859
+
1860
+
1861
+ <td class="type">
1862
+
1863
+
1864
+ <span class="param-type">Uint8Array</span>
1865
+
1866
+
1867
+
1868
+ </td>
1869
+
1870
+
1871
+
1872
+
1873
+
1874
+ <td class="description last"><p>New public key</p></td>
1875
+ </tr>
1876
+
1877
+
1878
+ </tbody>
1879
+ </table>
1880
+
1881
+
1882
+
1883
+
1884
+
1885
+
1886
+ <dl class="details">
1887
+
1888
+
1889
+
1890
+
1891
+
1892
+
1893
+
1894
+
1895
+
1896
+
1897
+
1898
+
1899
+
1900
+
1901
+
1902
+
1903
+
1904
+
1905
+
1906
+
1907
+
1908
+
1909
+
1910
+
1911
+
1912
+
1913
+ <dt class="tag-source">Source:</dt>
1914
+ <dd class="tag-source"><ul class="dummy"><li>
1915
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line155">line 155</a>
1916
+ </li></ul></dd>
1917
+
1918
+
1919
+
1920
+
1921
+
1922
+
1923
+
1924
+ </dl>
1925
+
1926
+
1927
+
1928
+
1929
+
1930
+
1931
+
1932
+
1933
+
1934
+
1935
+
1936
+
1937
+
1938
+
1939
+
1940
+
1941
+
1942
+
1943
+
1944
+
1945
+
1946
+
1947
+
1948
+
1949
+
1950
+
1951
+ <h4 class="name" id="toJSON"><span class="type-signature"></span>toJSON<span class="signature">()</span><span class="type-signature"> &rarr; {Object}</span></h4>
1952
+
1953
+
1954
+
1955
+
1956
+
1957
+
1958
+ <div class="description">
1959
+ <p>Converts peer to a JSON-serializable object</p>
1960
+ </div>
1961
+
1962
+
1963
+
1964
+
1965
+
1966
+
1967
+
1968
+
1969
+
1970
+
1971
+
1972
+
1973
+
1974
+ <dl class="details">
1975
+
1976
+
1977
+
1978
+
1979
+
1980
+
1981
+
1982
+
1983
+
1984
+
1985
+
1986
+
1987
+
1988
+
1989
+
1990
+
1991
+
1992
+
1993
+
1994
+
1995
+
1996
+
1997
+
1998
+
1999
+
2000
+
2001
+ <dt class="tag-source">Source:</dt>
2002
+ <dd class="tag-source"><ul class="dummy"><li>
2003
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line203">line 203</a>
2004
+ </li></ul></dd>
2005
+
2006
+
2007
+
2008
+
2009
+
2010
+
2011
+
2012
+ </dl>
2013
+
2014
+
2015
+
2016
+
2017
+
2018
+
2019
+
2020
+
2021
+
2022
+
2023
+
2024
+
2025
+
2026
+
2027
+
2028
+ <h5>Returns:</h5>
2029
+
2030
+
2031
+ <div class="param-desc">
2032
+ <p>JSON representation</p>
2033
+ </div>
2034
+
2035
+
2036
+
2037
+ <dl>
2038
+ <dt>
2039
+ Type
2040
+ </dt>
2041
+ <dd>
2042
+
2043
+ <span class="param-type">Object</span>
2044
+
2045
+
2046
+ </dd>
2047
+ </dl>
2048
+
2049
+
2050
+
2051
+
2052
+
2053
+
2054
+
2055
+
2056
+
2057
+
2058
+
2059
+
2060
+
2061
+ <h4 class="name" id="updateLastSeen"><span class="type-signature"></span>updateLastSeen<span class="signature">(timestamp<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
2062
+
2063
+
2064
+
2065
+
2066
+
2067
+
2068
+ <div class="description">
2069
+ <p>Updates the last seen timestamp</p>
2070
+ </div>
2071
+
2072
+
2073
+
2074
+
2075
+
2076
+
2077
+
2078
+
2079
+
2080
+ <h5>Parameters:</h5>
2081
+
2082
+
2083
+ <table class="params">
2084
+ <thead>
2085
+ <tr>
2086
+
2087
+ <th>Name</th>
2088
+
2089
+
2090
+ <th>Type</th>
2091
+
2092
+
2093
+ <th>Attributes</th>
2094
+
2095
+
2096
+
2097
+
2098
+ <th class="last">Description</th>
2099
+ </tr>
2100
+ </thead>
2101
+
2102
+ <tbody>
2103
+
2104
+
2105
+ <tr>
2106
+
2107
+ <td class="name"><code>timestamp</code></td>
2108
+
2109
+
2110
+ <td class="type">
2111
+
2112
+
2113
+ <span class="param-type">number</span>
2114
+
2115
+
2116
+
2117
+ </td>
2118
+
2119
+
2120
+ <td class="attributes">
2121
+
2122
+ &lt;optional><br>
2123
+
2124
+
2125
+
2126
+
2127
+
2128
+ </td>
2129
+
2130
+
2131
+
2132
+
2133
+ <td class="description last"><p>Custom timestamp, defaults to now</p></td>
2134
+ </tr>
2135
+
2136
+
2137
+ </tbody>
2138
+ </table>
2139
+
2140
+
2141
+
2142
+
2143
+
2144
+
2145
+ <dl class="details">
2146
+
2147
+
2148
+
2149
+
2150
+
2151
+
2152
+
2153
+
2154
+
2155
+
2156
+
2157
+
2158
+
2159
+
2160
+
2161
+
2162
+
2163
+
2164
+
2165
+
2166
+
2167
+
2168
+
2169
+
2170
+
2171
+
2172
+ <dt class="tag-source">Source:</dt>
2173
+ <dd class="tag-source"><ul class="dummy"><li>
2174
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line124">line 124</a>
2175
+ </li></ul></dd>
2176
+
2177
+
2178
+
2179
+
2180
+
2181
+
2182
+
2183
+ </dl>
2184
+
2185
+
2186
+
2187
+
2188
+
2189
+
2190
+
2191
+
2192
+
2193
+
2194
+
2195
+
2196
+
2197
+
2198
+
2199
+
2200
+
2201
+
2202
+
2203
+
2204
+
2205
+
2206
+
2207
+
2208
+
2209
+
2210
+ <h4 class="name" id=".fromJSON"><span class="type-signature">(static) </span>fromJSON<span class="signature">(data)</span><span class="type-signature"> &rarr; {Peer}</span></h4>
2211
+
2212
+
2213
+
2214
+
2215
+
2216
+
2217
+ <div class="description">
2218
+ <p>Creates a Peer from JSON data</p>
2219
+ </div>
2220
+
2221
+
2222
+
2223
+
2224
+
2225
+
2226
+
2227
+
2228
+
2229
+ <h5>Parameters:</h5>
2230
+
2231
+
2232
+ <table class="params">
2233
+ <thead>
2234
+ <tr>
2235
+
2236
+ <th>Name</th>
2237
+
2238
+
2239
+ <th>Type</th>
2240
+
2241
+
2242
+
2243
+
2244
+
2245
+ <th class="last">Description</th>
2246
+ </tr>
2247
+ </thead>
2248
+
2249
+ <tbody>
2250
+
2251
+
2252
+ <tr>
2253
+
2254
+ <td class="name"><code>data</code></td>
2255
+
2256
+
2257
+ <td class="type">
2258
+
2259
+
2260
+ <span class="param-type">Object</span>
2261
+
2262
+
2263
+
2264
+ </td>
2265
+
2266
+
2267
+
2268
+
2269
+
2270
+ <td class="description last"><p>JSON data</p></td>
2271
+ </tr>
2272
+
2273
+
2274
+ </tbody>
2275
+ </table>
2276
+
2277
+
2278
+
2279
+
2280
+
2281
+
2282
+ <dl class="details">
2283
+
2284
+
2285
+
2286
+
2287
+
2288
+
2289
+
2290
+
2291
+
2292
+
2293
+
2294
+
2295
+
2296
+
2297
+
2298
+
2299
+
2300
+
2301
+
2302
+
2303
+
2304
+
2305
+
2306
+
2307
+
2308
+
2309
+ <dt class="tag-source">Source:</dt>
2310
+ <dd class="tag-source"><ul class="dummy"><li>
2311
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line225">line 225</a>
2312
+ </li></ul></dd>
2313
+
2314
+
2315
+
2316
+
2317
+
2318
+
2319
+
2320
+ </dl>
2321
+
2322
+
2323
+
2324
+
2325
+
2326
+
2327
+
2328
+
2329
+
2330
+
2331
+
2332
+
2333
+
2334
+
2335
+
2336
+ <h5>Returns:</h5>
2337
+
2338
+
2339
+ <div class="param-desc">
2340
+ <p>New Peer instance</p>
2341
+ </div>
2342
+
2343
+
2344
+
2345
+ <dl>
2346
+ <dt>
2347
+ Type
2348
+ </dt>
2349
+ <dd>
2350
+
2351
+ <span class="param-type">Peer</span>
2352
+
2353
+
2354
+ </dd>
2355
+ </dl>
2356
+
2357
+
2358
+
2359
+
2360
+
2361
+
2362
+
2363
+
2364
+
2365
+
2366
+
2367
+
2368
+
2369
+ </article>
2370
+
2371
+ </section>
2372
+
2373
+
2374
+
2375
+
2376
+
2377
+
2378
+
2379
+ <section>
2380
+
2381
+ <header>
2382
+
2383
+ <h2><span class="attribs"><span class="type-signature"></span></span>
2384
+ <span class="ancestors"><a href="module-mesh_peer_Peer.html">mesh/peer/Peer</a>~</span>Peer<span class="signature">(options)</span><span class="type-signature"></span></h2>
2385
+
2386
+
2387
+ </header>
2388
+
2389
+ <article>
2390
+ <div class="container-overview">
2391
+
2392
+
2393
+
2394
+
2395
+
2396
+
2397
+ <h4 class="name" id="Peer"><span class="type-signature"></span>new Peer<span class="signature">(options)</span><span class="type-signature"></span></h4>
2398
+
2399
+
2400
+
2401
+
2402
+
2403
+
2404
+ <div class="description">
2405
+ <p>Creates a new Peer</p>
2406
+ </div>
2407
+
2408
+
2409
+
2410
+
2411
+
2412
+
2413
+
2414
+
2415
+
2416
+ <h5>Parameters:</h5>
2417
+
2418
+
2419
+ <table class="params">
2420
+ <thead>
2421
+ <tr>
2422
+
2423
+ <th>Name</th>
2424
+
2425
+
2426
+ <th>Type</th>
2427
+
2428
+
2429
+
2430
+
2431
+
2432
+ <th class="last">Description</th>
2433
+ </tr>
2434
+ </thead>
2435
+
2436
+ <tbody>
2437
+
2438
+
2439
+ <tr>
2440
+
2441
+ <td class="name"><code>options</code></td>
2442
+
2443
+
2444
+ <td class="type">
2445
+
2446
+
2447
+ <span class="param-type">Object</span>
2448
+
2449
+
2450
+
2451
+ </td>
2452
+
2453
+
2454
+
2455
+
2456
+
2457
+ <td class="description last"><p>Peer options</p>
2458
+ <h6>Properties</h6>
2459
+
2460
+
2461
+ <table class="params">
2462
+ <thead>
2463
+ <tr>
2464
+
2465
+ <th>Name</th>
2466
+
2467
+
2468
+ <th>Type</th>
2469
+
2470
+
2471
+ <th>Attributes</th>
2472
+
2473
+
2474
+
2475
+
2476
+ <th class="last">Description</th>
2477
+ </tr>
2478
+ </thead>
2479
+
2480
+ <tbody>
2481
+
2482
+
2483
+ <tr>
2484
+
2485
+ <td class="name"><code>id</code></td>
2486
+
2487
+
2488
+ <td class="type">
2489
+
2490
+
2491
+ <span class="param-type">string</span>
2492
+
2493
+
2494
+
2495
+ </td>
2496
+
2497
+
2498
+ <td class="attributes">
2499
+
2500
+
2501
+
2502
+
2503
+
2504
+ </td>
2505
+
2506
+
2507
+
2508
+
2509
+ <td class="description last"><p>Unique peer identifier</p></td>
2510
+ </tr>
2511
+
2512
+
2513
+
2514
+ <tr>
2515
+
2516
+ <td class="name"><code>publicKey</code></td>
2517
+
2518
+
2519
+ <td class="type">
2520
+
2521
+
2522
+ <span class="param-type">Uint8Array</span>
2523
+
2524
+
2525
+
2526
+ </td>
2527
+
2528
+
2529
+ <td class="attributes">
2530
+
2531
+ &lt;optional><br>
2532
+
2533
+
2534
+
2535
+
2536
+
2537
+ </td>
2538
+
2539
+
2540
+
2541
+
2542
+ <td class="description last"><p>Peer's public key</p></td>
2543
+ </tr>
2544
+
2545
+
2546
+
2547
+ <tr>
2548
+
2549
+ <td class="name"><code>name</code></td>
2550
+
2551
+
2552
+ <td class="type">
2553
+
2554
+
2555
+ <span class="param-type">string</span>
2556
+
2557
+
2558
+
2559
+ </td>
2560
+
2561
+
2562
+ <td class="attributes">
2563
+
2564
+ &lt;optional><br>
2565
+
2566
+
2567
+
2568
+
2569
+
2570
+ </td>
2571
+
2572
+
2573
+
2574
+
2575
+ <td class="description last"><p>Display name</p></td>
2576
+ </tr>
2577
+
2578
+
2579
+
2580
+ <tr>
2581
+
2582
+ <td class="name"><code>rssi</code></td>
2583
+
2584
+
2585
+ <td class="type">
2586
+
2587
+
2588
+ <span class="param-type">number</span>
2589
+
2590
+
2591
+
2592
+ </td>
2593
+
2594
+
2595
+ <td class="attributes">
2596
+
2597
+ &lt;optional><br>
2598
+
2599
+
2600
+
2601
+
2602
+
2603
+ </td>
2604
+
2605
+
2606
+
2607
+
2608
+ <td class="description last"><p>Signal strength</p></td>
2609
+ </tr>
2610
+
2611
+
2612
+
2613
+ <tr>
2614
+
2615
+ <td class="name"><code>hopCount</code></td>
2616
+
2617
+
2618
+ <td class="type">
2619
+
2620
+
2621
+ <span class="param-type">number</span>
2622
+
2623
+
2624
+
2625
+ </td>
2626
+
2627
+
2628
+ <td class="attributes">
2629
+
2630
+ &lt;optional><br>
2631
+
2632
+
2633
+
2634
+
2635
+
2636
+ </td>
2637
+
2638
+
2639
+
2640
+
2641
+ <td class="description last"><p>Distance in hops</p></td>
2642
+ </tr>
2643
+
2644
+
2645
+ </tbody>
2646
+ </table>
2647
+
2648
+ </td>
2649
+ </tr>
2650
+
2651
+
2652
+ </tbody>
2653
+ </table>
2654
+
2655
+
2656
+
2657
+
2658
+
2659
+
2660
+ <dl class="details">
2661
+
2662
+
2663
+
2664
+
2665
+
2666
+
2667
+
2668
+
2669
+
2670
+
2671
+
2672
+
2673
+
2674
+
2675
+
2676
+
2677
+
2678
+
2679
+
2680
+
2681
+
2682
+
2683
+
2684
+
2685
+
2686
+
2687
+ <dt class="tag-source">Source:</dt>
2688
+ <dd class="tag-source"><ul class="dummy"><li>
2689
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line25">line 25</a>
2690
+ </li></ul></dd>
2691
+
2692
+
2693
+
2694
+
2695
+
2696
+
2697
+
2698
+ </dl>
2699
+
2700
+
2701
+
2702
+
2703
+
2704
+
2705
+
2706
+
2707
+
2708
+
2709
+
2710
+
2711
+
2712
+
2713
+
2714
+
2715
+
2716
+
2717
+
2718
+
2719
+
2720
+ </div>
2721
+
2722
+
2723
+
2724
+
2725
+
2726
+
2727
+
2728
+
2729
+
2730
+
2731
+
2732
+
2733
+
2734
+
2735
+ <h3 class="subsection-title">Members</h3>
2736
+
2737
+
2738
+
2739
+ <h4 class="name" id="connectionState"><span class="type-signature"></span>connectionState<span class="type-signature"> :string</span></h4>
2740
+
2741
+
2742
+
2743
+
2744
+ <div class="description">
2745
+ <p>Current connection state</p>
2746
+ </div>
2747
+
2748
+
2749
+
2750
+ <h5>Type:</h5>
2751
+ <ul>
2752
+ <li>
2753
+
2754
+ <span class="param-type">string</span>
2755
+
2756
+
2757
+ </li>
2758
+ </ul>
2759
+
2760
+
2761
+
2762
+
2763
+
2764
+ <dl class="details">
2765
+
2766
+
2767
+
2768
+
2769
+
2770
+
2771
+
2772
+
2773
+
2774
+
2775
+
2776
+
2777
+
2778
+
2779
+
2780
+
2781
+
2782
+
2783
+
2784
+
2785
+
2786
+
2787
+
2788
+
2789
+
2790
+
2791
+ <dt class="tag-source">Source:</dt>
2792
+ <dd class="tag-source"><ul class="dummy"><li>
2793
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line78">line 78</a>
2794
+ </li></ul></dd>
2795
+
2796
+
2797
+
2798
+
2799
+
2800
+
2801
+
2802
+ </dl>
2803
+
2804
+
2805
+
2806
+
2807
+
2808
+
2809
+
2810
+
2811
+ <h4 class="name" id="discoveredAt"><span class="type-signature"></span>discoveredAt<span class="type-signature"> :number</span></h4>
2812
+
2813
+
2814
+
2815
+
2816
+ <div class="description">
2817
+ <p>Timestamp when peer was first discovered</p>
2818
+ </div>
2819
+
2820
+
2821
+
2822
+ <h5>Type:</h5>
2823
+ <ul>
2824
+ <li>
2825
+
2826
+ <span class="param-type">number</span>
2827
+
2828
+
2829
+ </li>
2830
+ </ul>
2831
+
2832
+
2833
+
2834
+
2835
+
2836
+ <dl class="details">
2837
+
2838
+
2839
+
2840
+
2841
+
2842
+
2843
+
2844
+
2845
+
2846
+
2847
+
2848
+
2849
+
2850
+
2851
+
2852
+
2853
+
2854
+
2855
+
2856
+
2857
+
2858
+
2859
+
2860
+
2861
+
2862
+
2863
+ <dt class="tag-source">Source:</dt>
2864
+ <dd class="tag-source"><ul class="dummy"><li>
2865
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line72">line 72</a>
2866
+ </li></ul></dd>
2867
+
2868
+
2869
+
2870
+
2871
+
2872
+
2873
+
2874
+ </dl>
2875
+
2876
+
2877
+
2878
+
2879
+
2880
+
2881
+
2882
+
2883
+ <h4 class="name" id="hasSecureSession"><span class="type-signature"></span>hasSecureSession<span class="type-signature"> :boolean</span></h4>
2884
+
2885
+
2886
+
2887
+
2888
+ <div class="description">
2889
+ <p>Whether a secure session has been established</p>
2890
+ </div>
2891
+
2892
+
2893
+
2894
+ <h5>Type:</h5>
2895
+ <ul>
2896
+ <li>
2897
+
2898
+ <span class="param-type">boolean</span>
2899
+
2900
+
2901
+ </li>
2902
+ </ul>
2903
+
2904
+
2905
+
2906
+
2907
+
2908
+ <dl class="details">
2909
+
2910
+
2911
+
2912
+
2913
+
2914
+
2915
+
2916
+
2917
+
2918
+
2919
+
2920
+
2921
+
2922
+
2923
+
2924
+
2925
+
2926
+
2927
+
2928
+
2929
+
2930
+
2931
+
2932
+
2933
+
2934
+
2935
+ <dt class="tag-source">Source:</dt>
2936
+ <dd class="tag-source"><ul class="dummy"><li>
2937
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line84">line 84</a>
2938
+ </li></ul></dd>
2939
+
2940
+
2941
+
2942
+
2943
+
2944
+
2945
+
2946
+ </dl>
2947
+
2948
+
2949
+
2950
+
2951
+
2952
+
2953
+
2954
+
2955
+ <h4 class="name" id="hopCount"><span class="type-signature"></span>hopCount<span class="type-signature"> :number</span></h4>
2956
+
2957
+
2958
+
2959
+
2960
+ <div class="description">
2961
+ <p>Distance in hops (0 = direct connection)</p>
2962
+ </div>
2963
+
2964
+
2965
+
2966
+ <h5>Type:</h5>
2967
+ <ul>
2968
+ <li>
2969
+
2970
+ <span class="param-type">number</span>
2971
+
2972
+
2973
+ </li>
2974
+ </ul>
2975
+
2976
+
2977
+
2978
+
2979
+
2980
+ <dl class="details">
2981
+
2982
+
2983
+
2984
+
2985
+
2986
+
2987
+
2988
+
2989
+
2990
+
2991
+
2992
+
2993
+
2994
+
2995
+
2996
+
2997
+
2998
+
2999
+
3000
+
3001
+
3002
+
3003
+
3004
+
3005
+
3006
+
3007
+ <dt class="tag-source">Source:</dt>
3008
+ <dd class="tag-source"><ul class="dummy"><li>
3009
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line60">line 60</a>
3010
+ </li></ul></dd>
3011
+
3012
+
3013
+
3014
+
3015
+
3016
+
3017
+
3018
+ </dl>
3019
+
3020
+
3021
+
3022
+
3023
+
3024
+
3025
+
3026
+
3027
+ <h4 class="name" id="id"><span class="type-signature"></span>id<span class="type-signature"> :string</span></h4>
3028
+
3029
+
3030
+
3031
+
3032
+ <div class="description">
3033
+ <p>Unique peer identifier</p>
3034
+ </div>
3035
+
3036
+
3037
+
3038
+ <h5>Type:</h5>
3039
+ <ul>
3040
+ <li>
3041
+
3042
+ <span class="param-type">string</span>
3043
+
3044
+
3045
+ </li>
3046
+ </ul>
3047
+
3048
+
3049
+
3050
+
3051
+
3052
+ <dl class="details">
3053
+
3054
+
3055
+
3056
+
3057
+
3058
+
3059
+
3060
+
3061
+
3062
+
3063
+
3064
+
3065
+
3066
+
3067
+
3068
+
3069
+
3070
+
3071
+
3072
+
3073
+
3074
+
3075
+
3076
+
3077
+
3078
+
3079
+ <dt class="tag-source">Source:</dt>
3080
+ <dd class="tag-source"><ul class="dummy"><li>
3081
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line36">line 36</a>
3082
+ </li></ul></dd>
3083
+
3084
+
3085
+
3086
+
3087
+
3088
+
3089
+
3090
+ </dl>
3091
+
3092
+
3093
+
3094
+
3095
+
3096
+
3097
+
3098
+
3099
+ <h4 class="name" id="lastSeen"><span class="type-signature"></span>lastSeen<span class="type-signature"> :number</span></h4>
3100
+
3101
+
3102
+
3103
+
3104
+ <div class="description">
3105
+ <p>Timestamp of last interaction</p>
3106
+ </div>
3107
+
3108
+
3109
+
3110
+ <h5>Type:</h5>
3111
+ <ul>
3112
+ <li>
3113
+
3114
+ <span class="param-type">number</span>
3115
+
3116
+
3117
+ </li>
3118
+ </ul>
3119
+
3120
+
3121
+
3122
+
3123
+
3124
+ <dl class="details">
3125
+
3126
+
3127
+
3128
+
3129
+
3130
+
3131
+
3132
+
3133
+
3134
+
3135
+
3136
+
3137
+
3138
+
3139
+
3140
+
3141
+
3142
+
3143
+
3144
+
3145
+
3146
+
3147
+
3148
+
3149
+
3150
+
3151
+ <dt class="tag-source">Source:</dt>
3152
+ <dd class="tag-source"><ul class="dummy"><li>
3153
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line66">line 66</a>
3154
+ </li></ul></dd>
3155
+
3156
+
3157
+
3158
+
3159
+
3160
+
3161
+
3162
+ </dl>
3163
+
3164
+
3165
+
3166
+
3167
+
3168
+
3169
+
3170
+
3171
+ <h4 class="name" id="metadata"><span class="type-signature"></span>metadata<span class="type-signature"> :Object</span></h4>
3172
+
3173
+
3174
+
3175
+
3176
+ <div class="description">
3177
+ <p>Additional metadata</p>
3178
+ </div>
3179
+
3180
+
3181
+
3182
+ <h5>Type:</h5>
3183
+ <ul>
3184
+ <li>
3185
+
3186
+ <span class="param-type">Object</span>
3187
+
3188
+
3189
+ </li>
3190
+ </ul>
3191
+
3192
+
3193
+
3194
+
3195
+
3196
+ <dl class="details">
3197
+
3198
+
3199
+
3200
+
3201
+
3202
+
3203
+
3204
+
3205
+
3206
+
3207
+
3208
+
3209
+
3210
+
3211
+
3212
+
3213
+
3214
+
3215
+
3216
+
3217
+
3218
+
3219
+
3220
+
3221
+
3222
+
3223
+ <dt class="tag-source">Source:</dt>
3224
+ <dd class="tag-source"><ul class="dummy"><li>
3225
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line90">line 90</a>
3226
+ </li></ul></dd>
3227
+
3228
+
3229
+
3230
+
3231
+
3232
+
3233
+
3234
+ </dl>
3235
+
3236
+
3237
+
3238
+
3239
+
3240
+
3241
+
3242
+
3243
+ <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
3244
+
3245
+
3246
+
3247
+
3248
+ <div class="description">
3249
+ <p>Display name</p>
3250
+ </div>
3251
+
3252
+
3253
+
3254
+ <h5>Type:</h5>
3255
+ <ul>
3256
+ <li>
3257
+
3258
+ <span class="param-type">string</span>
3259
+
3260
+
3261
+ </li>
3262
+ </ul>
3263
+
3264
+
3265
+
3266
+
3267
+
3268
+ <dl class="details">
3269
+
3270
+
3271
+
3272
+
3273
+
3274
+
3275
+
3276
+
3277
+
3278
+
3279
+
3280
+
3281
+
3282
+
3283
+
3284
+
3285
+
3286
+
3287
+
3288
+
3289
+
3290
+
3291
+
3292
+
3293
+
3294
+
3295
+ <dt class="tag-source">Source:</dt>
3296
+ <dd class="tag-source"><ul class="dummy"><li>
3297
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line48">line 48</a>
3298
+ </li></ul></dd>
3299
+
3300
+
3301
+
3302
+
3303
+
3304
+
3305
+
3306
+ </dl>
3307
+
3308
+
3309
+
3310
+
3311
+
3312
+
3313
+
3314
+
3315
+ <h4 class="name" id="publicKey"><span class="type-signature"></span>publicKey<span class="type-signature"> :Uint8Array|null</span></h4>
3316
+
3317
+
3318
+
3319
+
3320
+ <div class="description">
3321
+ <p>Peer's public key</p>
3322
+ </div>
3323
+
3324
+
3325
+
3326
+ <h5>Type:</h5>
3327
+ <ul>
3328
+ <li>
3329
+
3330
+ <span class="param-type">Uint8Array</span>
3331
+ |
3332
+
3333
+ <span class="param-type">null</span>
3334
+
3335
+
3336
+ </li>
3337
+ </ul>
3338
+
3339
+
3340
+
3341
+
3342
+
3343
+ <dl class="details">
3344
+
3345
+
3346
+
3347
+
3348
+
3349
+
3350
+
3351
+
3352
+
3353
+
3354
+
3355
+
3356
+
3357
+
3358
+
3359
+
3360
+
3361
+
3362
+
3363
+
3364
+
3365
+
3366
+
3367
+
3368
+
3369
+
3370
+ <dt class="tag-source">Source:</dt>
3371
+ <dd class="tag-source"><ul class="dummy"><li>
3372
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line42">line 42</a>
3373
+ </li></ul></dd>
3374
+
3375
+
3376
+
3377
+
3378
+
3379
+
3380
+
3381
+ </dl>
3382
+
3383
+
3384
+
3385
+
3386
+
3387
+
3388
+
3389
+
3390
+ <h4 class="name" id="rssi"><span class="type-signature"></span>rssi<span class="type-signature"> :number</span></h4>
3391
+
3392
+
3393
+
3394
+
3395
+ <div class="description">
3396
+ <p>Received signal strength indicator</p>
3397
+ </div>
3398
+
3399
+
3400
+
3401
+ <h5>Type:</h5>
3402
+ <ul>
3403
+ <li>
3404
+
3405
+ <span class="param-type">number</span>
3406
+
3407
+
3408
+ </li>
3409
+ </ul>
3410
+
3411
+
3412
+
3413
+
3414
+
3415
+ <dl class="details">
3416
+
3417
+
3418
+
3419
+
3420
+
3421
+
3422
+
3423
+
3424
+
3425
+
3426
+
3427
+
3428
+
3429
+
3430
+
3431
+
3432
+
3433
+
3434
+
3435
+
3436
+
3437
+
3438
+
3439
+
3440
+
3441
+
3442
+ <dt class="tag-source">Source:</dt>
3443
+ <dd class="tag-source"><ul class="dummy"><li>
3444
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line54">line 54</a>
3445
+ </li></ul></dd>
3446
+
3447
+
3448
+
3449
+
3450
+
3451
+
3452
+
3453
+ </dl>
3454
+
3455
+
3456
+
3457
+
3458
+
3459
+
3460
+
3461
+
3462
+
3463
+
3464
+ <h3 class="subsection-title">Methods</h3>
3465
+
3466
+
3467
+
3468
+
3469
+
3470
+
3471
+
3472
+ <h4 class="name" id="clone"><span class="type-signature"></span>clone<span class="signature">()</span><span class="type-signature"> &rarr; {Peer}</span></h4>
3473
+
3474
+
3475
+
3476
+
3477
+
3478
+
3479
+ <div class="description">
3480
+ <p>Creates a copy of the peer</p>
3481
+ </div>
3482
+
3483
+
3484
+
3485
+
3486
+
3487
+
3488
+
3489
+
3490
+
3491
+
3492
+
3493
+
3494
+
3495
+ <dl class="details">
3496
+
3497
+
3498
+
3499
+
3500
+
3501
+
3502
+
3503
+
3504
+
3505
+
3506
+
3507
+
3508
+
3509
+
3510
+
3511
+
3512
+
3513
+
3514
+
3515
+
3516
+
3517
+
3518
+
3519
+
3520
+
3521
+
3522
+ <dt class="tag-source">Source:</dt>
3523
+ <dd class="tag-source"><ul class="dummy"><li>
3524
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line183">line 183</a>
3525
+ </li></ul></dd>
3526
+
3527
+
3528
+
3529
+
3530
+
3531
+
3532
+
3533
+ </dl>
3534
+
3535
+
3536
+
3537
+
3538
+
3539
+
3540
+
3541
+
3542
+
3543
+
3544
+
3545
+
3546
+
3547
+
3548
+
3549
+ <h5>Returns:</h5>
3550
+
3551
+
3552
+ <div class="param-desc">
3553
+ <p>New Peer instance</p>
3554
+ </div>
3555
+
3556
+
3557
+
3558
+ <dl>
3559
+ <dt>
3560
+ Type
3561
+ </dt>
3562
+ <dd>
3563
+
3564
+ <span class="param-type">Peer</span>
3565
+
3566
+
3567
+ </dd>
3568
+ </dl>
3569
+
3570
+
3571
+
3572
+
3573
+
3574
+
3575
+
3576
+
3577
+
3578
+
3579
+
3580
+
3581
+
3582
+ <h4 class="name" id="getAge"><span class="type-signature"></span>getAge<span class="signature">()</span><span class="type-signature"> &rarr; {number}</span></h4>
3583
+
3584
+
3585
+
3586
+
3587
+
3588
+
3589
+ <div class="description">
3590
+ <p>Gets the age of the peer since last seen</p>
3591
+ </div>
3592
+
3593
+
3594
+
3595
+
3596
+
3597
+
3598
+
3599
+
3600
+
3601
+
3602
+
3603
+
3604
+
3605
+ <dl class="details">
3606
+
3607
+
3608
+
3609
+
3610
+
3611
+
3612
+
3613
+
3614
+
3615
+
3616
+
3617
+
3618
+
3619
+
3620
+
3621
+
3622
+
3623
+
3624
+
3625
+
3626
+
3627
+
3628
+
3629
+
3630
+
3631
+
3632
+ <dt class="tag-source">Source:</dt>
3633
+ <dd class="tag-source"><ul class="dummy"><li>
3634
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line166">line 166</a>
3635
+ </li></ul></dd>
3636
+
3637
+
3638
+
3639
+
3640
+
3641
+
3642
+
3643
+ </dl>
3644
+
3645
+
3646
+
3647
+
3648
+
3649
+
3650
+
3651
+
3652
+
3653
+
3654
+
3655
+
3656
+
3657
+
3658
+
3659
+ <h5>Returns:</h5>
3660
+
3661
+
3662
+ <div class="param-desc">
3663
+ <p>Milliseconds since last seen</p>
3664
+ </div>
3665
+
3666
+
3667
+
3668
+ <dl>
3669
+ <dt>
3670
+ Type
3671
+ </dt>
3672
+ <dd>
3673
+
3674
+ <span class="param-type">number</span>
3675
+
3676
+
3677
+ </dd>
3678
+ </dl>
3679
+
3680
+
3681
+
3682
+
3683
+
3684
+
3685
+
3686
+
3687
+
3688
+
3689
+
3690
+
3691
+
3692
+ <h4 class="name" id="isConnected"><span class="type-signature"></span>isConnected<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
3693
+
3694
+
3695
+
3696
+
3697
+
3698
+
3699
+ <div class="description">
3700
+ <p>Checks if peer is currently connected</p>
3701
+ </div>
3702
+
3703
+
3704
+
3705
+
3706
+
3707
+
3708
+
3709
+
3710
+
3711
+
3712
+
3713
+
3714
+
3715
+ <dl class="details">
3716
+
3717
+
3718
+
3719
+
3720
+
3721
+
3722
+
3723
+
3724
+
3725
+
3726
+
3727
+
3728
+
3729
+
3730
+
3731
+
3732
+
3733
+
3734
+
3735
+
3736
+
3737
+
3738
+
3739
+
3740
+
3741
+
3742
+ <dt class="tag-source">Source:</dt>
3743
+ <dd class="tag-source"><ul class="dummy"><li>
3744
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line97">line 97</a>
3745
+ </li></ul></dd>
3746
+
3747
+
3748
+
3749
+
3750
+
3751
+
3752
+
3753
+ </dl>
3754
+
3755
+
3756
+
3757
+
3758
+
3759
+
3760
+
3761
+
3762
+
3763
+
3764
+
3765
+
3766
+
3767
+
3768
+
3769
+ <h5>Returns:</h5>
3770
+
3771
+
3772
+ <div class="param-desc">
3773
+ <p>True if connected</p>
3774
+ </div>
3775
+
3776
+
3777
+
3778
+ <dl>
3779
+ <dt>
3780
+ Type
3781
+ </dt>
3782
+ <dd>
3783
+
3784
+ <span class="param-type">boolean</span>
3785
+
3786
+
3787
+ </dd>
3788
+ </dl>
3789
+
3790
+
3791
+
3792
+
3793
+
3794
+
3795
+
3796
+
3797
+
3798
+
3799
+
3800
+
3801
+
3802
+ <h4 class="name" id="isDirect"><span class="type-signature"></span>isDirect<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
3803
+
3804
+
3805
+
3806
+
3807
+
3808
+
3809
+ <div class="description">
3810
+ <p>Checks if peer is directly connected (not via relay)</p>
3811
+ </div>
3812
+
3813
+
3814
+
3815
+
3816
+
3817
+
3818
+
3819
+
3820
+
3821
+
3822
+
3823
+
3824
+
3825
+ <dl class="details">
3826
+
3827
+
3828
+
3829
+
3830
+
3831
+
3832
+
3833
+
3834
+
3835
+
3836
+
3837
+
3838
+
3839
+
3840
+
3841
+
3842
+
3843
+
3844
+
3845
+
3846
+
3847
+
3848
+
3849
+
3850
+
3851
+
3852
+ <dt class="tag-source">Source:</dt>
3853
+ <dd class="tag-source"><ul class="dummy"><li>
3854
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line116">line 116</a>
3855
+ </li></ul></dd>
3856
+
3857
+
3858
+
3859
+
3860
+
3861
+
3862
+
3863
+ </dl>
3864
+
3865
+
3866
+
3867
+
3868
+
3869
+
3870
+
3871
+
3872
+
3873
+
3874
+
3875
+
3876
+
3877
+
3878
+
3879
+ <h5>Returns:</h5>
3880
+
3881
+
3882
+ <div class="param-desc">
3883
+ <p>True if directly connected</p>
3884
+ </div>
3885
+
3886
+
3887
+
3888
+ <dl>
3889
+ <dt>
3890
+ Type
3891
+ </dt>
3892
+ <dd>
3893
+
3894
+ <span class="param-type">boolean</span>
3895
+
3896
+
3897
+ </dd>
3898
+ </dl>
3899
+
3900
+
3901
+
3902
+
3903
+
3904
+
3905
+
3906
+
3907
+
3908
+
3909
+
3910
+
3911
+
3912
+ <h4 class="name" id="isSecured"><span class="type-signature"></span>isSecured<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
3913
+
3914
+
3915
+
3916
+
3917
+
3918
+
3919
+ <div class="description">
3920
+ <p>Checks if peer has a secure session</p>
3921
+ </div>
3922
+
3923
+
3924
+
3925
+
3926
+
3927
+
3928
+
3929
+
3930
+
3931
+
3932
+
3933
+
3934
+
3935
+ <dl class="details">
3936
+
3937
+
3938
+
3939
+
3940
+
3941
+
3942
+
3943
+
3944
+
3945
+
3946
+
3947
+
3948
+
3949
+
3950
+
3951
+
3952
+
3953
+
3954
+
3955
+
3956
+
3957
+
3958
+
3959
+
3960
+
3961
+
3962
+ <dt class="tag-source">Source:</dt>
3963
+ <dd class="tag-source"><ul class="dummy"><li>
3964
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line107">line 107</a>
3965
+ </li></ul></dd>
3966
+
3967
+
3968
+
3969
+
3970
+
3971
+
3972
+
3973
+ </dl>
3974
+
3975
+
3976
+
3977
+
3978
+
3979
+
3980
+
3981
+
3982
+
3983
+
3984
+
3985
+
3986
+
3987
+
3988
+
3989
+ <h5>Returns:</h5>
3990
+
3991
+
3992
+ <div class="param-desc">
3993
+ <p>True if secured</p>
3994
+ </div>
3995
+
3996
+
3997
+
3998
+ <dl>
3999
+ <dt>
4000
+ Type
4001
+ </dt>
4002
+ <dd>
4003
+
4004
+ <span class="param-type">boolean</span>
4005
+
4006
+
4007
+ </dd>
4008
+ </dl>
4009
+
4010
+
4011
+
4012
+
4013
+
4014
+
4015
+
4016
+
4017
+
4018
+
4019
+
4020
+
4021
+
4022
+ <h4 class="name" id="isStale"><span class="type-signature"></span>isStale<span class="signature">(maxAge)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
4023
+
4024
+
4025
+
4026
+
4027
+
4028
+
4029
+ <div class="description">
4030
+ <p>Checks if the peer has gone stale</p>
4031
+ </div>
4032
+
4033
+
4034
+
4035
+
4036
+
4037
+
4038
+
4039
+
4040
+
4041
+ <h5>Parameters:</h5>
4042
+
4043
+
4044
+ <table class="params">
4045
+ <thead>
4046
+ <tr>
4047
+
4048
+ <th>Name</th>
4049
+
4050
+
4051
+ <th>Type</th>
4052
+
4053
+
4054
+
4055
+
4056
+
4057
+ <th class="last">Description</th>
4058
+ </tr>
4059
+ </thead>
4060
+
4061
+ <tbody>
4062
+
4063
+
4064
+ <tr>
4065
+
4066
+ <td class="name"><code>maxAge</code></td>
4067
+
4068
+
4069
+ <td class="type">
4070
+
4071
+
4072
+ <span class="param-type">number</span>
4073
+
4074
+
4075
+
4076
+ </td>
4077
+
4078
+
4079
+
4080
+
4081
+
4082
+ <td class="description last"><p>Maximum age in milliseconds</p></td>
4083
+ </tr>
4084
+
4085
+
4086
+ </tbody>
4087
+ </table>
4088
+
4089
+
4090
+
4091
+
4092
+
4093
+
4094
+ <dl class="details">
4095
+
4096
+
4097
+
4098
+
4099
+
4100
+
4101
+
4102
+
4103
+
4104
+
4105
+
4106
+
4107
+
4108
+
4109
+
4110
+
4111
+
4112
+
4113
+
4114
+
4115
+
4116
+
4117
+
4118
+
4119
+
4120
+
4121
+ <dt class="tag-source">Source:</dt>
4122
+ <dd class="tag-source"><ul class="dummy"><li>
4123
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line175">line 175</a>
4124
+ </li></ul></dd>
4125
+
4126
+
4127
+
4128
+
4129
+
4130
+
4131
+
4132
+ </dl>
4133
+
4134
+
4135
+
4136
+
4137
+
4138
+
4139
+
4140
+
4141
+
4142
+
4143
+
4144
+
4145
+
4146
+
4147
+
4148
+ <h5>Returns:</h5>
4149
+
4150
+
4151
+ <div class="param-desc">
4152
+ <p>True if stale</p>
4153
+ </div>
4154
+
4155
+
4156
+
4157
+ <dl>
4158
+ <dt>
4159
+ Type
4160
+ </dt>
4161
+ <dd>
4162
+
4163
+ <span class="param-type">boolean</span>
4164
+
4165
+
4166
+ </dd>
4167
+ </dl>
4168
+
4169
+
4170
+
4171
+
4172
+
4173
+
4174
+
4175
+
4176
+
4177
+
4178
+
4179
+
4180
+
4181
+ <h4 class="name" id="markSecured"><span class="type-signature"></span>markSecured<span class="signature">()</span><span class="type-signature"></span></h4>
4182
+
4183
+
4184
+
4185
+
4186
+
4187
+
4188
+ <div class="description">
4189
+ <p>Marks the peer as having a secure session</p>
4190
+ </div>
4191
+
4192
+
4193
+
4194
+
4195
+
4196
+
4197
+
4198
+
4199
+
4200
+
4201
+
4202
+
4203
+
4204
+ <dl class="details">
4205
+
4206
+
4207
+
4208
+
4209
+
4210
+
4211
+
4212
+
4213
+
4214
+
4215
+
4216
+
4217
+
4218
+
4219
+
4220
+
4221
+
4222
+
4223
+
4224
+
4225
+
4226
+
4227
+
4228
+
4229
+
4230
+
4231
+ <dt class="tag-source">Source:</dt>
4232
+ <dd class="tag-source"><ul class="dummy"><li>
4233
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line145">line 145</a>
4234
+ </li></ul></dd>
4235
+
4236
+
4237
+
4238
+
4239
+
4240
+
4241
+
4242
+ </dl>
4243
+
4244
+
4245
+
4246
+
4247
+
4248
+
4249
+
4250
+
4251
+
4252
+
4253
+
4254
+
4255
+
4256
+
4257
+
4258
+
4259
+
4260
+
4261
+
4262
+
4263
+
4264
+
4265
+
4266
+
4267
+
4268
+
4269
+ <h4 class="name" id="setConnectionState"><span class="type-signature"></span>setConnectionState<span class="signature">(state)</span><span class="type-signature"></span></h4>
4270
+
4271
+
4272
+
4273
+
4274
+
4275
+
4276
+ <div class="description">
4277
+ <p>Updates the connection state</p>
4278
+ </div>
4279
+
4280
+
4281
+
4282
+
4283
+
4284
+
4285
+
4286
+
4287
+
4288
+ <h5>Parameters:</h5>
4289
+
4290
+
4291
+ <table class="params">
4292
+ <thead>
4293
+ <tr>
4294
+
4295
+ <th>Name</th>
4296
+
4297
+
4298
+ <th>Type</th>
4299
+
4300
+
4301
+
4302
+
4303
+
4304
+ <th class="last">Description</th>
4305
+ </tr>
4306
+ </thead>
4307
+
4308
+ <tbody>
4309
+
4310
+
4311
+ <tr>
4312
+
4313
+ <td class="name"><code>state</code></td>
4314
+
4315
+
4316
+ <td class="type">
4317
+
4318
+
4319
+ <span class="param-type">string</span>
4320
+
4321
+
4322
+
4323
+ </td>
4324
+
4325
+
4326
+
4327
+
4328
+
4329
+ <td class="description last"><p>New connection state</p></td>
4330
+ </tr>
4331
+
4332
+
4333
+ </tbody>
4334
+ </table>
4335
+
4336
+
4337
+
4338
+
4339
+
4340
+
4341
+ <dl class="details">
4342
+
4343
+
4344
+
4345
+
4346
+
4347
+
4348
+
4349
+
4350
+
4351
+
4352
+
4353
+
4354
+
4355
+
4356
+
4357
+
4358
+
4359
+
4360
+
4361
+
4362
+
4363
+
4364
+
4365
+
4366
+
4367
+
4368
+ <dt class="tag-source">Source:</dt>
4369
+ <dd class="tag-source"><ul class="dummy"><li>
4370
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line132">line 132</a>
4371
+ </li></ul></dd>
4372
+
4373
+
4374
+
4375
+
4376
+
4377
+
4378
+
4379
+ </dl>
4380
+
4381
+
4382
+
4383
+
4384
+
4385
+
4386
+
4387
+
4388
+
4389
+
4390
+
4391
+
4392
+
4393
+
4394
+
4395
+
4396
+
4397
+
4398
+
4399
+
4400
+
4401
+
4402
+
4403
+
4404
+
4405
+
4406
+ <h4 class="name" id="setPublicKey"><span class="type-signature"></span>setPublicKey<span class="signature">(publicKey)</span><span class="type-signature"></span></h4>
4407
+
4408
+
4409
+
4410
+
4411
+
4412
+
4413
+ <div class="description">
4414
+ <p>Updates the public key</p>
4415
+ </div>
4416
+
4417
+
4418
+
4419
+
4420
+
4421
+
4422
+
4423
+
4424
+
4425
+ <h5>Parameters:</h5>
4426
+
4427
+
4428
+ <table class="params">
4429
+ <thead>
4430
+ <tr>
4431
+
4432
+ <th>Name</th>
4433
+
4434
+
4435
+ <th>Type</th>
4436
+
4437
+
4438
+
4439
+
4440
+
4441
+ <th class="last">Description</th>
4442
+ </tr>
4443
+ </thead>
4444
+
4445
+ <tbody>
4446
+
4447
+
4448
+ <tr>
4449
+
4450
+ <td class="name"><code>publicKey</code></td>
4451
+
4452
+
4453
+ <td class="type">
4454
+
4455
+
4456
+ <span class="param-type">Uint8Array</span>
4457
+
4458
+
4459
+
4460
+ </td>
4461
+
4462
+
4463
+
4464
+
4465
+
4466
+ <td class="description last"><p>New public key</p></td>
4467
+ </tr>
4468
+
4469
+
4470
+ </tbody>
4471
+ </table>
4472
+
4473
+
4474
+
4475
+
4476
+
4477
+
4478
+ <dl class="details">
4479
+
4480
+
4481
+
4482
+
4483
+
4484
+
4485
+
4486
+
4487
+
4488
+
4489
+
4490
+
4491
+
4492
+
4493
+
4494
+
4495
+
4496
+
4497
+
4498
+
4499
+
4500
+
4501
+
4502
+
4503
+
4504
+
4505
+ <dt class="tag-source">Source:</dt>
4506
+ <dd class="tag-source"><ul class="dummy"><li>
4507
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line155">line 155</a>
4508
+ </li></ul></dd>
4509
+
4510
+
4511
+
4512
+
4513
+
4514
+
4515
+
4516
+ </dl>
4517
+
4518
+
4519
+
4520
+
4521
+
4522
+
4523
+
4524
+
4525
+
4526
+
4527
+
4528
+
4529
+
4530
+
4531
+
4532
+
4533
+
4534
+
4535
+
4536
+
4537
+
4538
+
4539
+
4540
+
4541
+
4542
+
4543
+ <h4 class="name" id="toJSON"><span class="type-signature"></span>toJSON<span class="signature">()</span><span class="type-signature"> &rarr; {Object}</span></h4>
4544
+
4545
+
4546
+
4547
+
4548
+
4549
+
4550
+ <div class="description">
4551
+ <p>Converts peer to a JSON-serializable object</p>
4552
+ </div>
4553
+
4554
+
4555
+
4556
+
4557
+
4558
+
4559
+
4560
+
4561
+
4562
+
4563
+
4564
+
4565
+
4566
+ <dl class="details">
4567
+
4568
+
4569
+
4570
+
4571
+
4572
+
4573
+
4574
+
4575
+
4576
+
4577
+
4578
+
4579
+
4580
+
4581
+
4582
+
4583
+
4584
+
4585
+
4586
+
4587
+
4588
+
4589
+
4590
+
4591
+
4592
+
4593
+ <dt class="tag-source">Source:</dt>
4594
+ <dd class="tag-source"><ul class="dummy"><li>
4595
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line203">line 203</a>
4596
+ </li></ul></dd>
4597
+
4598
+
4599
+
4600
+
4601
+
4602
+
4603
+
4604
+ </dl>
4605
+
4606
+
4607
+
4608
+
4609
+
4610
+
4611
+
4612
+
4613
+
4614
+
4615
+
4616
+
4617
+
4618
+
4619
+
4620
+ <h5>Returns:</h5>
4621
+
4622
+
4623
+ <div class="param-desc">
4624
+ <p>JSON representation</p>
4625
+ </div>
4626
+
4627
+
4628
+
4629
+ <dl>
4630
+ <dt>
4631
+ Type
4632
+ </dt>
4633
+ <dd>
4634
+
4635
+ <span class="param-type">Object</span>
4636
+
4637
+
4638
+ </dd>
4639
+ </dl>
4640
+
4641
+
4642
+
4643
+
4644
+
4645
+
4646
+
4647
+
4648
+
4649
+
4650
+
4651
+
4652
+
4653
+ <h4 class="name" id="updateLastSeen"><span class="type-signature"></span>updateLastSeen<span class="signature">(timestamp<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
4654
+
4655
+
4656
+
4657
+
4658
+
4659
+
4660
+ <div class="description">
4661
+ <p>Updates the last seen timestamp</p>
4662
+ </div>
4663
+
4664
+
4665
+
4666
+
4667
+
4668
+
4669
+
4670
+
4671
+
4672
+ <h5>Parameters:</h5>
4673
+
4674
+
4675
+ <table class="params">
4676
+ <thead>
4677
+ <tr>
4678
+
4679
+ <th>Name</th>
4680
+
4681
+
4682
+ <th>Type</th>
4683
+
4684
+
4685
+ <th>Attributes</th>
4686
+
4687
+
4688
+
4689
+
4690
+ <th class="last">Description</th>
4691
+ </tr>
4692
+ </thead>
4693
+
4694
+ <tbody>
4695
+
4696
+
4697
+ <tr>
4698
+
4699
+ <td class="name"><code>timestamp</code></td>
4700
+
4701
+
4702
+ <td class="type">
4703
+
4704
+
4705
+ <span class="param-type">number</span>
4706
+
4707
+
4708
+
4709
+ </td>
4710
+
4711
+
4712
+ <td class="attributes">
4713
+
4714
+ &lt;optional><br>
4715
+
4716
+
4717
+
4718
+
4719
+
4720
+ </td>
4721
+
4722
+
4723
+
4724
+
4725
+ <td class="description last"><p>Custom timestamp, defaults to now</p></td>
4726
+ </tr>
4727
+
4728
+
4729
+ </tbody>
4730
+ </table>
4731
+
4732
+
4733
+
4734
+
4735
+
4736
+
4737
+ <dl class="details">
4738
+
4739
+
4740
+
4741
+
4742
+
4743
+
4744
+
4745
+
4746
+
4747
+
4748
+
4749
+
4750
+
4751
+
4752
+
4753
+
4754
+
4755
+
4756
+
4757
+
4758
+
4759
+
4760
+
4761
+
4762
+
4763
+
4764
+ <dt class="tag-source">Source:</dt>
4765
+ <dd class="tag-source"><ul class="dummy"><li>
4766
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line124">line 124</a>
4767
+ </li></ul></dd>
4768
+
4769
+
4770
+
4771
+
4772
+
4773
+
4774
+
4775
+ </dl>
4776
+
4777
+
4778
+
4779
+
4780
+
4781
+
4782
+
4783
+
4784
+
4785
+
4786
+
4787
+
4788
+
4789
+
4790
+
4791
+
4792
+
4793
+
4794
+
4795
+
4796
+
4797
+
4798
+
4799
+
4800
+
4801
+
4802
+ <h4 class="name" id=".fromJSON"><span class="type-signature">(static) </span>fromJSON<span class="signature">(data)</span><span class="type-signature"> &rarr; {Peer}</span></h4>
4803
+
4804
+
4805
+
4806
+
4807
+
4808
+
4809
+ <div class="description">
4810
+ <p>Creates a Peer from JSON data</p>
4811
+ </div>
4812
+
4813
+
4814
+
4815
+
4816
+
4817
+
4818
+
4819
+
4820
+
4821
+ <h5>Parameters:</h5>
4822
+
4823
+
4824
+ <table class="params">
4825
+ <thead>
4826
+ <tr>
4827
+
4828
+ <th>Name</th>
4829
+
4830
+
4831
+ <th>Type</th>
4832
+
4833
+
4834
+
4835
+
4836
+
4837
+ <th class="last">Description</th>
4838
+ </tr>
4839
+ </thead>
4840
+
4841
+ <tbody>
4842
+
4843
+
4844
+ <tr>
4845
+
4846
+ <td class="name"><code>data</code></td>
4847
+
4848
+
4849
+ <td class="type">
4850
+
4851
+
4852
+ <span class="param-type">Object</span>
4853
+
4854
+
4855
+
4856
+ </td>
4857
+
4858
+
4859
+
4860
+
4861
+
4862
+ <td class="description last"><p>JSON data</p></td>
4863
+ </tr>
4864
+
4865
+
4866
+ </tbody>
4867
+ </table>
4868
+
4869
+
4870
+
4871
+
4872
+
4873
+
4874
+ <dl class="details">
4875
+
4876
+
4877
+
4878
+
4879
+
4880
+
4881
+
4882
+
4883
+
4884
+
4885
+
4886
+
4887
+
4888
+
4889
+
4890
+
4891
+
4892
+
4893
+
4894
+
4895
+
4896
+
4897
+
4898
+
4899
+
4900
+
4901
+ <dt class="tag-source">Source:</dt>
4902
+ <dd class="tag-source"><ul class="dummy"><li>
4903
+ <a href="mesh_peer_Peer.js.html">mesh/peer/Peer.js</a>, <a href="mesh_peer_Peer.js.html#line225">line 225</a>
4904
+ </li></ul></dd>
4905
+
4906
+
4907
+
4908
+
4909
+
4910
+
4911
+
4912
+ </dl>
4913
+
4914
+
4915
+
4916
+
4917
+
4918
+
4919
+
4920
+
4921
+
4922
+
4923
+
4924
+
4925
+
4926
+
4927
+
4928
+ <h5>Returns:</h5>
4929
+
4930
+
4931
+ <div class="param-desc">
4932
+ <p>New Peer instance</p>
4933
+ </div>
4934
+
4935
+
4936
+
4937
+ <dl>
4938
+ <dt>
4939
+ Type
4940
+ </dt>
4941
+ <dd>
4942
+
4943
+ <span class="param-type">Peer</span>
4944
+
4945
+
4946
+ </dd>
4947
+ </dl>
4948
+
4949
+
4950
+
4951
+
4952
+
4953
+
4954
+
4955
+
4956
+
4957
+
4958
+
4959
+
4960
+
4961
+ </article>
4962
+
4963
+ </section>
4964
+
4965
+
4966
+
4967
+
4968
+ </div>
4969
+
4970
+ <nav>
4971
+ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-audio_buffer.html">audio/buffer</a></li><li><a href="module-audio_buffer_FrameBuffer.html">audio/buffer/FrameBuffer</a></li><li><a href="module-audio_buffer_JitterBuffer.html">audio/buffer/JitterBuffer</a></li><li><a href="module-audio_codec.html">audio/codec</a></li><li><a href="module-audio_codec_LC3Codec.html">audio/codec/LC3Codec</a></li><li><a href="module-audio_codec_LC3Decoder.html">audio/codec/LC3Decoder</a></li><li><a href="module-audio_codec_LC3Encoder.html">audio/codec/LC3Encoder</a></li><li><a href="module-audio_session.html">audio/session</a></li><li><a href="module-audio_session_AudioSession.html">audio/session/AudioSession</a></li><li><a href="module-audio_session_VoiceMessage.html">audio/session/VoiceMessage</a></li><li><a href="module-audio_transport.html">audio/transport</a></li><li><a href="module-audio_transport_AudioFragmenter.html">audio/transport/AudioFragmenter</a></li><li><a href="module-audio_transport_AudioFramer.html">audio/transport/AudioFramer</a></li><li><a href="module-constants.html">constants</a></li><li><a href="module-constants_audio.html">constants/audio</a></li><li><a href="module-constants_ble.html">constants/ble</a></li><li><a href="module-constants_crypto.html">constants/crypto</a></li><li><a href="module-constants_errors.html">constants/errors</a></li><li><a href="module-constants_events.html">constants/events</a></li><li><a href="module-constants_protocol.html">constants/protocol</a></li><li><a href="module-crypto.html">crypto</a></li><li><a href="module-crypto_aead.html">crypto/aead</a></li><li><a href="module-crypto_chacha20.html">crypto/chacha20</a></li><li><a href="module-crypto_hkdf.html">crypto/hkdf</a></li><li><a href="module-crypto_hmac.html">crypto/hmac</a></li><li><a href="module-crypto_keys.html">crypto/keys</a></li><li><a href="module-crypto_keys_KeyManager.html">crypto/keys/KeyManager</a></li><li><a href="module-crypto_keys_KeyPair.html">crypto/keys/KeyPair</a></li><li><a href="module-crypto_keys_SecureStorage.html">crypto/keys/SecureStorage</a></li><li><a href="module-crypto_noise.html">crypto/noise</a></li><li><a href="module-crypto_noise_handshake.html">crypto/noise/handshake</a></li><li><a href="module-crypto_noise_session.html">crypto/noise/session</a></li><li><a href="module-crypto_noise_state.html">crypto/noise/state</a></li><li><a href="module-crypto_poly1305.html">crypto/poly1305</a></li><li><a href="module-crypto_sha256.html">crypto/sha256</a></li><li><a href="module-crypto_x25519.html">crypto/x25519</a></li><li><a href="module-errors.html">errors</a></li><li><a href="module-errors_AudioError.html">errors/AudioError</a></li><li><a href="module-errors_ConnectionError.html">errors/ConnectionError</a></li><li><a href="module-errors_CryptoError.html">errors/CryptoError</a></li><li><a href="module-errors_HandshakeError.html">errors/HandshakeError</a></li><li><a href="module-errors_MeshError.html">errors/MeshError</a></li><li><a href="module-errors_MessageError.html">errors/MessageError</a></li><li><a href="module-errors_ValidationError.html">errors/ValidationError</a></li><li><a href="module-hooks.html">hooks</a></li><li><a href="module-hooks_AppStateManager.html">hooks/AppStateManager</a></li><li><a href="module-hooks_useMesh.html">hooks/useMesh</a></li><li><a href="module-hooks_useMessages.html">hooks/useMessages</a></li><li><a href="module-hooks_usePeers.html">hooks/usePeers</a></li><li><a href="module-mesh.html">mesh</a></li><li><a href="module-mesh_dedup.html">mesh/dedup</a></li><li><a href="module-mesh_dedup_BloomFilter.html">mesh/dedup/BloomFilter</a></li><li><a href="module-mesh_dedup_DedupManager.html">mesh/dedup/DedupManager</a></li><li><a href="module-mesh_dedup_MessageCache.html">mesh/dedup/MessageCache</a></li><li><a href="module-mesh_fragment.html">mesh/fragment</a></li><li><a href="module-mesh_fragment_Assembler.html">mesh/fragment/Assembler</a></li><li><a href="module-mesh_fragment_Fragmenter.html">mesh/fragment/Fragmenter</a></li><li><a href="module-mesh_peer.html">mesh/peer</a></li><li><a href="module-mesh_peer_Peer.html">mesh/peer/Peer</a></li><li><a href="module-mesh_peer_PeerDiscovery.html">mesh/peer/PeerDiscovery</a></li><li><a href="module-mesh_peer_PeerManager.html">mesh/peer/PeerManager</a></li><li><a href="module-mesh_router.html">mesh/router</a></li><li><a href="module-mesh_router_MessageRouter.html">mesh/router/MessageRouter</a></li><li><a href="module-mesh_router_PathFinder.html">mesh/router/PathFinder</a></li><li><a href="module-mesh_router_RouteTable.html">mesh/router/RouteTable</a></li><li><a href="module-protocol.html">protocol</a></li><li><a href="module-protocol_crc32.html">protocol/crc32</a></li><li><a href="module-protocol_deserializer.html">protocol/deserializer</a></li><li><a href="module-protocol_header.html">protocol/header</a></li><li><a href="module-protocol_message.html">protocol/message</a></li><li><a href="module-protocol_serializer.html">protocol/serializer</a></li><li><a href="module-protocol_validator.html">protocol/validator</a></li><li><a href="module-rn-ble-mesh.html">rn-ble-mesh</a></li><li><a href="module-service.html">service</a></li><li><a href="module-service_HandshakeManager.html">service/HandshakeManager</a></li><li><a href="module-service_MeshService.html">service/MeshService</a></li><li><a href="module-service_SessionManager.html">service/SessionManager</a></li><li><a href="module-service_audio.html">service/audio</a></li><li><a href="module-service_audio_AudioManager.html">service/audio/AudioManager</a></li><li><a href="module-service_text.html">service/text</a></li><li><a href="module-service_text_TextManager.html">service/text/TextManager</a></li><li><a href="module-service_text_broadcast.html">service/text/broadcast</a></li><li><a href="module-service_text_broadcast_BroadcastManager.html">service/text/broadcast/BroadcastManager</a></li><li><a href="module-service_text_channel.html">service/text/channel</a></li><li><a href="module-service_text_channel_Channel.html">service/text/channel/Channel</a></li><li><a href="module-service_text_channel_ChannelManager.html">service/text/channel/ChannelManager</a></li><li><a href="module-service_text_message.html">service/text/message</a></li><li><a href="module-service_text_message_TextMessage.html">service/text/message/TextMessage</a></li><li><a href="module-service_text_message_TextSerializer.html">service/text/message/TextSerializer</a></li><li><a href="module-storage.html">storage</a></li><li><a href="module-storage_AsyncStorageAdapter.html">storage/AsyncStorageAdapter</a></li><li><a href="module-storage_MemoryStorage.html">storage/MemoryStorage</a></li><li><a href="module-storage_MessageStore.html">storage/MessageStore</a></li><li><a href="module-storage_Storage.html">storage/Storage</a></li><li><a href="module-transport.html">transport</a></li><li><a href="module-transport_BLEAdapter.html">transport/BLEAdapter</a></li><li><a href="module-transport_BLETransport.html">transport/BLETransport</a></li><li><a href="module-transport_MockTransport.html">transport/MockTransport</a></li><li><a href="module-transport_NodeBLEAdapter.html">transport/NodeBLEAdapter</a></li><li><a href="module-transport_RNBLEAdapter.html">transport/RNBLEAdapter</a></li><li><a href="module-transport_Transport.html">transport/Transport</a></li><li><a href="module-transport_adapters.html">transport/adapters</a></li><li><a href="module-transport_adapters_BLEAdapter.html">transport/adapters/BLEAdapter</a></li><li><a href="module-transport_adapters_NodeBLEAdapter.html">transport/adapters/NodeBLEAdapter</a></li><li><a href="module-transport_adapters_RNBLEAdapter.html">transport/adapters/RNBLEAdapter</a></li><li><a href="module-utils.html">utils</a></li><li><a href="module-utils_BoundedMap.html">utils/BoundedMap</a></li><li><a href="module-utils_EventEmitter.html">utils/EventEmitter</a></li><li><a href="module-utils_LRUCache.html">utils/LRUCache</a></li><li><a href="module-utils_RateLimiter.html">utils/RateLimiter</a></li><li><a href="module-utils_TimeoutManager.html">utils/TimeoutManager</a></li><li><a href="module-utils_bytes.html">utils/bytes</a></li><li><a href="module-utils_debug.html">utils/debug</a></li><li><a href="module-utils_encoding.html">utils/encoding</a></li><li><a href="module-utils_retry.html">utils/retry</a></li><li><a href="module-utils_time.html">utils/time</a></li><li><a href="module-utils_uuid.html">utils/uuid</a></li><li><a href="module-utils_validation.html">utils/validation</a></li><li><a href="utils_base64%250A%250AThis%2520implementation%2520avoids%2520string%2520concatenation%2520in%2520loops%2520which%2520is%2520O(n%25C2%25B2).%250AUses%2520array%2520building%2520which%2520is%2520O(n)%2520-%2520critical%2520for%2520React%2520Native%2520performance.module_.html">utils/base64
4972
+
4973
+ This implementation avoids string concatenation in loops which is O(n²).
4974
+ Uses array building which is O(n) - critical for React Native performance.</a></li></ul><h3>Classes</h3><ul><li><a href="module-audio_buffer_FrameBuffer-FrameBuffer.html">FrameBuffer</a></li><li><a href="module-audio_buffer_JitterBuffer-JitterBuffer.html">JitterBuffer</a></li><li><a href="module-audio_codec_LC3Codec-LC3Codec.html">LC3Codec</a></li><li><a href="module-audio_codec_LC3Decoder-LC3Decoder.html">LC3Decoder</a></li><li><a href="module-audio_codec_LC3Encoder-LC3Encoder.html">LC3Encoder</a></li><li><a href="module-audio_session_AudioSession-AudioSession.html">AudioSession</a></li><li><a href="module-audio_session_VoiceMessage-VoiceMessage.html">VoiceMessage</a></li><li><a href="module-audio_session_VoiceMessage-VoiceMessageRecorder.html">VoiceMessageRecorder</a></li><li><a href="module-audio_transport_AudioFragmenter-AudioAssembler.html">AudioAssembler</a></li><li><a href="module-audio_transport_AudioFragmenter-AudioFragmenter.html">AudioFragmenter</a></li><li><a href="module-crypto_keys_KeyManager-KeyManager.html">KeyManager</a></li><li><a href="module-crypto_keys_SecureStorage-MemorySecureStorage.html">MemorySecureStorage</a></li><li><a href="module-crypto_keys_SecureStorage-SecureStorage.html">SecureStorage</a></li><li><a href="module-crypto_noise_handshake-NoiseHandshake.html">NoiseHandshake</a></li><li><a href="module-crypto_noise_session-NoiseSession.html">NoiseSession</a></li><li><a href="module-crypto_noise_state-SymmetricState.html">SymmetricState</a></li><li><a href="module-crypto_sha256-HashContext.html">HashContext</a></li><li><a href="module-errors_AudioError-AudioError.html">AudioError</a></li><li><a href="module-errors_ConnectionError-ConnectionError.html">ConnectionError</a></li><li><a href="module-errors_CryptoError-CryptoError.html">CryptoError</a></li><li><a href="module-errors_HandshakeError-HandshakeError.html">HandshakeError</a></li><li><a href="module-errors_MeshError-MeshError.html">MeshError</a></li><li><a href="module-errors_MessageError-MessageError.html">MessageError</a></li><li><a href="module-errors_ValidationError-ValidationError.html">ValidationError</a></li><li><a href="module-hooks_AppStateManager-AppStateManager.html">AppStateManager</a></li><li><a href="module-mesh_dedup_BloomFilter-BloomFilter.html">BloomFilter</a></li><li><a href="module-mesh_dedup_DedupManager-DedupManager.html">DedupManager</a></li><li><a href="module-mesh_dedup_MessageCache-CacheNode.html">CacheNode</a></li><li><a href="module-mesh_dedup_MessageCache-MessageCache.html">MessageCache</a></li><li><a href="module-mesh_fragment_Assembler-Assembler.html">Assembler</a></li><li><a href="module-mesh_fragment_Assembler-PendingFragmentSet.html">PendingFragmentSet</a></li><li><a href="module-mesh_peer_PeerDiscovery-PeerDiscovery.html">PeerDiscovery</a></li><li><a href="module-mesh_peer_PeerManager-PeerManager.html">PeerManager</a></li><li><a href="module-mesh_peer_Peer-Peer.html">Peer</a></li><li><a href="module-mesh_router_MessageRouter-MessageRouter.html">MessageRouter</a></li><li><a href="module-mesh_router_PathFinder-PathFinder.html">PathFinder</a></li><li><a href="module-mesh_router_RouteTable-RouteTable.html">RouteTable</a></li><li><a href="module-protocol_header-MessageHeader.html">MessageHeader</a></li><li><a href="module-protocol_message-Message.html">Message</a></li><li><a href="module-service_HandshakeManager-HandshakeManager.html">HandshakeManager</a></li><li><a href="module-service_MeshService-MeshService.html">MeshService</a></li><li><a href="module-service_SessionManager-SessionManager.html">SessionManager</a></li><li><a href="module-service_audio_AudioManager-AudioManager.html">AudioManager</a></li><li><a href="module-service_text_TextManager-TextManager.html">TextManager</a></li><li><a href="module-service_text_broadcast_BroadcastManager-BroadcastManager.html">BroadcastManager</a></li><li><a href="module-service_text_channel_ChannelManager-ChannelManager.html">ChannelManager</a></li><li><a href="module-service_text_channel_Channel-Channel.html">Channel</a></li><li><a href="module-service_text_message_TextMessage-TextMessage.html">TextMessage</a></li><li><a href="module-storage_AsyncStorageAdapter-AsyncStorageAdapter.html">AsyncStorageAdapter</a></li><li><a href="module-storage_MemoryStorage-MemoryStorage.html">MemoryStorage</a></li><li><a href="module-storage_MessageStore-MessageStore.html">MessageStore</a></li><li><a href="module-storage_Storage-Storage.html">Storage</a></li><li><a href="module-transport_BLEAdapter-BLEAdapter.html">BLEAdapter</a></li><li><a href="module-transport_BLETransport-BLETransport.html">BLETransport</a></li><li><a href="module-transport_MockTransport-MockTransport.html">MockTransport</a></li><li><a href="module-transport_NodeBLEAdapter-NodeBLEAdapter.html">NodeBLEAdapter</a></li><li><a href="module-transport_RNBLEAdapter-RNBLEAdapter.html">RNBLEAdapter</a></li><li><a href="module-transport_Transport-Transport.html">Transport</a></li><li><a href="module-transport_adapters_BLEAdapter-BLEAdapter.html">BLEAdapter</a></li><li><a href="module-transport_adapters_NodeBLEAdapter-NodeBLEAdapter.html">NodeBLEAdapter</a></li><li><a href="module-transport_adapters_RNBLEAdapter-RNBLEAdapter.html">RNBLEAdapter</a></li><li><a href="module-utils_BoundedMap-BoundedMap.html">BoundedMap</a></li><li><a href="module-utils_EventEmitter-EventEmitter.html">EventEmitter</a></li><li><a href="module-utils_LRUCache-LRUCache.html">LRUCache</a></li><li><a href="module-utils_RateLimiter-RateLimiter.html">RateLimiter</a></li><li><a href="module-utils_TimeoutManager-TimeoutManager.html">TimeoutManager</a></li></ul>
4975
+ </nav>
4976
+
4977
+ <br class="clear">
4978
+
4979
+ <footer>
4980
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 4.0.5</a>
4981
+ </footer>
4982
+
4983
+ <script> prettyPrint(); </script>
4984
+ <script src="scripts/linenumber.js"> </script>
4985
+ </body>
4986
+ </html>