(event, data)
| 121 | }, |
| 122 | |
| 123 | _onPeerP2POutgoingConnection(event, data) { |
| 124 | const { connection } = data; |
| 125 | const peers = this.model; |
| 126 | const peer = peers.findBy('peer.id', connection.peer); |
| 127 | |
| 128 | peer.setProperties({ |
| 129 | 'peer.connection': connection, |
| 130 | 'peer.state': 'connecting', |
| 131 | }); |
| 132 | }, |
| 133 | |
| 134 | _onPeerDCOutgoingConnection(event, data) { |
| 135 | const { connection } = data; |
nothing calls this directly
no outgoing calls
no test coverage detected