(peerConnection)
| 183 | # remote peer tries to initiate connection |
| 184 | @peer.on(PeerEventType.Connection) |
| 185 | async def peer_connection(peerConnection): |
| 186 | logger.info('Remote peer trying to establish connection') |
| 187 | _setPeerConnectionHandlers(peerConnection) |
| 188 | |
| 189 | |
| 190 | async def _fetch(url: str = None, method: str = 'GET', json: str = None, data = None) -> Any: |
nothing calls this directly
no test coverage detected