handlePush method
Implementation
Future<void> handlePush(P2PStream stream, PeerId peerId) async {
_log.fine('IdentifyService.handlePush: SERVER received identify PUSH from ${stream.conn.remotePeer} (reported as $peerId) on stream ${stream.id()}');
_log.finer('IdentifyService.handlePush: Setting deadline for PUSH stream from ${stream.conn.remotePeer}');
stream.setDeadline(DateTime.now().add(timeout));
await handleIdentifyResponse(stream, true);
}