From c0c2f07a043a15c8d97d087c93e49a13a768e9da Mon Sep 17 00:00:00 2001 From: chad Date: Wed, 21 Jun 2023 15:31:29 -0500 Subject: [PATCH 1/8] test: added webRTC webkit tests --- packages/transport-webrtc/package.json | 29 ++++++++++++------- packages/transport-webrtc/src/error.ts | 4 +-- packages/transport-webrtc/src/index.ts | 2 +- packages/transport-webrtc/src/maconn.ts | 4 +-- packages/transport-webrtc/src/muxer.ts | 6 ++-- .../src/private-to-private/handler.ts | 6 ++-- .../src/private-to-private/listener.ts | 7 ++--- .../src/private-to-private/transport.ts | 13 ++++----- .../src/private-to-public/options.ts | 2 +- .../src/private-to-public/transport.ts | 8 ++--- packages/transport-webrtc/src/stream.ts | 6 ++-- packages/transport-webrtc/test/basics.spec.ts | 14 ++------- .../transport-webrtc/test/listener.spec.ts | 3 +- .../test/maconn.browser.spec.ts | 2 +- .../test/peer.browser.spec.ts | 2 +- .../test/stream.browser.spec.ts | 2 +- .../test/transport.browser.spec.ts | 6 ++-- packages/transport-webrtc/tsconfig.json | 24 +++++++++++++-- 18 files changed, 76 insertions(+), 64 deletions(-) diff --git a/packages/transport-webrtc/package.json b/packages/transport-webrtc/package.json index b225f72974..5883b6fdbe 100644 --- a/packages/transport-webrtc/package.json +++ b/packages/transport-webrtc/package.json @@ -38,18 +38,24 @@ "test": "aegir test -t browser", "test:chrome": "aegir test -t browser --cov", "test:firefox": "aegir test -t browser -- --browser firefox", + "test:webkit": "aegir test -t browser -- --browser webkit", "lint": "aegir lint", "lint:fix": "aegir lint --fix", "clean": "aegir clean", - "dep-check": "aegir dep-check" + "dep-check": "aegir dep-check -i protons" }, "dependencies": { "@chainsafe/libp2p-noise": "^12.0.1", - "@libp2p/interface": "~0.0.1", - "@libp2p/interface-internal": "~0.0.1", - "@libp2p/logger": "^2.0.0", - "@libp2p/peer-id": "^2.0.0", - "@multiformats/mafmt": "^12.1.2", + "@libp2p/interface-connection": "^5.1.1", + "@libp2p/interface-metrics": "^4.0.8", + "@libp2p/interface-peer-id": "^2.0.2", + "@libp2p/interface-registrar": "^2.0.12", + "@libp2p/interface-stream-muxer": "^4.1.2", + "@libp2p/interface-transport": "^4.0.3", + "@libp2p/interfaces": "^3.3.2", + "@libp2p/logger": "^2.1.1", + "@libp2p/peer-id": "^2.0.4", + "@multiformats/mafmt": "^12.1.5", "@multiformats/multiaddr": "^12.1.3", "abortable-iterator": "^5.0.1", "detect-browser": "^5.3.0", @@ -68,17 +74,18 @@ "uint8arrays": "^4.0.4" }, "devDependencies": { - "@chainsafe/libp2p-yamux": "^4.0.1", - "@libp2p/interface-compliance-tests": "^3.0.0", - "@libp2p/peer-id-factory": "^2.0.0", - "@libp2p/websockets": "^6.0.0", + "@chainsafe/libp2p-yamux": "^4.0.2", + "@libp2p/interface-libp2p": "^3.2.0", + "@libp2p/interface-mocks": "^12.0.1", + "@libp2p/peer-id-factory": "^2.0.4", + "@libp2p/websockets": "^6.0.3", "@types/sinon": "^10.0.15", "aegir": "^39.0.10", "delay": "^6.0.0", "it-length": "^3.0.2", "it-map": "^3.0.3", "it-pair": "^2.0.6", - "libp2p": "^0.45.0", + "libp2p": "^0.45.9", "protons": "^7.0.2", "sinon": "^15.1.2", "sinon-ts": "^1.0.0" diff --git a/packages/transport-webrtc/src/error.ts b/packages/transport-webrtc/src/error.ts index 4c6d3b42df..360b4e3d73 100644 --- a/packages/transport-webrtc/src/error.ts +++ b/packages/transport-webrtc/src/error.ts @@ -1,5 +1,5 @@ -import { CodeError } from '@libp2p/interface/errors' -import type { Direction } from '@libp2p/interface/connection' +import { CodeError } from '@libp2p/interfaces/errors' +import type { Direction } from '@libp2p/interface-connection' export enum codes { ERR_ALREADY_ABORTED = 'ERR_ALREADY_ABORTED', diff --git a/packages/transport-webrtc/src/index.ts b/packages/transport-webrtc/src/index.ts index 0245aefcc9..b35a16ced4 100644 --- a/packages/transport-webrtc/src/index.ts +++ b/packages/transport-webrtc/src/index.ts @@ -1,7 +1,7 @@ import { WebRTCTransport } from './private-to-private/transport.js' import { WebRTCDirectTransport, type WebRTCTransportDirectInit, type WebRTCDirectTransportComponents } from './private-to-public/transport.js' import type { WebRTCTransportComponents, WebRTCTransportInit } from './private-to-private/transport.js' -import type { Transport } from '@libp2p/interface/transport' +import type { Transport } from '@libp2p/interface-transport' /** * @param {WebRTCTransportDirectInit} init - WebRTC direct transport configuration diff --git a/packages/transport-webrtc/src/maconn.ts b/packages/transport-webrtc/src/maconn.ts index 2281db9fa9..3ce4e3c458 100644 --- a/packages/transport-webrtc/src/maconn.ts +++ b/packages/transport-webrtc/src/maconn.ts @@ -1,7 +1,7 @@ import { logger } from '@libp2p/logger' import { nopSink, nopSource } from './util.js' -import type { MultiaddrConnection, MultiaddrConnectionTimeline } from '@libp2p/interface/connection' -import type { CounterGroup } from '@libp2p/interface/metrics' +import type { MultiaddrConnection, MultiaddrConnectionTimeline } from '@libp2p/interface-connection' +import type { CounterGroup } from '@libp2p/interface-metrics' import type { Multiaddr } from '@multiformats/multiaddr' import type { Source, Sink } from 'it-stream-types' diff --git a/packages/transport-webrtc/src/muxer.ts b/packages/transport-webrtc/src/muxer.ts index 93825a923b..95f925cf81 100644 --- a/packages/transport-webrtc/src/muxer.ts +++ b/packages/transport-webrtc/src/muxer.ts @@ -1,9 +1,9 @@ import { createStream } from './stream.js' import { nopSink, nopSource } from './util.js' import type { DataChannelOpts } from './stream.js' -import type { Stream } from '@libp2p/interface/connection' -import type { CounterGroup } from '@libp2p/interface/metrics' -import type { StreamMuxer, StreamMuxerFactory, StreamMuxerInit } from '@libp2p/interface/stream-muxer' +import type { Stream } from '@libp2p/interface-connection' +import type { CounterGroup } from '@libp2p/interface-metrics' +import type { StreamMuxer, StreamMuxerFactory, StreamMuxerInit } from '@libp2p/interface-stream-muxer' import type { Source, Sink } from 'it-stream-types' import type { Uint8ArrayList } from 'uint8arraylist' diff --git a/packages/transport-webrtc/src/private-to-private/handler.ts b/packages/transport-webrtc/src/private-to-private/handler.ts index 9818a224b8..176031b4fe 100644 --- a/packages/transport-webrtc/src/private-to-private/handler.ts +++ b/packages/transport-webrtc/src/private-to-private/handler.ts @@ -6,9 +6,9 @@ import { DataChannelMuxerFactory } from '../muxer.js' import { Message } from './pb/message.js' import { readCandidatesUntilConnected, resolveOnConnected } from './util.js' import type { DataChannelOpts } from '../stream.js' -import type { Stream } from '@libp2p/interface/connection' -import type { StreamMuxerFactory } from '@libp2p/interface/stream-muxer' -import type { IncomingStreamData } from '@libp2p/interface-internal/registrar' +import type { Stream } from '@libp2p/interface-connection' +import type { IncomingStreamData } from '@libp2p/interface-registrar' +import type { StreamMuxerFactory } from '@libp2p/interface-stream-muxer' const DEFAULT_TIMEOUT = 30 * 1000 diff --git a/packages/transport-webrtc/src/private-to-private/listener.ts b/packages/transport-webrtc/src/private-to-private/listener.ts index 1dccac6e25..018e569264 100644 --- a/packages/transport-webrtc/src/private-to-private/listener.ts +++ b/packages/transport-webrtc/src/private-to-private/listener.ts @@ -1,8 +1,7 @@ -import { EventEmitter } from '@libp2p/interface/events' +import { EventEmitter } from '@libp2p/interfaces/events' import { Circuit } from '@multiformats/mafmt' -import type { PeerId } from '@libp2p/interface/peer-id' -import type { ListenerEvents, Listener } from '@libp2p/interface/transport' -import type { TransportManager } from '@libp2p/interface-internal/transport-manager' +import type { PeerId } from '@libp2p/interface-peer-id' +import type { ListenerEvents, Listener, TransportManager } from '@libp2p/interface-transport' import type { Multiaddr } from '@multiformats/multiaddr' export interface ListenerOptions { diff --git a/packages/transport-webrtc/src/private-to-private/transport.ts b/packages/transport-webrtc/src/private-to-private/transport.ts index ca24931930..196854d24e 100644 --- a/packages/transport-webrtc/src/private-to-private/transport.ts +++ b/packages/transport-webrtc/src/private-to-private/transport.ts @@ -1,5 +1,5 @@ -import { CodeError } from '@libp2p/interface/errors' -import { type CreateListenerOptions, type DialOptions, symbol, type Transport, type Listener, type Upgrader } from '@libp2p/interface/transport' +import { type CreateListenerOptions, type DialOptions, type Listener, symbol, type Transport, type Upgrader, type TransportManager } from '@libp2p/interface-transport' +import { CodeError } from '@libp2p/interfaces/errors' import { logger } from '@libp2p/logger' import { peerIdFromString } from '@libp2p/peer-id' import { multiaddr, type Multiaddr, protocols } from '@multiformats/multiaddr' @@ -8,11 +8,10 @@ import { WebRTCMultiaddrConnection } from '../maconn.js' import { initiateConnection, handleIncomingStream } from './handler.js' import { WebRTCPeerListener } from './listener.js' import type { DataChannelOpts } from '../stream.js' -import type { Connection } from '@libp2p/interface/connection' -import type { PeerId } from '@libp2p/interface/peer-id' -import type { Startable } from '@libp2p/interface/startable' -import type { IncomingStreamData, Registrar } from '@libp2p/interface-internal/registrar' -import type { TransportManager } from '@libp2p/interface-internal/transport-manager' +import type { Connection } from '@libp2p/interface-connection' +import type { PeerId } from '@libp2p/interface-peer-id' +import type { IncomingStreamData, Registrar } from '@libp2p/interface-registrar' +import type { Startable } from '@libp2p/interfaces/startable' const log = logger('libp2p:webrtc:peer') diff --git a/packages/transport-webrtc/src/private-to-public/options.ts b/packages/transport-webrtc/src/private-to-public/options.ts index d30bc9f304..838c627ffe 100644 --- a/packages/transport-webrtc/src/private-to-public/options.ts +++ b/packages/transport-webrtc/src/private-to-public/options.ts @@ -1,4 +1,4 @@ -import type { CreateListenerOptions, DialOptions } from '@libp2p/interface/transport' +import type { CreateListenerOptions, DialOptions } from '@libp2p/interface-transport' export interface WebRTCListenerOptions extends CreateListenerOptions {} export interface WebRTCDialOptions extends DialOptions {} diff --git a/packages/transport-webrtc/src/private-to-public/transport.ts b/packages/transport-webrtc/src/private-to-public/transport.ts index c65f823387..c23b715c88 100644 --- a/packages/transport-webrtc/src/private-to-public/transport.ts +++ b/packages/transport-webrtc/src/private-to-public/transport.ts @@ -1,5 +1,5 @@ import { noise as Noise } from '@chainsafe/libp2p-noise' -import { type CreateListenerOptions, symbol, type Transport, type Listener } from '@libp2p/interface/transport' +import { type CreateListenerOptions, type Listener, symbol, type Transport } from '@libp2p/interface-transport' import { logger } from '@libp2p/logger' import * as p from '@libp2p/peer-id' import { protocols } from '@multiformats/multiaddr' @@ -15,9 +15,9 @@ import * as sdp from './sdp.js' import { genUfrag } from './util.js' import type { WebRTCDialOptions } from './options.js' import type { DataChannelOpts } from '../stream.js' -import type { Connection } from '@libp2p/interface/connection' -import type { CounterGroup, Metrics } from '@libp2p/interface/metrics' -import type { PeerId } from '@libp2p/interface/peer-id' +import type { Connection } from '@libp2p/interface-connection' +import type { CounterGroup, Metrics } from '@libp2p/interface-metrics' +import type { PeerId } from '@libp2p/interface-peer-id' import type { Multiaddr } from '@multiformats/multiaddr' const log = logger('libp2p:webrtc:transport') diff --git a/packages/transport-webrtc/src/stream.ts b/packages/transport-webrtc/src/stream.ts index bc997397a8..fe5482bca3 100644 --- a/packages/transport-webrtc/src/stream.ts +++ b/packages/transport-webrtc/src/stream.ts @@ -1,12 +1,12 @@ -import { CodeError } from '@libp2p/interface/errors' -import { AbstractStream, type AbstractStreamInit } from '@libp2p/interface/stream-muxer/stream' +import { AbstractStream, type AbstractStreamInit } from '@libp2p/interface-stream-muxer/stream' +import { CodeError } from '@libp2p/interfaces/errors' import { logger } from '@libp2p/logger' import * as lengthPrefixed from 'it-length-prefixed' import { type Pushable, pushable } from 'it-pushable' import { pEvent, TimeoutError } from 'p-event' import { Uint8ArrayList } from 'uint8arraylist' import { Message } from './pb/message.js' -import type { Direction, Stream } from '@libp2p/interface/connection' +import type { Direction, Stream } from '@libp2p/interface-connection' const log = logger('libp2p:webrtc:stream') diff --git a/packages/transport-webrtc/test/basics.spec.ts b/packages/transport-webrtc/test/basics.spec.ts index a241d15c54..49a7787a76 100644 --- a/packages/transport-webrtc/test/basics.spec.ts +++ b/packages/transport-webrtc/test/basics.spec.ts @@ -14,8 +14,8 @@ import { createLibp2p } from 'libp2p' import { circuitRelayTransport } from 'libp2p/circuit-relay' import { identifyService } from 'libp2p/identify' import { webRTC } from '../src/index.js' -import type { Libp2p } from '@libp2p/interface' -import type { Connection } from '@libp2p/interface/connection' +import type { Connection } from '@libp2p/interface-connection' +import type { Libp2p } from '@libp2p/interface-libp2p' async function createNode (): Promise { return createLibp2p({ @@ -85,16 +85,6 @@ describe('basics', () => { remoteNode = await createNode() }) - afterEach(async () => { - if (localNode != null) { - await localNode.stop() - } - - if (remoteNode != null) { - await remoteNode.stop() - } - }) - it('can dial through a relay', async () => { const connection = await connectNodes() diff --git a/packages/transport-webrtc/test/listener.spec.ts b/packages/transport-webrtc/test/listener.spec.ts index e4e6dc149c..4928ca682c 100644 --- a/packages/transport-webrtc/test/listener.spec.ts +++ b/packages/transport-webrtc/test/listener.spec.ts @@ -3,8 +3,7 @@ import { multiaddr } from '@multiformats/multiaddr' import { expect } from 'aegir/chai' import { stubInterface } from 'sinon-ts' import { WebRTCPeerListener } from '../src/private-to-private/listener' -import type { Listener } from '@libp2p/interface/transport' -import type { TransportManager } from '@libp2p/interface-internal/transport-manager' +import type { Listener, TransportManager } from '@libp2p/interface-transport' describe('webrtc private-to-private listener', () => { it('should only return relay addresses as webrtc listen addresses', async () => { diff --git a/packages/transport-webrtc/test/maconn.browser.spec.ts b/packages/transport-webrtc/test/maconn.browser.spec.ts index a8e91272c4..9a25dc541c 100644 --- a/packages/transport-webrtc/test/maconn.browser.spec.ts +++ b/packages/transport-webrtc/test/maconn.browser.spec.ts @@ -4,7 +4,7 @@ import { multiaddr } from '@multiformats/multiaddr' import { expect } from 'aegir/chai' import { stubObject } from 'sinon-ts' import { WebRTCMultiaddrConnection } from '../src/maconn.js' -import type { CounterGroup } from '@libp2p/interface/metrics' +import type { CounterGroup } from '@libp2p/interface-metrics' describe('Multiaddr Connection', () => { it('can open and close', async () => { diff --git a/packages/transport-webrtc/test/peer.browser.spec.ts b/packages/transport-webrtc/test/peer.browser.spec.ts index ae3b79d325..25fe8284bb 100644 --- a/packages/transport-webrtc/test/peer.browser.spec.ts +++ b/packages/transport-webrtc/test/peer.browser.spec.ts @@ -1,4 +1,4 @@ -import { mockConnection, mockMultiaddrConnection, mockRegistrar, mockStream, mockUpgrader } from '@libp2p/interface-compliance-tests/mocks' +import { mockConnection, mockMultiaddrConnection, mockRegistrar, mockStream, mockUpgrader } from '@libp2p/interface-mocks' import { createEd25519PeerId } from '@libp2p/peer-id-factory' import { multiaddr } from '@multiformats/multiaddr' import { expect } from 'aegir/chai' diff --git a/packages/transport-webrtc/test/stream.browser.spec.ts b/packages/transport-webrtc/test/stream.browser.spec.ts index a098d93a24..ee57a61d84 100644 --- a/packages/transport-webrtc/test/stream.browser.spec.ts +++ b/packages/transport-webrtc/test/stream.browser.spec.ts @@ -4,7 +4,7 @@ import * as lengthPrefixed from 'it-length-prefixed' import { bytes } from 'multiformats' import { Message } from '../src/pb/message.js' import { createStream } from '../src/stream' -import type { Stream } from '@libp2p/interface/connection' +import type { Stream } from '@libp2p/interface-connection' const TEST_MESSAGE = 'test_message' function setup (): { peerConnection: RTCPeerConnection, dataChannel: RTCDataChannel, stream: Stream } { diff --git a/packages/transport-webrtc/test/transport.browser.spec.ts b/packages/transport-webrtc/test/transport.browser.spec.ts index ea7b56d545..dea6c68fbd 100644 --- a/packages/transport-webrtc/test/transport.browser.spec.ts +++ b/packages/transport-webrtc/test/transport.browser.spec.ts @@ -1,14 +1,14 @@ /* eslint-disable @typescript-eslint/no-floating-promises */ -import { type CreateListenerOptions, symbol } from '@libp2p/interface/transport' -import { mockMetrics, mockUpgrader } from '@libp2p/interface-compliance-tests/mocks' +import { mockMetrics, mockUpgrader } from '@libp2p/interface-mocks' +import { type CreateListenerOptions, symbol } from '@libp2p/interface-transport' import { createEd25519PeerId } from '@libp2p/peer-id-factory' import { multiaddr, type Multiaddr } from '@multiformats/multiaddr' import { expect, assert } from 'aegir/chai' import { UnimplementedError } from '../src/error.js' import * as underTest from '../src/private-to-public/transport.js' import { expectError } from './util.js' -import type { Metrics } from '@libp2p/interface/metrics' +import type { Metrics } from '@libp2p/interface-metrics' function ignoredDialOption (): CreateListenerOptions { const upgrader = mockUpgrader({}) diff --git a/packages/transport-webrtc/tsconfig.json b/packages/transport-webrtc/tsconfig.json index 4008808465..aa7a3a98ba 100644 --- a/packages/transport-webrtc/tsconfig.json +++ b/packages/transport-webrtc/tsconfig.json @@ -10,13 +10,31 @@ ], "references": [ { - "path": "../interface" + "path": "../interface-connection" }, { - "path": "../interface-compliance-tests" + "path": "../interface-libp2p" }, { - "path": "../interface-internal" + "path": "../interface-metrics" + }, + { + "path": "../interface-mocks" + }, + { + "path": "../interface-peer-id" + }, + { + "path": "../interface-registrar" + }, + { + "path": "../interface-stream-muxer" + }, + { + "path": "../interface-transport" + }, + { + "path": "../interfaces" }, { "path": "../libp2p" From 5ee1ac22520041dd1f25c14edbda17717133d7c7 Mon Sep 17 00:00:00 2001 From: chad Date: Wed, 21 Jun 2023 15:38:38 -0500 Subject: [PATCH 2/8] test: added webkit tests for webRTC --- packages/transport-webrtc/src/error.ts | 4 ++-- packages/transport-webrtc/src/index.ts | 2 +- packages/transport-webrtc/src/maconn.ts | 4 ++-- packages/transport-webrtc/src/muxer.ts | 6 ++--- .../src/private-to-private/handler.ts | 6 ++--- .../src/private-to-private/listener.ts | 7 +++--- .../src/private-to-private/transport.ts | 13 +++++----- .../src/private-to-public/options.ts | 2 +- .../src/private-to-public/transport.ts | 8 +++---- packages/transport-webrtc/src/stream.ts | 6 ++--- packages/transport-webrtc/test/basics.spec.ts | 15 ++++++++++-- .../transport-webrtc/test/listener.spec.ts | 3 ++- .../test/maconn.browser.spec.ts | 2 +- .../test/peer.browser.spec.ts | 2 +- .../test/stream.browser.spec.ts | 2 +- .../test/transport.browser.spec.ts | 6 ++--- packages/transport-webrtc/tsconfig.json | 24 +++---------------- 17 files changed, 54 insertions(+), 58 deletions(-) diff --git a/packages/transport-webrtc/src/error.ts b/packages/transport-webrtc/src/error.ts index 360b4e3d73..4c6d3b42df 100644 --- a/packages/transport-webrtc/src/error.ts +++ b/packages/transport-webrtc/src/error.ts @@ -1,5 +1,5 @@ -import { CodeError } from '@libp2p/interfaces/errors' -import type { Direction } from '@libp2p/interface-connection' +import { CodeError } from '@libp2p/interface/errors' +import type { Direction } from '@libp2p/interface/connection' export enum codes { ERR_ALREADY_ABORTED = 'ERR_ALREADY_ABORTED', diff --git a/packages/transport-webrtc/src/index.ts b/packages/transport-webrtc/src/index.ts index b35a16ced4..0245aefcc9 100644 --- a/packages/transport-webrtc/src/index.ts +++ b/packages/transport-webrtc/src/index.ts @@ -1,7 +1,7 @@ import { WebRTCTransport } from './private-to-private/transport.js' import { WebRTCDirectTransport, type WebRTCTransportDirectInit, type WebRTCDirectTransportComponents } from './private-to-public/transport.js' import type { WebRTCTransportComponents, WebRTCTransportInit } from './private-to-private/transport.js' -import type { Transport } from '@libp2p/interface-transport' +import type { Transport } from '@libp2p/interface/transport' /** * @param {WebRTCTransportDirectInit} init - WebRTC direct transport configuration diff --git a/packages/transport-webrtc/src/maconn.ts b/packages/transport-webrtc/src/maconn.ts index 3ce4e3c458..2281db9fa9 100644 --- a/packages/transport-webrtc/src/maconn.ts +++ b/packages/transport-webrtc/src/maconn.ts @@ -1,7 +1,7 @@ import { logger } from '@libp2p/logger' import { nopSink, nopSource } from './util.js' -import type { MultiaddrConnection, MultiaddrConnectionTimeline } from '@libp2p/interface-connection' -import type { CounterGroup } from '@libp2p/interface-metrics' +import type { MultiaddrConnection, MultiaddrConnectionTimeline } from '@libp2p/interface/connection' +import type { CounterGroup } from '@libp2p/interface/metrics' import type { Multiaddr } from '@multiformats/multiaddr' import type { Source, Sink } from 'it-stream-types' diff --git a/packages/transport-webrtc/src/muxer.ts b/packages/transport-webrtc/src/muxer.ts index 95f925cf81..93825a923b 100644 --- a/packages/transport-webrtc/src/muxer.ts +++ b/packages/transport-webrtc/src/muxer.ts @@ -1,9 +1,9 @@ import { createStream } from './stream.js' import { nopSink, nopSource } from './util.js' import type { DataChannelOpts } from './stream.js' -import type { Stream } from '@libp2p/interface-connection' -import type { CounterGroup } from '@libp2p/interface-metrics' -import type { StreamMuxer, StreamMuxerFactory, StreamMuxerInit } from '@libp2p/interface-stream-muxer' +import type { Stream } from '@libp2p/interface/connection' +import type { CounterGroup } from '@libp2p/interface/metrics' +import type { StreamMuxer, StreamMuxerFactory, StreamMuxerInit } from '@libp2p/interface/stream-muxer' import type { Source, Sink } from 'it-stream-types' import type { Uint8ArrayList } from 'uint8arraylist' diff --git a/packages/transport-webrtc/src/private-to-private/handler.ts b/packages/transport-webrtc/src/private-to-private/handler.ts index 176031b4fe..9818a224b8 100644 --- a/packages/transport-webrtc/src/private-to-private/handler.ts +++ b/packages/transport-webrtc/src/private-to-private/handler.ts @@ -6,9 +6,9 @@ import { DataChannelMuxerFactory } from '../muxer.js' import { Message } from './pb/message.js' import { readCandidatesUntilConnected, resolveOnConnected } from './util.js' import type { DataChannelOpts } from '../stream.js' -import type { Stream } from '@libp2p/interface-connection' -import type { IncomingStreamData } from '@libp2p/interface-registrar' -import type { StreamMuxerFactory } from '@libp2p/interface-stream-muxer' +import type { Stream } from '@libp2p/interface/connection' +import type { StreamMuxerFactory } from '@libp2p/interface/stream-muxer' +import type { IncomingStreamData } from '@libp2p/interface-internal/registrar' const DEFAULT_TIMEOUT = 30 * 1000 diff --git a/packages/transport-webrtc/src/private-to-private/listener.ts b/packages/transport-webrtc/src/private-to-private/listener.ts index 018e569264..1dccac6e25 100644 --- a/packages/transport-webrtc/src/private-to-private/listener.ts +++ b/packages/transport-webrtc/src/private-to-private/listener.ts @@ -1,7 +1,8 @@ -import { EventEmitter } from '@libp2p/interfaces/events' +import { EventEmitter } from '@libp2p/interface/events' import { Circuit } from '@multiformats/mafmt' -import type { PeerId } from '@libp2p/interface-peer-id' -import type { ListenerEvents, Listener, TransportManager } from '@libp2p/interface-transport' +import type { PeerId } from '@libp2p/interface/peer-id' +import type { ListenerEvents, Listener } from '@libp2p/interface/transport' +import type { TransportManager } from '@libp2p/interface-internal/transport-manager' import type { Multiaddr } from '@multiformats/multiaddr' export interface ListenerOptions { diff --git a/packages/transport-webrtc/src/private-to-private/transport.ts b/packages/transport-webrtc/src/private-to-private/transport.ts index 196854d24e..ca24931930 100644 --- a/packages/transport-webrtc/src/private-to-private/transport.ts +++ b/packages/transport-webrtc/src/private-to-private/transport.ts @@ -1,5 +1,5 @@ -import { type CreateListenerOptions, type DialOptions, type Listener, symbol, type Transport, type Upgrader, type TransportManager } from '@libp2p/interface-transport' -import { CodeError } from '@libp2p/interfaces/errors' +import { CodeError } from '@libp2p/interface/errors' +import { type CreateListenerOptions, type DialOptions, symbol, type Transport, type Listener, type Upgrader } from '@libp2p/interface/transport' import { logger } from '@libp2p/logger' import { peerIdFromString } from '@libp2p/peer-id' import { multiaddr, type Multiaddr, protocols } from '@multiformats/multiaddr' @@ -8,10 +8,11 @@ import { WebRTCMultiaddrConnection } from '../maconn.js' import { initiateConnection, handleIncomingStream } from './handler.js' import { WebRTCPeerListener } from './listener.js' import type { DataChannelOpts } from '../stream.js' -import type { Connection } from '@libp2p/interface-connection' -import type { PeerId } from '@libp2p/interface-peer-id' -import type { IncomingStreamData, Registrar } from '@libp2p/interface-registrar' -import type { Startable } from '@libp2p/interfaces/startable' +import type { Connection } from '@libp2p/interface/connection' +import type { PeerId } from '@libp2p/interface/peer-id' +import type { Startable } from '@libp2p/interface/startable' +import type { IncomingStreamData, Registrar } from '@libp2p/interface-internal/registrar' +import type { TransportManager } from '@libp2p/interface-internal/transport-manager' const log = logger('libp2p:webrtc:peer') diff --git a/packages/transport-webrtc/src/private-to-public/options.ts b/packages/transport-webrtc/src/private-to-public/options.ts index 838c627ffe..d30bc9f304 100644 --- a/packages/transport-webrtc/src/private-to-public/options.ts +++ b/packages/transport-webrtc/src/private-to-public/options.ts @@ -1,4 +1,4 @@ -import type { CreateListenerOptions, DialOptions } from '@libp2p/interface-transport' +import type { CreateListenerOptions, DialOptions } from '@libp2p/interface/transport' export interface WebRTCListenerOptions extends CreateListenerOptions {} export interface WebRTCDialOptions extends DialOptions {} diff --git a/packages/transport-webrtc/src/private-to-public/transport.ts b/packages/transport-webrtc/src/private-to-public/transport.ts index c23b715c88..c65f823387 100644 --- a/packages/transport-webrtc/src/private-to-public/transport.ts +++ b/packages/transport-webrtc/src/private-to-public/transport.ts @@ -1,5 +1,5 @@ import { noise as Noise } from '@chainsafe/libp2p-noise' -import { type CreateListenerOptions, type Listener, symbol, type Transport } from '@libp2p/interface-transport' +import { type CreateListenerOptions, symbol, type Transport, type Listener } from '@libp2p/interface/transport' import { logger } from '@libp2p/logger' import * as p from '@libp2p/peer-id' import { protocols } from '@multiformats/multiaddr' @@ -15,9 +15,9 @@ import * as sdp from './sdp.js' import { genUfrag } from './util.js' import type { WebRTCDialOptions } from './options.js' import type { DataChannelOpts } from '../stream.js' -import type { Connection } from '@libp2p/interface-connection' -import type { CounterGroup, Metrics } from '@libp2p/interface-metrics' -import type { PeerId } from '@libp2p/interface-peer-id' +import type { Connection } from '@libp2p/interface/connection' +import type { CounterGroup, Metrics } from '@libp2p/interface/metrics' +import type { PeerId } from '@libp2p/interface/peer-id' import type { Multiaddr } from '@multiformats/multiaddr' const log = logger('libp2p:webrtc:transport') diff --git a/packages/transport-webrtc/src/stream.ts b/packages/transport-webrtc/src/stream.ts index fe5482bca3..bc997397a8 100644 --- a/packages/transport-webrtc/src/stream.ts +++ b/packages/transport-webrtc/src/stream.ts @@ -1,12 +1,12 @@ -import { AbstractStream, type AbstractStreamInit } from '@libp2p/interface-stream-muxer/stream' -import { CodeError } from '@libp2p/interfaces/errors' +import { CodeError } from '@libp2p/interface/errors' +import { AbstractStream, type AbstractStreamInit } from '@libp2p/interface/stream-muxer/stream' import { logger } from '@libp2p/logger' import * as lengthPrefixed from 'it-length-prefixed' import { type Pushable, pushable } from 'it-pushable' import { pEvent, TimeoutError } from 'p-event' import { Uint8ArrayList } from 'uint8arraylist' import { Message } from './pb/message.js' -import type { Direction, Stream } from '@libp2p/interface-connection' +import type { Direction, Stream } from '@libp2p/interface/connection' const log = logger('libp2p:webrtc:stream') diff --git a/packages/transport-webrtc/test/basics.spec.ts b/packages/transport-webrtc/test/basics.spec.ts index 49a7787a76..5d9cdfb00d 100644 --- a/packages/transport-webrtc/test/basics.spec.ts +++ b/packages/transport-webrtc/test/basics.spec.ts @@ -14,8 +14,8 @@ import { createLibp2p } from 'libp2p' import { circuitRelayTransport } from 'libp2p/circuit-relay' import { identifyService } from 'libp2p/identify' import { webRTC } from '../src/index.js' -import type { Connection } from '@libp2p/interface-connection' -import type { Libp2p } from '@libp2p/interface-libp2p' +import type { Libp2p } from '@libp2p/interface' +import type { Connection } from '@libp2p/interface/connection' async function createNode (): Promise { return createLibp2p({ @@ -85,6 +85,17 @@ describe('basics', () => { remoteNode = await createNode() }) + // TODO: Streams are not closing gracefully, re-introduce after https://github.com/libp2p/js-libp2p/issues/1793 is addressed + // afterEach(async () => { + // if (localNode != null) { + // await localNode.stop() + // } + + // if (remoteNode != null) { + // await remoteNode.stop() + // } + // }) + it('can dial through a relay', async () => { const connection = await connectNodes() diff --git a/packages/transport-webrtc/test/listener.spec.ts b/packages/transport-webrtc/test/listener.spec.ts index 4928ca682c..e4e6dc149c 100644 --- a/packages/transport-webrtc/test/listener.spec.ts +++ b/packages/transport-webrtc/test/listener.spec.ts @@ -3,7 +3,8 @@ import { multiaddr } from '@multiformats/multiaddr' import { expect } from 'aegir/chai' import { stubInterface } from 'sinon-ts' import { WebRTCPeerListener } from '../src/private-to-private/listener' -import type { Listener, TransportManager } from '@libp2p/interface-transport' +import type { Listener } from '@libp2p/interface/transport' +import type { TransportManager } from '@libp2p/interface-internal/transport-manager' describe('webrtc private-to-private listener', () => { it('should only return relay addresses as webrtc listen addresses', async () => { diff --git a/packages/transport-webrtc/test/maconn.browser.spec.ts b/packages/transport-webrtc/test/maconn.browser.spec.ts index 9a25dc541c..a8e91272c4 100644 --- a/packages/transport-webrtc/test/maconn.browser.spec.ts +++ b/packages/transport-webrtc/test/maconn.browser.spec.ts @@ -4,7 +4,7 @@ import { multiaddr } from '@multiformats/multiaddr' import { expect } from 'aegir/chai' import { stubObject } from 'sinon-ts' import { WebRTCMultiaddrConnection } from '../src/maconn.js' -import type { CounterGroup } from '@libp2p/interface-metrics' +import type { CounterGroup } from '@libp2p/interface/metrics' describe('Multiaddr Connection', () => { it('can open and close', async () => { diff --git a/packages/transport-webrtc/test/peer.browser.spec.ts b/packages/transport-webrtc/test/peer.browser.spec.ts index 25fe8284bb..ae3b79d325 100644 --- a/packages/transport-webrtc/test/peer.browser.spec.ts +++ b/packages/transport-webrtc/test/peer.browser.spec.ts @@ -1,4 +1,4 @@ -import { mockConnection, mockMultiaddrConnection, mockRegistrar, mockStream, mockUpgrader } from '@libp2p/interface-mocks' +import { mockConnection, mockMultiaddrConnection, mockRegistrar, mockStream, mockUpgrader } from '@libp2p/interface-compliance-tests/mocks' import { createEd25519PeerId } from '@libp2p/peer-id-factory' import { multiaddr } from '@multiformats/multiaddr' import { expect } from 'aegir/chai' diff --git a/packages/transport-webrtc/test/stream.browser.spec.ts b/packages/transport-webrtc/test/stream.browser.spec.ts index ee57a61d84..a098d93a24 100644 --- a/packages/transport-webrtc/test/stream.browser.spec.ts +++ b/packages/transport-webrtc/test/stream.browser.spec.ts @@ -4,7 +4,7 @@ import * as lengthPrefixed from 'it-length-prefixed' import { bytes } from 'multiformats' import { Message } from '../src/pb/message.js' import { createStream } from '../src/stream' -import type { Stream } from '@libp2p/interface-connection' +import type { Stream } from '@libp2p/interface/connection' const TEST_MESSAGE = 'test_message' function setup (): { peerConnection: RTCPeerConnection, dataChannel: RTCDataChannel, stream: Stream } { diff --git a/packages/transport-webrtc/test/transport.browser.spec.ts b/packages/transport-webrtc/test/transport.browser.spec.ts index dea6c68fbd..ea7b56d545 100644 --- a/packages/transport-webrtc/test/transport.browser.spec.ts +++ b/packages/transport-webrtc/test/transport.browser.spec.ts @@ -1,14 +1,14 @@ /* eslint-disable @typescript-eslint/no-floating-promises */ -import { mockMetrics, mockUpgrader } from '@libp2p/interface-mocks' -import { type CreateListenerOptions, symbol } from '@libp2p/interface-transport' +import { type CreateListenerOptions, symbol } from '@libp2p/interface/transport' +import { mockMetrics, mockUpgrader } from '@libp2p/interface-compliance-tests/mocks' import { createEd25519PeerId } from '@libp2p/peer-id-factory' import { multiaddr, type Multiaddr } from '@multiformats/multiaddr' import { expect, assert } from 'aegir/chai' import { UnimplementedError } from '../src/error.js' import * as underTest from '../src/private-to-public/transport.js' import { expectError } from './util.js' -import type { Metrics } from '@libp2p/interface-metrics' +import type { Metrics } from '@libp2p/interface/metrics' function ignoredDialOption (): CreateListenerOptions { const upgrader = mockUpgrader({}) diff --git a/packages/transport-webrtc/tsconfig.json b/packages/transport-webrtc/tsconfig.json index aa7a3a98ba..4008808465 100644 --- a/packages/transport-webrtc/tsconfig.json +++ b/packages/transport-webrtc/tsconfig.json @@ -10,31 +10,13 @@ ], "references": [ { - "path": "../interface-connection" + "path": "../interface" }, { - "path": "../interface-libp2p" + "path": "../interface-compliance-tests" }, { - "path": "../interface-metrics" - }, - { - "path": "../interface-mocks" - }, - { - "path": "../interface-peer-id" - }, - { - "path": "../interface-registrar" - }, - { - "path": "../interface-stream-muxer" - }, - { - "path": "../interface-transport" - }, - { - "path": "../interfaces" + "path": "../interface-internal" }, { "path": "../libp2p" From 231acf1ac8ee2c694c086b6bce961183c482a7e0 Mon Sep 17 00:00:00 2001 From: chad Date: Wed, 21 Jun 2023 16:22:10 -0500 Subject: [PATCH 3/8] deps: remove unused deps --- packages/transport-webrtc/package.json | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/packages/transport-webrtc/package.json b/packages/transport-webrtc/package.json index 5883b6fdbe..ae8207d884 100644 --- a/packages/transport-webrtc/package.json +++ b/packages/transport-webrtc/package.json @@ -46,13 +46,9 @@ }, "dependencies": { "@chainsafe/libp2p-noise": "^12.0.1", - "@libp2p/interface-connection": "^5.1.1", - "@libp2p/interface-metrics": "^4.0.8", - "@libp2p/interface-peer-id": "^2.0.2", - "@libp2p/interface-registrar": "^2.0.12", - "@libp2p/interface-stream-muxer": "^4.1.2", - "@libp2p/interface-transport": "^4.0.3", - "@libp2p/interfaces": "^3.3.2", + "@libp2p/interface": "^0.0.1", + "@libp2p/interface-compliance-tests": "^3.0.7", + "@libp2p/interface-internal": "^0.0.1", "@libp2p/logger": "^2.1.1", "@libp2p/peer-id": "^2.0.4", "@multiformats/mafmt": "^12.1.5", @@ -75,8 +71,6 @@ }, "devDependencies": { "@chainsafe/libp2p-yamux": "^4.0.2", - "@libp2p/interface-libp2p": "^3.2.0", - "@libp2p/interface-mocks": "^12.0.1", "@libp2p/peer-id-factory": "^2.0.4", "@libp2p/websockets": "^6.0.3", "@types/sinon": "^10.0.15", From 17c9a105a190d90e29b7f0bbf216a4b7aecfd675 Mon Sep 17 00:00:00 2001 From: chad Date: Thu, 29 Jun 2023 10:04:07 -0500 Subject: [PATCH 4/8] wip --- packages/transport-webrtc/chrome_output.txt | 4838 +++++++++++++++++ packages/transport-webrtc/package.json | 26 +- packages/transport-webrtc/src/stream.ts | 9 + packages/transport-webrtc/test/basics.spec.ts | 19 +- packages/transport-webrtc/webkit_output.txt | 1678 ++++++ 5 files changed, 6547 insertions(+), 23 deletions(-) create mode 100644 packages/transport-webrtc/chrome_output.txt create mode 100644 packages/transport-webrtc/webkit_output.txt diff --git a/packages/transport-webrtc/chrome_output.txt b/packages/transport-webrtc/chrome_output.txt new file mode 100644 index 0000000000..a7aad5cfaf --- /dev/null +++ b/packages/transport-webrtc/chrome_output.txt @@ -0,0 +1,4838 @@ + +> @libp2p/webrtc@2.0.10 test:chrome +> aegir test -g "basics" -t browser --cov + +build + +> @libp2p/webrtc@2.0.10 build +> aegir build + +[17:25:07] tsc [started] +[17:25:10] tsc [completed] +[17:25:10] esbuild [started] +[17:25:10] esbuild [completed] +test browser + + basics +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge await write lock +1ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +2ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +2ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:connection-manager:auto-dial:trace have enough connections 0/0 +0ms +libp2p:peer-store:trace all await read lock +7ms +libp2p:peer-store:trace all got read lock +1ms +libp2p:peer-store:trace all release read lock +4ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +8ms +libp2p:mss:select:trace select: read "/noise" +2ms +libp2p:noise:trace Stage 0 - Initiator starting to send first message. +0ms +libp2p:noise:trace Stage 0 - Initiator finished sending first message. +2ms +libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +1ms +libp2p:noise:trace Stage 1 - Initiator received the message. +38ms +libp2p:noise:trace Initiator going to check remote's signature... +0ms +libp2p:noise:trace All good with the signature! +4ms +libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms +libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +4ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +53ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +14ms +libp2p:mss:select:trace select: read "/yamux/1.0.0" +5ms +libp2p:yamux:trace muxer created +0ms +libp2p:yamux:trace muxer keepalive enabled interval=30000 +1ms +libp2p:peer-store:trace get await read lock +89ms +libp2p:yamux:trace new outgoing stream id=1 +3ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +1ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +5ms +libp2p:peer-store:trace get got read lock +3ms +libp2p:peer-store:trace get release read lock +1ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +1ms +libp2p:yamux:trace new outgoing stream id=3 +2ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +4ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=53 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +2ms +libp2p:yamux:trace new incoming stream id=2 +0ms +libp2p:yamux:trace stream received window update id=2 +1ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +1ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +1ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +0ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +1ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +10ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +1ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +3ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=357 +1ms +libp2p:yamux:trace stream sink ended id=2 +0ms +libp2p:yamux:trace stream close write id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +1ms +libp2p:yamux:trace stream close id=2 +0ms +libp2p:yamux:trace stream close read id=2 +0ms +libp2p:yamux:trace stream source ended id=2 +0ms +libp2p:yamux:trace stream finished id=2 +1ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +1ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +16ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +1ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +8ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace stream sink ended id=1 +1ms +libp2p:yamux:trace stream close write id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=1 +1ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=352 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=352 +1ms +libp2p:yamux:trace stream close id=1 +1ms +libp2p:yamux:trace stream close read id=1 +1ms +libp2p:yamux:trace stream source ended id=1 +0ms +libp2p:yamux:trace stream finished id=1 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +5ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=53 +1ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +14ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=33 +1ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=33 +1ms +libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +2ms +libp2p:peer-store:trace merge await write lock +16ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=3 +2ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +0ms +libp2p:peer-store:trace get await read lock +6ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch await write lock +1ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +7ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=357 +1ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=3 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=277 +0ms +libp2p:yamux:trace stream received data id=3 +1ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=277 +0ms +libp2p:yamux:trace stream close id=3 +1ms +libp2p:yamux:trace stream close read id=3 +0ms +libp2p:yamux:trace stream source ended id=3 +0ms +libp2p:yamux:trace stream close write id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=3 +0ms +libp2p:peer-store:trace merge await write lock +3ms +libp2p:yamux:trace stream sink ended id=3 +1ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace merge await write lock +19ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:connection-manager:auto-dial:trace have enough connections 0/0 +172ms +libp2p:peer-store:trace all await read lock +1ms +libp2p:peer-store:trace all got read lock +1ms +libp2p:peer-store:trace all release read lock +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +40ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +2ms +libp2p:mss:select:trace select: read "/noise" +0ms +libp2p:noise:trace Stage 0 - Initiator starting to send first message. +106ms +libp2p:noise:trace Stage 0 - Initiator finished sending first message. +1ms +libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +1ms +libp2p:noise:trace Stage 1 - Initiator received the message. +7ms +libp2p:noise:trace Initiator going to check remote's signature... +1ms +libp2p:noise:trace All good with the signature! +3ms +libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms +libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +1ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +17ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +6ms +libp2p:mss:select:trace select: read "/yamux/1.0.0" +0ms +libp2p:yamux:trace muxer created +51ms +libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms +libp2p:peer-store:trace get await read lock +28ms +libp2p:yamux:trace new outgoing stream id=1 +1ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +1ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +2ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +1ms +libp2p:yamux:trace new outgoing stream id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +1ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=53 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +2ms +libp2p:yamux:trace new incoming stream id=2 +0ms +libp2p:yamux:trace stream received window update id=2 +1ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +0ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +1ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +100ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +1ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +1ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +9ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +3ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace get await read lock +1ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +2ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=357 +0ms +libp2p:yamux:trace stream sink ended id=2 +1ms +libp2p:yamux:trace stream close write id=2 +1ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream close id=2 +0ms +libp2p:yamux:trace stream close read id=2 +0ms +libp2p:yamux:trace stream source ended id=2 +0ms +libp2p:yamux:trace stream finished id=2 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +2ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +17ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +1ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +8ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace stream sink ended id=1 +1ms +libp2p:yamux:trace stream close write id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=352 +2ms +libp2p:yamux:trace stream received data id=1 +1ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=352 +0ms +libp2p:yamux:trace stream close id=1 +1ms +libp2p:yamux:trace stream close read id=1 +0ms +libp2p:yamux:trace stream source ended id=1 +0ms +libp2p:yamux:trace stream finished id=1 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +2ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=53 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=3 +1ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +9ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=33 +1ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=33 +0ms +libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +2ms +libp2p:peer-store:trace merge await write lock +10ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=3 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=357 +0ms +libp2p:peer-store:trace get await read lock +5ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=3 +4ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=277 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=277 +1ms +libp2p:yamux:trace stream close id=3 +0ms +libp2p:yamux:trace stream close read id=3 +0ms +libp2p:yamux:trace stream source ended id=3 +0ms +libp2p:yamux:trace stream close write id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=3 +1ms +libp2p:peer-store:trace merge await write lock +2ms +libp2p:yamux:trace stream sink ended id=3 +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace merge await write lock +2ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace get await read lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:yamux:trace new outgoing stream id=5 +8ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:peer-store:trace get release read lock +2ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +18ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=53 +2ms +libp2p:peer-store:trace get await read lock +4ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace new outgoing stream id=5 +2ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=SYN length=0 +1ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/push/1.0.0"] +4ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=41 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=ACK length=53 +2ms +libp2p:yamux:trace stream received window update id=5 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +5ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=33 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=33 +1ms +libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +1ms +libp2p:peer-store:trace merge await write lock +7ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=88 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=ACK length=41 +2ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +7ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=21 +2ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=21 +0ms +libp2p:mss:select:trace select: read "/ipfs/id/push/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +7ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +2ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=668 +0ms +libp2p:yamux:trace stream sink ended id=5 +0ms +libp2p:yamux:trace stream close write id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream close id=5 +0ms +libp2p:yamux:trace stream close read id=5 +0ms +libp2p:yamux:trace stream source ended id=5 +0ms +libp2p:yamux:trace stream finished id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag=SYN length=0 +1ms +libp2p:yamux:trace new incoming stream id=4 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=54 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag=ACK length=54 +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +62ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=20 +1ms +libp2p:mss:handle:trace read "/libp2p/circuit/relay/0.2.0/stop" +0ms +libp2p:mss:handle:trace respond with "/libp2p/circuit/relay/0.2.0/stop" for "/libp2p/circuit/relay/0.2.0/stop" +1ms +libp2p:peer-store:trace merge await write lock +5ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=34 +1ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=88 +2ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=668 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=20 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=34 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=45 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=45 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=5 +2ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=5 +3ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=5 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=5 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +20ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +2ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +17ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=20 +0ms +libp2p:mss:handle:trace read "/noise" +0ms +libp2p:mss:handle:trace respond with "/noise" for "/noise" +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=8 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=20 +4ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +9ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=8 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=8 +1ms +libp2p:mss:select:trace select: read "/noise" +1ms +libp2p:noise:trace Stage 0 - Responder waiting to receive first message... +106ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=8 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:noise:trace Stage 0 - Initiator starting to send first message. +1ms +libp2p:noise:trace Stage 0 - Initiator finished sending first message. +1ms +libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=34 +3ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=34 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=34 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=34 +0ms +libp2p:noise:trace Stage 0 - Responder received first message. +3ms +libp2p:noise:trace Stage 1 - Responder sending out first message with signed payload and static key. +0ms +libp2p:noise:trace Stage 1 - Responder sent the second handshake message with signed payload. +4ms +libp2p:noise:trace Stage 2 - Responder waiting for third handshake message... +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=204 +4ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=204 +2ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=204 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=204 +0ms +libp2p:noise:trace Stage 1 - Initiator received the message. +5ms +libp2p:noise:trace Initiator going to check remote's signature... +0ms +libp2p:noise:trace All good with the signature! +3ms +libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms +libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=172 +7ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +20ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=50 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=172 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=172 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=172 +1ms +libp2p:noise:trace Stage 2 - Responder received the message, finished handshake. +6ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +3ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +2ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=50 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=50 +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +35ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:mss:handle:trace read "/yamux/1.0.0" +1ms +libp2p:mss:handle:trace respond with "/yamux/1.0.0" for "/yamux/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +0ms +libp2p:yamux:trace muxer created +0ms +libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms +libp2p:peer-store:trace get await read lock +54ms +libp2p:yamux:trace new outgoing stream id=2 +1ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +11ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +1ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=36 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=30 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=52 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +10ms +libp2p:yamux:trace stream received window update id=5 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=50 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +2ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=30 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +20ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=30 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=30 +1ms +libp2p:mss:select:trace select: read "/yamux/1.0.0" +2ms +libp2p:yamux:trace muxer created +0ms +libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms +libp2p:peer-store:trace get await read lock +22ms +libp2p:yamux:trace new outgoing stream id=1 +1ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +1ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace new outgoing stream id=3 +1ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/webrtc-signaling/0.0.1"] +1ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=45 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=52 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=61 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +4ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:yamux:trace new incoming stream id=2 +0ms +libp2p:yamux:trace stream received window update id=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +6ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=52 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +0ms +libp2p:yamux:trace stream received data id=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=52 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=52 +1ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +50ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +1ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +0ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +26ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=36 +0ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +2ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=32 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +4ms +libp2p:yamux:trace stream received window update id=5 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=52 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=61 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=SYN length=0 +1ms +libp2p:yamux:trace new incoming stream id=1 +0ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:yamux:trace new incoming stream id=3 +1ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=36 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=52 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=52 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=ACK length=36 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +25ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=20 +0ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +0ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +22ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=16 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +1ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +2ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=32 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +3ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=45 +2ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=61 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=61 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=ACK length=45 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +16ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=20 +0ms +libp2p:mss:handle:trace read "/webrtc-signaling/0.0.1" +1ms +libp2p:mss:handle:trace respond with "/webrtc-signaling/0.0.1" for "/webrtc-signaling/0.0.1" +0ms +libp2p:peer-store:trace merge await write lock +15ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=25 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +185ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=41 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=36 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=32 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=ACK length=36 +0ms +libp2p:yamux:trace stream received window update id=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=36 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=36 +1ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +264ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=16 +0ms +libp2p:yamux:trace stream received data id=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=32 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=32 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=16 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +5ms +libp2p:peer-store:trace merge await write lock +200ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace stream sink ended id=2 +1ms +libp2p:yamux:trace stream close write id=2 +1ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:webrtc:peer:trace dialing address: +0ms { + bytes: { + '0': 4, + '1': 127, + '2': 0, + '3': 0, + '4': 1, + '5': 6, + '6': 243, + '7': 190, + '8': 221, + '9': 3, + '10': 165, + '11': 3, + '12': 38, + '13': 0, + '14': 36, + '15': 8, + '16': 1, + '17': 18, + '18': 32, + '19': 225, + '20': 122, + '21': 160, + '22': 92, + '23': 34, + '24': 165, + '25': 112, + '26': 169, + '27': 165, + '28': 157, + '29': 91, + '30': 39, + '31': 212, + '32': 8, + '33': 211, + '34': 84, + '35': 177, + '36': 12, + '37': 67, + '38': 157, + '39': 239, + '40': 206, + '41': 48, + '42': 119, + '43': 145, + '44': 45, + '45': 182, + '46': 96, + '47': 31, + '48': 217, + '49': 51, + '50': 134, + '51': 162, + '52': 2, + '53': 153, + '54': 2, + '55': 165, + '56': 3, + '57': 38, + '58': 0, + '59': 36, + '60': 8, + '61': 1, + '62': 18, + '63': 32, + '64': 32, + '65': 223, + '66': 178, + '67': 182, + '68': 81, + '69': 205, + '70': 25, + '71': 197, + '72': 192, + '73': 144, + '74': 23, + '75': 25, + '76': 204, + '77': 186, + '78': 179, + '79': 214, + '80': 238, + '81': 164, + '82': 75, + '83': 239, + '84': 240, + '85': 178, + '86': 254, + '87': 186, + '88': 178, + '89': 197, + '90': 169, + '91': 154, + '92': 111, + '93': 82, + '94': 4, + '95': 160 + } +} +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=32 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +0ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +14ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +0ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=32 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=32 +1ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +3ms +libp2p:peer-store:trace merge await write lock +16ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace stream sink ended id=1 +1ms +libp2p:yamux:trace stream close write id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=45 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +9ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=25 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=41 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=41 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=41 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=25 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:mss:select:trace select: read "/webrtc-signaling/0.0.1" +9ms +libp2p:peer-store:trace merge await write lock +17ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +4ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace stream received window update id=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +0ms +libp2p:yamux:trace stream received window update id=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +1ms +libp2p:yamux:trace stream received window update id=2 +0ms +libp2p:yamux:trace stream close read id=2 +0ms +libp2p:yamux:trace stream source ended id=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=789 +1ms +libp2p:yamux:trace stream sink ended id=2 +0ms +libp2p:yamux:trace stream close write id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream close id=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=18 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=805 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +2ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=16 +0ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace stream close read id=1 +0ms +libp2p:yamux:trace stream source ended id=1 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=20 +1ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=802 +0ms +libp2p:yamux:trace stream sink ended id=1 +0ms +libp2p:yamux:trace stream close write id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=1 +1ms +libp2p:yamux:trace stream close id=1 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=18 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=818 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=465 +3ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=481 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=25 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=18 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=18 +5ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=789 +6ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=805 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=805 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=789 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream close id=2 +0ms +libp2p:yamux:trace stream close read id=2 +0ms +libp2p:yamux:trace stream source ended id=2 +1ms +libp2p:yamux:trace stream finished id=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +2ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=18 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=805 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=1 +9ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +6ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=18 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=818 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=18 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=18 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +13ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +3ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=802 +0ms +libp2p:yamux:trace stream received data id=1 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=818 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=818 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=802 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream close id=1 +0ms +libp2p:yamux:trace stream close read id=1 +0ms +libp2p:yamux:trace stream source ended id=1 +0ms +libp2p:yamux:trace stream finished id=1 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +3ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:peer-store:trace get await read lock +116ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +13ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +3ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=481 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=789 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:peer-store:trace get await read lock +16ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +3ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=465 +1ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=481 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=481 +1ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=465 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=802 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=464 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=480 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +3ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=465 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=464 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=480 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=480 +1ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=464 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=216 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=232 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=480 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=464 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=216 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=232 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=232 +1ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=216 +0ms +libp2p:webrtc:peer:util:trace received new ICE candidate: {"candidate":"candidate:3194440249 1 udp 2113937151 169a4ddd-84ab-47a5-be4b-d7d6c4967bb0.local 58979 typ host generation 0 ufrag MIgk network-cost 999","sdpMid":"0","sdpMLineIndex":0,"usernameFragment":"MIgk"} +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=232 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=216 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=216 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=232 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +4ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=216 +1ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=232 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +19ms connecting +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=5 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=21 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=232 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=232 +1ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=216 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:webrtc:peer:util:trace received new ICE candidate: {"candidate":"candidate:2542647581 1 udp 2113937151 169a4ddd-84ab-47a5-be4b-d7d6c4967bb0.local 51749 typ host generation 0 ufrag kGBx network-cost 999","sdpMid":"0","sdpMLineIndex":0,"usernameFragment":"kGBx"} +3ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms +libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +2ms connecting +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=21 +0ms +libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +2ms connected +libp2p:webrtc:stream:trace sending 0 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +4ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +205ms +libp2p:yamux:trace stream close id=3 +2ms +libp2p:yamux:trace stream close read id=3 +0ms +libp2p:yamux:trace stream source ended id=3 +0ms +libp2p:yamux:trace stream close write id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=3 +0ms +libp2p:yamux:trace stream sink ended id=3 +0ms +libp2p:connection-manager:auto-dial:trace have enough connections 2/0 +691ms +libp2p:webrtc:stream:trace sending 39 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: connecting +0ms +libp2p:yamux:trace muxer close reason=InternalError +2ms +libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +0ms +libp2p:yamux:trace muxer source ended +0ms +libp2p:yamux:trace stream sink ended id=5 +0ms +libp2p:yamux:trace stream close write id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace muxer sink ended +0ms +libp2p:yamux:trace stream close id=5 +1ms +libp2p:yamux:trace stream close read id=5 +0ms +libp2p:yamux:trace stream source ended id=5 +0ms +libp2p:yamux:trace stream finished id=5 +1ms +libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +11ms connected +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +7ms +libp2p:yamux:trace stream close id=3 +3ms +libp2p:yamux:trace stream close read id=3 +0ms +libp2p:yamux:trace stream source ended id=3 +1ms +libp2p:yamux:trace stream close write id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=3 +0ms +libp2p:yamux:trace stream sink ended id=3 +0ms +libp2p:connection-manager:auto-dial:trace have enough connections 2/0 +7ms +libp2p:webrtc:stream:trace sending 39 bytes +8ms +libp2p:webrtc:stream:trace channel ready state: connecting +0ms +libp2p:yamux:trace muxer close reason=InternalError +1ms +libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +0ms +libp2p:yamux:trace muxer source ended +0ms +libp2p:yamux:trace stream sink ended id=4 +1ms +libp2p:yamux:trace stream close write id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace muxer sink ended +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=21 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +8ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: closed +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +1ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: closed +0ms +libp2p:webrtc:stream:trace sending 39 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 0 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 39 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 0 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=21 +4ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=21 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag=FIN length=0 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace stream close read id=4 +0ms +libp2p:yamux:trace stream source ended id=4 +0ms +libp2p:yamux:trace stream finished id=4 +0ms +libp2p:peer-store:trace get await read lock +91ms +libp2p:connection-manager:auto-dial:trace have enough connections 1/0 +14ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace muxer sink ended +2ms +libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +0ms +libp2p:yamux:trace muxer source ended +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +466ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:webrtc:stream:trace sending 23 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +3ms +libp2p:peer-store:trace merge got write lock +2ms +libp2p:webrtc:stream:trace sending 19 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace merge release write lock +2ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +6ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +1ms +libp2p:webrtc:stream:trace sending 23 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +0ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +3ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:webrtc:stream:trace sending 19 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace merge release write lock +3ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:webrtc:stream:trace sending 5 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 402 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +0ms +libp2p:webrtc:stream:trace sending 3 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace get await read lock +3ms +libp2p:connection-manager:auto-dial:trace have enough connections 1/0 +19ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace muxer sink ended +18ms +libp2p:yamux:trace muxer close reason=NormalTermination +0ms +libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=0 +0ms +libp2p:yamux:trace muxer source ended +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/echo/1.0.0"] +36ms +libp2p:webrtc:stream:trace sending 36 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: connecting +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +2ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +4ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +3ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 36 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 0 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +3ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +3ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +3ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:peer-store:trace patch await write lock +2ms +libp2p:peer-store:trace patch got write lock +1ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:webrtc:stream:trace sending 5 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 804 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +0ms +libp2p:webrtc:stream:trace sending 3 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +21ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:webrtc:stream:trace sending 23 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:mss:handle:trace read "/echo/1.0.0" +0ms +libp2p:mss:handle:trace respond with "/echo/1.0.0" for "/echo/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +4ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:webrtc:stream:trace sending 16 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +2ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +12ms +libp2p:mss:select:trace select: read "/echo/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +4ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:webrtc:stream:trace sending 13 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 13 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +0ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace get await read lock +5ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:webrtc:stream:trace sending 13 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 13 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +1ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +0ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms +libp2p:webrtc:stream:trace sending 3 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +  ✅ can dial through a relay (697ms) +libp2p:webrtc:connection:trace closing connection +0ms +libp2p:peer-store:trace get await read lock +12ms +libp2p:peer-store:trace patch await write lock +2ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:peer-store:trace patch await write lock +1ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:webrtc:connection:trace closing connection +5ms +libp2p:peer-store:trace get await read lock +1ms +libp2p:peer-store:trace patch await write lock +1ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +1ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:peer-store:trace patch got write lock +1ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:peer-store:trace get await read lock +10ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace get await read lock +1ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace get await read lock +1ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace get await read lock +1ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace get await read lock +1ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace merge await write lock +16ms +libp2p:peer-store:trace merge await write lock +1ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:connection-manager:auto-dial:trace have enough connections 0/0 +81ms +libp2p:peer-store:trace all await read lock +1ms +libp2p:peer-store:trace all got read lock +1ms +libp2p:peer-store:trace all release read lock +1ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +65ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +1ms +libp2p:mss:select:trace select: read "/noise" +1ms +libp2p:noise:trace Stage 0 - Initiator starting to send first message. +668ms +libp2p:noise:trace Stage 0 - Initiator finished sending first message. +2ms +libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +0ms +libp2p:noise:trace Stage 1 - Initiator received the message. +8ms +libp2p:noise:trace Initiator going to check remote's signature... +0ms +libp2p:noise:trace All good with the signature! +3ms +libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms +libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +2ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +16ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +4ms +libp2p:mss:select:trace select: read "/yamux/1.0.0" +1ms +libp2p:yamux:trace muxer created +108ms +libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms +libp2p:peer-store:trace get await read lock +26ms +libp2p:yamux:trace new outgoing stream id=1 +1ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +1ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +1ms +libp2p:yamux:trace new outgoing stream id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +1ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=53 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:yamux:trace new incoming stream id=2 +0ms +libp2p:yamux:trace stream received window update id=2 +1ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +0ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +98ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +1ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +0ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +4ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +1ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +1ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=357 +0ms +libp2p:yamux:trace stream sink ended id=2 +0ms +libp2p:yamux:trace stream close write id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream close id=2 +1ms +libp2p:yamux:trace stream close read id=2 +0ms +libp2p:yamux:trace stream source ended id=2 +0ms +libp2p:yamux:trace stream finished id=2 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +1ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +8ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +1ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +4ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace stream sink ended id=1 +1ms +libp2p:yamux:trace stream close write id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=352 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=352 +0ms +libp2p:yamux:trace stream close id=1 +0ms +libp2p:yamux:trace stream close read id=1 +0ms +libp2p:yamux:trace stream source ended id=1 +1ms +libp2p:yamux:trace stream finished id=1 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +1ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=53 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +1ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +6ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=33 +1ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=33 +0ms +libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +1ms +libp2p:peer-store:trace merge await write lock +6ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=3 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=357 +1ms +libp2p:peer-store:trace get await read lock +5ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=3 +5ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=277 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=277 +0ms +libp2p:yamux:trace stream close id=3 +0ms +libp2p:yamux:trace stream close read id=3 +1ms +libp2p:yamux:trace stream source ended id=3 +0ms +libp2p:yamux:trace stream close write id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=3 +0ms +libp2p:peer-store:trace merge await write lock +2ms +libp2p:yamux:trace stream sink ended id=3 +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace merge await write lock +17ms +libp2p:peer-store:trace merge await write lock +1ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:connection-manager:auto-dial:trace have enough connections 0/0 +75ms +libp2p:peer-store:trace all await read lock +0ms +libp2p:peer-store:trace all got read lock +1ms +libp2p:peer-store:trace all release read lock +1ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +34ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +2ms +libp2p:mss:select:trace select: read "/noise" +0ms +libp2p:noise:trace Stage 0 - Initiator starting to send first message. +60ms +libp2p:noise:trace Stage 0 - Initiator finished sending first message. +2ms +libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +0ms +libp2p:noise:trace Stage 1 - Initiator received the message. +7ms +libp2p:noise:trace Initiator going to check remote's signature... +0ms +libp2p:noise:trace All good with the signature! +3ms +libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms +libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +1ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +14ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +4ms +libp2p:mss:select:trace select: read "/yamux/1.0.0" +2ms +libp2p:yamux:trace muxer created +47ms +libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms +libp2p:peer-store:trace get await read lock +24ms +libp2p:yamux:trace new outgoing stream id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +1ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +1ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +0ms +libp2p:yamux:trace new outgoing stream id=3 +1ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +1ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=53 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +1ms +libp2p:yamux:trace new incoming stream id=2 +0ms +libp2p:yamux:trace stream received window update id=2 +0ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +0ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +1ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +73ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +0ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +4ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace get await read lock +1ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=357 +1ms +libp2p:yamux:trace stream sink ended id=2 +0ms +libp2p:yamux:trace stream close write id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream close id=2 +0ms +libp2p:yamux:trace stream close read id=2 +0ms +libp2p:yamux:trace stream source ended id=2 +0ms +libp2p:yamux:trace stream finished id=2 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +1ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +7ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +0ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +2ms +libp2p:peer-store:trace merge await write lock +5ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace stream sink ended id=1 +2ms +libp2p:yamux:trace stream close write id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=352 +0ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=352 +0ms +libp2p:yamux:trace stream close id=1 +1ms +libp2p:yamux:trace stream close read id=1 +0ms +libp2p:yamux:trace stream source ended id=1 +0ms +libp2p:yamux:trace stream finished id=1 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +2ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=53 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +6ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=33 +1ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=33 +0ms +libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +1ms +libp2p:peer-store:trace merge await write lock +8ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=3 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +1ms +libp2p:peer-store:trace get await read lock +3ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +4ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=357 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=3 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=277 +1ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=277 +0ms +libp2p:yamux:trace stream close id=3 +0ms +libp2p:yamux:trace stream close read id=3 +0ms +libp2p:yamux:trace stream source ended id=3 +0ms +libp2p:yamux:trace stream close write id=3 +1ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=3 +0ms +libp2p:peer-store:trace merge await write lock +4ms +libp2p:yamux:trace stream sink ended id=3 +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace merge await write lock +3ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace get await read lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:yamux:trace new outgoing stream id=5 +7ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:peer-store:trace get release read lock +2ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +16ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=53 +1ms +libp2p:peer-store:trace get await read lock +3ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +1ms +libp2p:yamux:trace new outgoing stream id=5 +4ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/push/1.0.0"] +5ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=41 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=ACK length=53 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +3ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=33 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=33 +1ms +libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +1ms +libp2p:peer-store:trace merge await write lock +5ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=88 +2ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=ACK length=41 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +5ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=21 +1ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=21 +0ms +libp2p:mss:select:trace select: read "/ipfs/id/push/1.0.0" +2ms +libp2p:peer-store:trace merge await write lock +6ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +2ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=668 +0ms +libp2p:yamux:trace stream sink ended id=5 +0ms +libp2p:yamux:trace stream close write id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream close id=5 +0ms +libp2p:yamux:trace stream close read id=5 +1ms +libp2p:yamux:trace stream source ended id=5 +0ms +libp2p:yamux:trace stream finished id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:yamux:trace new incoming stream id=4 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=54 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag=ACK length=54 +2ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +52ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=20 +4ms +libp2p:mss:handle:trace read "/libp2p/circuit/relay/0.2.0/stop" +1ms +libp2p:mss:handle:trace respond with "/libp2p/circuit/relay/0.2.0/stop" for "/libp2p/circuit/relay/0.2.0/stop" +1ms +libp2p:peer-store:trace merge await write lock +10ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=34 +2ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=88 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=668 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=20 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=34 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=45 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=45 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=5 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=5 +3ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=5 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=5 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +21ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +2ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +14ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=20 +0ms +libp2p:mss:handle:trace read "/noise" +1ms +libp2p:mss:handle:trace respond with "/noise" for "/noise" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=8 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=20 +3ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=8 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:noise:trace Stage 0 - Responder waiting to receive first message... +85ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +9ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=8 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=8 +1ms +libp2p:mss:select:trace select: read "/noise" +1ms +libp2p:noise:trace Stage 0 - Initiator starting to send first message. +3ms +libp2p:noise:trace Stage 0 - Initiator finished sending first message. +2ms +libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=34 +3ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=34 +2ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=34 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=34 +1ms +libp2p:noise:trace Stage 0 - Responder received first message. +3ms +libp2p:noise:trace Stage 1 - Responder sending out first message with signed payload and static key. +0ms +libp2p:noise:trace Stage 1 - Responder sent the second handshake message with signed payload. +4ms +libp2p:noise:trace Stage 2 - Responder waiting for third handshake message... +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=204 +4ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=204 +2ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=204 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=204 +0ms +libp2p:noise:trace Stage 1 - Initiator received the message. +6ms +libp2p:noise:trace Initiator going to check remote's signature... +0ms +libp2p:noise:trace All good with the signature! +3ms +libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms +libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=172 +8ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +21ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=50 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=172 +3ms +libp2p:yamux:trace stream received window update id=5 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=172 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=172 +1ms +libp2p:noise:trace Stage 2 - Responder received the message, finished handshake. +7ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +2ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +2ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=50 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=50 +1ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +38ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:mss:handle:trace read "/yamux/1.0.0" +0ms +libp2p:mss:handle:trace respond with "/yamux/1.0.0" for "/yamux/1.0.0" +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +1ms +libp2p:yamux:trace muxer created +0ms +libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms +libp2p:peer-store:trace get await read lock +53ms +libp2p:yamux:trace new outgoing stream id=2 +1ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +13ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=36 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=30 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=52 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=50 +11ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=30 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +21ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=30 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=30 +1ms +libp2p:mss:select:trace select: read "/yamux/1.0.0" +2ms +libp2p:yamux:trace muxer created +0ms +libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms +libp2p:peer-store:trace get await read lock +24ms +libp2p:yamux:trace new outgoing stream id=1 +1ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +2ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace new outgoing stream id=3 +1ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/webrtc-signaling/0.0.1"] +1ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +1ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=45 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=52 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=61 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +10ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:yamux:trace new incoming stream id=2 +0ms +libp2p:yamux:trace stream received window update id=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +0ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=52 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=52 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +49ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +0ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +24ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:peer-store:trace merge release write lock +2ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=36 +0ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +2ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=32 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +4ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=52 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=52 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=61 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:yamux:trace new incoming stream id=1 +0ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:yamux:trace new incoming stream id=3 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=36 +0ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=52 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=52 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=ACK length=36 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +26ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=20 +0ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +0ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +24ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +2ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=16 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +1ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=32 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +5ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +39ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=45 +3ms +libp2p:yamux:trace stream received data id=3 +2ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=61 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=61 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=ACK length=45 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +56ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=20 +0ms +libp2p:mss:handle:trace read "/webrtc-signaling/0.0.1" +0ms +libp2p:mss:handle:trace respond with "/webrtc-signaling/0.0.1" for "/webrtc-signaling/0.0.1" +1ms +libp2p:peer-store:trace merge await write lock +55ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=25 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +2ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +2ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=41 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +4ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=ACK length=36 +1ms +libp2p:yamux:trace stream received window update id=2 +4ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +4ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +2ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=20 +5ms +libp2p:yamux:trace stream received data id=2 +2ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=36 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=36 +1ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +142ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +3ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=16 +1ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=32 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=32 +1ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=16 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +7ms +libp2p:peer-store:trace merge await write lock +41ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace stream sink ended id=2 +1ms +libp2p:yamux:trace stream close write id=2 +1ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=36 +2ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=32 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=32 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=41 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +1ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +1ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +24ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +0ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=32 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=32 +1ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +5ms +libp2p:peer-store:trace merge await write lock +28ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace stream sink ended id=1 +2ms +libp2p:yamux:trace stream close write id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +2ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=45 +0ms +libp2p:yamux:trace stream received window update id=3 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=3 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +1ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +13ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +3ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=25 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=41 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=41 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=25 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:mss:select:trace select: read "/webrtc-signaling/0.0.1" +8ms +libp2p:peer-store:trace merge await write lock +19ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +4ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace stream received window update id=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +0ms +libp2p:yamux:trace stream received window update id=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream received window update id=2 +0ms +libp2p:yamux:trace stream close read id=2 +0ms +libp2p:yamux:trace stream source ended id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=789 +0ms +libp2p:yamux:trace stream sink ended id=2 +0ms +libp2p:yamux:trace stream close write id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream close id=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=18 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=805 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +4ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=465 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=481 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +2ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=802 +0ms +libp2p:yamux:trace stream sink ended id=1 +0ms +libp2p:yamux:trace stream close write id=1 +1ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream close id=1 +0ms +libp2p:yamux:trace stream close read id=1 +0ms +libp2p:yamux:trace stream source ended id=1 +0ms +libp2p:yamux:trace stream finished id=1 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=18 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=818 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +2ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=16 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +2ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +3ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +2ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=25 +1ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=2 +2ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=18 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=18 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=789 +0ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=18 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=805 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=805 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=805 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=789 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream close id=2 +0ms +libp2p:yamux:trace stream close read id=2 +0ms +libp2p:yamux:trace stream source ended id=2 +0ms +libp2p:yamux:trace stream finished id=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +2ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=465 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=481 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=481 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=465 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=18 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=818 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=481 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=18 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=18 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=802 +0ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=818 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=818 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=802 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream close id=1 +0ms +libp2p:yamux:trace stream close read id=1 +0ms +libp2p:yamux:trace stream source ended id=1 +0ms +libp2p:yamux:trace stream finished id=1 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +2ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +0ms +libp2p:peer-store:trace get await read lock +89ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +1ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +3ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +2ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=789 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=465 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:peer-store:trace get await read lock +10ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +3ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=802 +1ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=461 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=477 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +6ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=461 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=477 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=477 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=461 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=477 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=216 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=232 +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=216 +3ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=232 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +11ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=461 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=216 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=232 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=232 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=216 +0ms +libp2p:webrtc:peer:util:trace received new ICE candidate: {"candidate":"candidate:2713023471 1 udp 2113937151 169a4ddd-84ab-47a5-be4b-d7d6c4967bb0.local 54423 typ host generation 0 ufrag s2rx network-cost 999","sdpMid":"0","sdpMLineIndex":0,"usernameFragment":"s2rx"} +699ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +2ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=232 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=232 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=216 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=232 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=232 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=216 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:webrtc:peer:util:trace received new ICE candidate: {"candidate":"candidate:1369315953 1 udp 2113937151 169a4ddd-84ab-47a5-be4b-d7d6c4967bb0.local 53243 typ host generation 0 ufrag p/It network-cost 999","sdpMid":"0","sdpMLineIndex":0,"usernameFragment":"p/It"} +7ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=216 +0ms +libp2p:yamux:trace stream received window update id=3 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=216 +0ms +libp2p:yamux:trace stream received window update id=3 +1ms +libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +7ms connecting +libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +0ms connecting +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=21 +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=5 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=21 +0ms +libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +2ms connected +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +162ms +libp2p:yamux:trace stream close id=3 +5ms +libp2p:yamux:trace stream close read id=3 +0ms +libp2p:yamux:trace stream source ended id=3 +0ms +libp2p:yamux:trace stream close write id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=3 +0ms +libp2p:yamux:trace stream sink ended id=3 +1ms +libp2p:connection-manager:auto-dial:trace have enough connections 2/0 +529ms +libp2p:webrtc:stream:trace sending 39 bytes +655ms +libp2p:webrtc:stream:trace channel ready state: connecting +0ms +libp2p:yamux:trace muxer close reason=InternalError +0ms +libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +0ms +libp2p:yamux:trace muxer source ended +0ms +libp2p:yamux:trace stream sink ended id=5 +1ms +libp2p:yamux:trace stream close write id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace muxer sink ended +0ms +libp2p:yamux:trace stream close id=5 +0ms +libp2p:yamux:trace stream close read id=5 +0ms +libp2p:yamux:trace stream source ended id=5 +0ms +libp2p:yamux:trace stream finished id=5 +1ms +libp2p:webrtc:stream:trace sending 39 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 0 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +4ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=5 +1ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=21 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=21 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=5 +0ms +libp2p:webrtc:peer:util:trace end-of-candidates received +16ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=21 +2ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +3ms connected +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +19ms +libp2p:yamux:trace stream close id=3 +5ms +libp2p:yamux:trace stream close read id=3 +0ms +libp2p:yamux:trace stream source ended id=3 +0ms +libp2p:yamux:trace stream close write id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=3 +0ms +libp2p:yamux:trace stream sink ended id=3 +1ms +libp2p:connection-manager:auto-dial:trace have enough connections 2/0 +19ms +libp2p:webrtc:stream:trace sending 39 bytes +14ms +libp2p:webrtc:stream:trace channel ready state: connecting +0ms +libp2p:yamux:trace muxer close reason=InternalError +0ms +libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +0ms +libp2p:yamux:trace muxer source ended +1ms +libp2p:yamux:trace stream sink ended id=4 +0ms +libp2p:yamux:trace stream close write id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace muxer sink ended +0ms +libp2p:peer-store:trace get await read lock +83ms +libp2p:connection-manager:auto-dial:trace have enough connections 1/0 +4ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace muxer sink ended +3ms +libp2p:yamux:trace muxer close reason=NormalTermination +0ms +libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=0 +1ms +libp2p:yamux:trace muxer source ended +0ms +libp2p:yamux:trace stream close id=4 +0ms +libp2p:yamux:trace stream close read id=4 +0ms +libp2p:yamux:trace stream source ended id=4 +0ms +libp2p:yamux:trace stream finished id=4 +0ms +libp2p:webrtc:stream:trace sending 39 bytes +6ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 0 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace get await read lock +4ms +libp2p:connection-manager:auto-dial:trace have enough connections 1/0 +5ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace muxer sink ended +4ms +libp2p:yamux:trace muxer close reason=NormalTermination +1ms +libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=0 +0ms +libp2p:yamux:trace muxer source ended +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/echo/1.0.0"] +12ms +libp2p:webrtc:stream:trace sending 36 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: connecting +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +285ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:webrtc:stream:trace sending 23 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +3ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:webrtc:stream:trace sending 19 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:webrtc:stream:trace sending 5 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 402 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +0ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 36 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 0 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +5ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +3ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:webrtc:stream:trace Sending flag: FIN +1ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:peer-store:trace patch await write lock +1ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +7ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:webrtc:stream:trace sending 23 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:mss:handle:trace read "/echo/1.0.0" +0ms +libp2p:mss:handle:trace respond with "/echo/1.0.0" for "/echo/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +1ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:webrtc:stream:trace sending 16 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +4ms +libp2p:mss:select:trace select: read "/echo/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +1ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 197 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 197 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 197 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 197 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +5ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 197 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +1ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +6ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +8ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +13ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +10ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +17ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +8ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 197 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +6ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace patch await write lock +313ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:peer-store:trace patch await write lock +4ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +9ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +7ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +6ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +6ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +6ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +6ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +7ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +7ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +6ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +10ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 197 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +10ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +10ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +10ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +23ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +17ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +7ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +13ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +8ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +8ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +8ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +15ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +6ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +8ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +9ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +6ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +11ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +11ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 197 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +11ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +13ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +11ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +11ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +10ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +9ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +8ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +6ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +18ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +6ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +10ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +10ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +9ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 197 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +8ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +7ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +9ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace patch await write lock +668ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace patch await write lock +5ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +8ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +11ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +4ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +8ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +8ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +8ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +9ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +7ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +12ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 16387 bytes +8ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 197 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +0ms +libp2p:webrtc:peer:trace dialing address: +871ms { + bytes: { + '0': 4, + '1': 127, + '2': 0, + '3': 0, + '4': 1, + '5': 6, + '6': 243, + '7': 190, + '8': 221, + '9': 3, + '10': 165, + '11': 3, + '12': 38, + '13': 0, + '14': 36, + '15': 8, + '16': 1, + '17': 18, + '18': 32, + '19': 225, + '20': 122, + '21': 160, + '22': 92, + '23': 34, + '24': 165, + '25': 112, + '26': 169, + '27': 165, + '28': 157, + '29': 91, + '30': 39, + '31': 212, + '32': 8, + '33': 211, + '34': 84, + '35': 177, + '36': 12, + '37': 67, + '38': 157, + '39': 239, + '40': 206, + '41': 48, + '42': 119, + '43': 145, + '44': 45, + '45': 182, + '46': 96, + '47': 31, + '48': 217, + '49': 51, + '50': 134, + '51': 162, + '52': 2, + '53': 153, + '54': 2, + '55': 165, + '56': 3, + '57': 38, + '58': 0, + '59': 36, + '60': 8, + '61': 1, + '62': 18, + '63': 32, + '64': 236, + '65': 222, + '66': 174, + '67': 7, + '68': 89, + '69': 50, + '70': 8, + '71': 207, + '72': 220, + '73': 176, + '74': 231, + '75': 23, + '76': 174, + '77': 74, + '78': 101, + '79': 81, + '80': 239, + '81': 33, + '82': 150, + '83': 120, + '84': 233, + '85': 111, + '86': 179, + '87': 154, + '88': 232, + '89': 97, + '90': 183, + '91': 124, + '92': 227, + '93': 157, + '94': 102, + '95': 149 + } +} +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +175ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +  ✅ can send a large file (1864ms) +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +89ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +1ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:connection:trace closing connection +2s +libp2p:peer-store:trace get await read lock +362ms +libp2p:peer-store:trace patch await write lock +2ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch got write lock +1ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:peer-store:trace patch got write lock +1ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +5ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:webrtc:stream:trace Sending flag: FIN +0ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:connection:trace closing connection +6ms +libp2p:peer-store:trace get await read lock +1ms +libp2p:peer-store:trace patch await write lock +2ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +  2 passing (3s) +libp2p:peer-store:trace get await read lock +7ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace get await read lock +1ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch await write lock +983ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:peer-store:trace patch await write lock +2ms +libp2p:peer-store:trace patch got write lock +1ms +libp2p:peer-store:trace patch release write lock +0ms diff --git a/packages/transport-webrtc/package.json b/packages/transport-webrtc/package.json index ae8207d884..0884354dce 100644 --- a/packages/transport-webrtc/package.json +++ b/packages/transport-webrtc/package.json @@ -36,22 +36,21 @@ "generate": "protons src/private-to-private/pb/message.proto src/pb/message.proto", "build": "aegir build", "test": "aegir test -t browser", - "test:chrome": "aegir test -t browser --cov", + "test:chrome": "aegir test -g \"basics\" -t browser --cov", "test:firefox": "aegir test -t browser -- --browser firefox", - "test:webkit": "aegir test -t browser -- --browser webkit", + "test:webkit": "aegir test -g \"basics\" -t browser -- --browser webkit", "lint": "aegir lint", "lint:fix": "aegir lint --fix", "clean": "aegir clean", - "dep-check": "aegir dep-check -i protons" + "dep-check": "aegir dep-check" }, "dependencies": { "@chainsafe/libp2p-noise": "^12.0.1", - "@libp2p/interface": "^0.0.1", - "@libp2p/interface-compliance-tests": "^3.0.7", - "@libp2p/interface-internal": "^0.0.1", - "@libp2p/logger": "^2.1.1", - "@libp2p/peer-id": "^2.0.4", - "@multiformats/mafmt": "^12.1.5", + "@libp2p/interface": "~0.0.1", + "@libp2p/interface-internal": "~0.0.1", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^2.0.0", + "@multiformats/mafmt": "^12.1.2", "@multiformats/multiaddr": "^12.1.3", "abortable-iterator": "^5.0.1", "detect-browser": "^5.3.0", @@ -70,16 +69,17 @@ "uint8arrays": "^4.0.4" }, "devDependencies": { - "@chainsafe/libp2p-yamux": "^4.0.2", - "@libp2p/peer-id-factory": "^2.0.4", - "@libp2p/websockets": "^6.0.3", + "@chainsafe/libp2p-yamux": "^4.0.1", + "@libp2p/interface-compliance-tests": "^3.0.0", + "@libp2p/peer-id-factory": "^2.0.0", + "@libp2p/websockets": "^6.0.0", "@types/sinon": "^10.0.15", "aegir": "^39.0.10", "delay": "^6.0.0", "it-length": "^3.0.2", "it-map": "^3.0.3", "it-pair": "^2.0.6", - "libp2p": "^0.45.9", + "libp2p": "^0.45.0", "protons": "^7.0.2", "sinon": "^15.1.2", "sinon-ts": "^1.0.0" diff --git a/packages/transport-webrtc/src/stream.ts b/packages/transport-webrtc/src/stream.ts index bc997397a8..ad7867ac44 100644 --- a/packages/transport-webrtc/src/stream.ts +++ b/packages/transport-webrtc/src/stream.ts @@ -7,6 +7,7 @@ import { pEvent, TimeoutError } from 'p-event' import { Uint8ArrayList } from 'uint8arraylist' import { Message } from './pb/message.js' import type { Direction, Stream } from '@libp2p/interface/connection' +import delay from 'delay' const log = logger('libp2p:webrtc:stream') @@ -148,6 +149,14 @@ class WebRTCStream extends AbstractStream { } async _sendMessage (data: Uint8ArrayList, checkBuffer: boolean = true): Promise { + log.trace('sending %d bytes', data.length) + + log.trace('channel ready state: %s', this.channel.readyState) + + log.trace('binary type is: %s', this.channel.binaryType) + + await delay(10) + if (checkBuffer && this.channel.bufferedAmount > this.dataChannelOptions.maxBufferedAmount) { try { await pEvent(this.channel, 'bufferedamountlow', { timeout: this.dataChannelOptions.bufferedAmountLowEventTimeout }) diff --git a/packages/transport-webrtc/test/basics.spec.ts b/packages/transport-webrtc/test/basics.spec.ts index 5d9cdfb00d..a241d15c54 100644 --- a/packages/transport-webrtc/test/basics.spec.ts +++ b/packages/transport-webrtc/test/basics.spec.ts @@ -85,16 +85,15 @@ describe('basics', () => { remoteNode = await createNode() }) - // TODO: Streams are not closing gracefully, re-introduce after https://github.com/libp2p/js-libp2p/issues/1793 is addressed - // afterEach(async () => { - // if (localNode != null) { - // await localNode.stop() - // } - - // if (remoteNode != null) { - // await remoteNode.stop() - // } - // }) + afterEach(async () => { + if (localNode != null) { + await localNode.stop() + } + + if (remoteNode != null) { + await remoteNode.stop() + } + }) it('can dial through a relay', async () => { const connection = await connectNodes() diff --git a/packages/transport-webrtc/webkit_output.txt b/packages/transport-webrtc/webkit_output.txt new file mode 100644 index 0000000000..9b982cb9e1 --- /dev/null +++ b/packages/transport-webrtc/webkit_output.txt @@ -0,0 +1,1678 @@ + +> @libp2p/webrtc@2.0.10 test:webkit +> aegir test -g "basics" -t browser -- --browser webkit + +build + +> @libp2p/webrtc@2.0.10 build +> aegir build + +[17:30:38] tsc [started] +[17:30:41] tsc [completed] +[17:30:41] esbuild [started] +[17:30:41] esbuild [completed] +test browser + + basics +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge await write lock +2ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +5ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +4ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:connection-manager:auto-dial:trace have enough connections 0/0 +0ms +libp2p:peer-store:trace all await read lock +9ms +libp2p:peer-store:trace all got read lock +2ms +libp2p:peer-store:trace all release read lock +5ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +13ms +libp2p:mss:select:trace select: read "/noise" +1ms +libp2p:noise:trace Stage 0 - Initiator starting to send first message. +0ms +libp2p:noise:trace Stage 0 - Initiator finished sending first message. +3ms +libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +0ms +libp2p:noise:trace Stage 1 - Initiator received the message. +21ms +libp2p:noise:trace Initiator going to check remote's signature... +0ms +libp2p:noise:trace All good with the signature! +6ms +libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms +libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +5ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +42ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +7ms +libp2p:mss:select:trace select: read "/yamux/1.0.0" +6ms +libp2p:yamux:trace muxer created +0ms +libp2p:yamux:trace muxer keepalive enabled interval=30000 +1ms +libp2p:peer-store:trace get await read lock +80ms +libp2p:yamux:trace new outgoing stream id=1 +4ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +7ms +libp2p:peer-store:trace get got read lock +3ms +libp2p:peer-store:trace get release read lock +1ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +2ms +libp2p:yamux:trace new outgoing stream id=3 +3ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +4ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=53 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +4ms +libp2p:yamux:trace new incoming stream id=2 +0ms +libp2p:yamux:trace stream received window update id=2 +1ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +2ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +1ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +0ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +1ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +15ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +2ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace get await read lock +1ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +1ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +4ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=345 +1ms +libp2p:yamux:trace stream sink ended id=2 +0ms +libp2p:yamux:trace stream close write id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream close id=2 +1ms +libp2p:yamux:trace stream close read id=2 +0ms +libp2p:yamux:trace stream source ended id=2 +0ms +libp2p:yamux:trace stream finished id=2 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +2ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=1 +1ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +22ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +1ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +9ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace stream sink ended id=1 +2ms +libp2p:yamux:trace stream close write id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=352 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=352 +1ms +libp2p:yamux:trace stream close id=1 +1ms +libp2p:yamux:trace stream close read id=1 +0ms +libp2p:yamux:trace stream source ended id=1 +0ms +libp2p:yamux:trace stream finished id=1 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +4ms +libp2p:peer-store:trace get await read lock +15ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +1ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=53 +10ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +21ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=33 +1ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=33 +0ms +libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +2ms +libp2p:peer-store:trace merge await write lock +4ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=3 +3ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=345 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=3 +4ms +libp2p:yamux:trace stream received window update id=3 +1ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=277 +2ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=277 +0ms +libp2p:yamux:trace stream close id=3 +1ms +libp2p:yamux:trace stream close read id=3 +0ms +libp2p:yamux:trace stream source ended id=3 +1ms +libp2p:yamux:trace stream close write id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=3 +0ms +libp2p:peer-store:trace merge await write lock +12ms +libp2p:yamux:trace stream sink ended id=3 +1ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace merge await write lock +30ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge await write lock +1ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace merge await write lock +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:connection-manager:auto-dial:trace have enough connections 0/0 +191ms +libp2p:peer-store:trace all await read lock +2ms +libp2p:peer-store:trace all got read lock +1ms +libp2p:peer-store:trace all release read lock +1ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +57ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +1ms +libp2p:mss:select:trace select: read "/noise" +1ms +libp2p:noise:trace Stage 0 - Initiator starting to send first message. +133ms +libp2p:noise:trace Stage 0 - Initiator finished sending first message. +3ms +libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +0ms +libp2p:noise:trace Stage 1 - Initiator received the message. +12ms +libp2p:noise:trace Initiator going to check remote's signature... +0ms +libp2p:noise:trace All good with the signature! +4ms +libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms +libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +3ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +25ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +4ms +libp2p:mss:select:trace select: read "/yamux/1.0.0" +2ms +libp2p:yamux:trace muxer created +77ms +libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms +libp2p:peer-store:trace get await read lock +38ms +libp2p:yamux:trace new outgoing stream id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +1ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +2ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +1ms +libp2p:yamux:trace new outgoing stream id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +2ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=53 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +1ms +libp2p:yamux:trace new incoming stream id=2 +1ms +libp2p:yamux:trace stream received window update id=2 +0ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +1ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +133ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +1ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +0ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +7ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +1ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +3ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=345 +0ms +libp2p:yamux:trace stream sink ended id=2 +0ms +libp2p:yamux:trace stream close write id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream close id=2 +0ms +libp2p:yamux:trace stream close read id=2 +1ms +libp2p:yamux:trace stream source ended id=2 +0ms +libp2p:yamux:trace stream finished id=2 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +1ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +11ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +1ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +5ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace stream sink ended id=1 +2ms +libp2p:yamux:trace stream close write id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=352 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=352 +0ms +libp2p:yamux:trace stream close id=1 +1ms +libp2p:yamux:trace stream close read id=1 +0ms +libp2p:yamux:trace stream source ended id=1 +0ms +libp2p:yamux:trace stream finished id=1 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +2ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=53 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +1ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +8ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=33 +1ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=33 +0ms +libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +1ms +libp2p:peer-store:trace merge await write lock +8ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=3 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:peer-store:trace get await read lock +4ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +5ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=345 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=3 +1ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=277 +1ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=277 +0ms +libp2p:yamux:trace stream close id=3 +0ms +libp2p:yamux:trace stream close read id=3 +0ms +libp2p:yamux:trace stream source ended id=3 +0ms +libp2p:yamux:trace stream close write id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=3 +1ms +libp2p:peer-store:trace merge await write lock +3ms +libp2p:yamux:trace stream sink ended id=3 +0ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace merge await write lock +6ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace get await read lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:peer-store:trace get got read lock +2ms +libp2p:yamux:trace new outgoing stream id=5 +15ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:peer-store:trace get release read lock +5ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +26ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=53 +4ms +libp2p:peer-store:trace get await read lock +6ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace new outgoing stream id=5 +3ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/push/1.0.0"] +6ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=41 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=ACK length=53 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +3ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=33 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=33 +0ms +libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +1ms +libp2p:peer-store:trace merge await write lock +5ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=88 +2ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=ACK length=41 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +3ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +7ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=21 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=21 +0ms +libp2p:mss:select:trace select: read "/ipfs/id/push/1.0.0" +3ms +libp2p:peer-store:trace merge await write lock +9ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +3ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=656 +1ms +libp2p:yamux:trace stream sink ended id=5 +0ms +libp2p:yamux:trace stream close write id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream close id=5 +0ms +libp2p:yamux:trace stream close read id=5 +0ms +libp2p:yamux:trace stream source ended id=5 +0ms +libp2p:yamux:trace stream finished id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=88 +2ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag=SYN length=0 +1ms +libp2p:yamux:trace new incoming stream id=4 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=54 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag=ACK length=54 +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +68ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=20 +0ms +libp2p:mss:handle:trace read "/libp2p/circuit/relay/0.2.0/stop" +1ms +libp2p:mss:handle:trace respond with "/libp2p/circuit/relay/0.2.0/stop" for "/libp2p/circuit/relay/0.2.0/stop" +0ms +libp2p:peer-store:trace merge await write lock +7ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=34 +2ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +2ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=656 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=FIN length=0 +3ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=20 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=34 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=45 +2ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=45 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=5 +6ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=5 +4ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=5 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=5 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +30ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +2ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +40ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +64ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=20 +1ms +libp2p:mss:handle:trace read "/noise" +1ms +libp2p:mss:handle:trace respond with "/noise" for "/noise" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=8 +1ms +libp2p:noise:trace Stage 0 - Responder waiting to receive first message... +153ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=20 +2ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +47ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=8 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=8 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=8 +0ms +libp2p:mss:select:trace select: read "/noise" +2ms +libp2p:noise:trace Stage 0 - Initiator starting to send first message. +5ms +libp2p:noise:trace Stage 0 - Initiator finished sending first message. +3ms +libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=34 +5ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=34 +5ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=34 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=34 +0ms +libp2p:noise:trace Stage 0 - Responder received first message. +7ms +libp2p:noise:trace Stage 1 - Responder sending out first message with signed payload and static key. +0ms +libp2p:noise:trace Stage 1 - Responder sent the second handshake message with signed payload. +9ms +libp2p:noise:trace Stage 2 - Responder waiting for third handshake message... +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=204 +10ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=204 +3ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=204 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=204 +1ms +libp2p:noise:trace Stage 1 - Initiator received the message. +11ms +libp2p:noise:trace Initiator going to check remote's signature... +0ms +libp2p:noise:trace All good with the signature! +4ms +libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms +libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +3ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +38ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=172 +14ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=50 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=172 +3ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=172 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=172 +0ms +libp2p:noise:trace Stage 2 - Responder received the message, finished handshake. +8ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +8ms +libp2p:yamux:trace stream received window update id=5 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=50 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=50 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=50 +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +62ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:mss:handle:trace read "/yamux/1.0.0" +0ms +libp2p:mss:handle:trace respond with "/yamux/1.0.0" for "/yamux/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace muxer created +1ms +libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms +libp2p:peer-store:trace get await read lock +127ms +libp2p:yamux:trace new outgoing stream id=2 +1ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +19ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +1ms +libp2p:peer-store:trace get release read lock +1ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=36 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=30 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=52 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +3ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +9ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +2ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=30 +2ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=30 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=30 +0ms +libp2p:mss:select:trace select: read "/yamux/1.0.0" +7ms +libp2p:yamux:trace muxer created +1ms +libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms +libp2p:peer-store:trace get await read lock +16ms +libp2p:yamux:trace new outgoing stream id=1 +1ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +2ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace new outgoing stream id=3 +1ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/webrtc-signaling/0.0.1"] +1ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +1ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=45 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=52 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=61 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +2ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +1ms +libp2p:yamux:trace new incoming stream id=2 +0ms +libp2p:yamux:trace stream received window update id=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +1ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=52 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=52 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=52 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +37ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +0ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +18ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +2ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=36 +3ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=32 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +2ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=SYN length=0 +1ms +libp2p:yamux:trace new incoming stream id=1 +0ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=SYN length=0 +1ms +libp2p:yamux:trace new incoming stream id=3 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=36 +0ms +libp2p:yamux:trace stream received data id=1 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=52 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=52 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=52 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=ACK length=36 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +24ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=20 +0ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +2ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +24ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=16 +2ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:peer-store:trace merge release write lock +2ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +12ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=32 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +9ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +4ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=45 +0ms +libp2p:yamux:trace stream received data id=3 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=61 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=61 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=61 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=ACK length=45 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +36ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=20 +0ms +libp2p:mss:handle:trace read "/webrtc-signaling/0.0.1" +1ms +libp2p:mss:handle:trace respond with "/webrtc-signaling/0.0.1" for "/webrtc-signaling/0.0.1" +1ms +libp2p:peer-store:trace merge await write lock +35ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=25 +2ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:peer-store:trace merge release write lock +2ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +195ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=41 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +2ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=ACK length=36 +0ms +libp2p:yamux:trace stream received window update id=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=20 +0ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=36 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=36 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=36 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +286ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=32 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=16 +0ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=32 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=32 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=16 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +2ms +libp2p:peer-store:trace merge await write lock +205ms +libp2p:peer-store:trace merge got write lock +1ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace stream sink ended id=2 +1ms +libp2p:yamux:trace stream close write id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +0ms +libp2p:yamux:trace stream received window update id=1 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +1ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +6ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +0ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=32 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=32 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=32 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +4ms +libp2p:peer-store:trace merge await write lock +9ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:webrtc:peer:trace dialing address: +0ms { + bytes: { + '0': 4, + '1': 127, + '2': 0, + '3': 0, + '4': 1, + '5': 6, + '6': 245, + '7': 124, + '8': 221, + '9': 3, + '10': 165, + '11': 3, + '12': 38, + '13': 0, + '14': 36, + '15': 8, + '16': 1, + '17': 18, + '18': 32, + '19': 88, + '20': 0, + '21': 112, + '22': 174, + '23': 250, + '24': 133, + '25': 173, + '26': 36, + '27': 3, + '28': 20, + '29': 12, + '30': 77, + '31': 3, + '32': 110, + '33': 17, + '34': 15, + '35': 132, + '36': 87, + '37': 117, + '38': 11, + '39': 229, + '40': 150, + '41': 89, + '42': 0, + '43': 110, + '44': 17, + '45': 73, + '46': 22, + '47': 128, + '48': 132, + '49': 154, + '50': 196, + '51': 162, + '52': 2, + '53': 153, + '54': 2, + '55': 165, + '56': 3, + '57': 38, + '58': 0, + '59': 36, + '60': 8, + '61': 1, + '62': 18, + '63': 32, + '64': 38, + '65': 220, + '66': 68, + '67': 110, + '68': 96, + '69': 130, + '70': 103, + '71': 28, + '72': 70, + '73': 63, + '74': 172, + '75': 0, + '76': 166, + '77': 68, + '78': 248, + '79': 96, + '80': 239, + '81': 129, + '82': 109, + '83': 63, + '84': 163, + '85': 122, + '86': 207, + '87': 129, + '88': 192, + '89': 31, + '90': 97, + '91': 7, + '92': 79, + '93': 194, + '94': 70, + '95': 105 + } +} +libp2p:peer-store:trace merge release write lock +1ms +libp2p:yamux:trace stream sink ended id=1 +2ms +libp2p:yamux:trace stream close write id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=777 +0ms +libp2p:yamux:trace stream sink ended id=2 +1ms +libp2p:yamux:trace stream close write id=2 +0ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream close id=2 +0ms +libp2p:yamux:trace stream close read id=2 +0ms +libp2p:yamux:trace stream source ended id=2 +0ms +libp2p:yamux:trace stream finished id=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=18 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=793 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=2 +2ms +libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=790 +0ms +libp2p:yamux:trace stream sink ended id=1 +0ms +libp2p:yamux:trace stream close write id=1 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream close id=1 +0ms +libp2p:yamux:trace stream close read id=1 +0ms +libp2p:yamux:trace stream source ended id=1 +0ms +libp2p:yamux:trace stream finished id=1 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=18 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=806 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=45 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +1ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=41 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +17ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=25 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=41 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=41 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=25 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:mss:select:trace select: read "/webrtc-signaling/0.0.1" +5ms +libp2p:peer-store:trace merge await write lock +21ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +4ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +5ms +libp2p:yamux:trace stream received window update id=5 +14ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=20 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +1ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=16 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +1ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=464 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=480 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=18 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=18 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=18 +1ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=2 type=Data flag= length=777 +0ms +libp2p:yamux:trace stream received data id=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=793 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=793 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=793 +1ms +libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=777 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream close id=2 +0ms +libp2p:yamux:trace stream close read id=2 +0ms +libp2p:yamux:trace stream source ended id=2 +0ms +libp2p:yamux:trace stream finished id=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +3ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=20 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=18 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=18 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=18 +1ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=Data flag= length=790 +0ms +libp2p:yamux:trace stream received data id=1 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=806 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=806 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=806 +0ms +libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=790 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream close id=1 +0ms +libp2p:yamux:trace stream close read id=1 +0ms +libp2p:yamux:trace stream source ended id=1 +0ms +libp2p:yamux:trace stream finished id=1 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +3ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=25 +0ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:peer-store:trace get await read lock +69ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:peer-store:trace patch got write lock +1ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +10ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=464 +0ms +libp2p:yamux:trace stream received data id=3 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=480 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=480 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=480 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=464 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +1ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=777 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +4ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +4ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=790 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=226 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=242 +1ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=464 +1ms +libp2p:yamux:trace stream received window update id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=464 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=480 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +2ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=226 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=242 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +2ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=226 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=242 +1ms +libp2p:yamux:trace stream received window update id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=Data flag= length=242 +1ms +libp2p:yamux:trace stream received data id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=242 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=226 +0ms +libp2p:webrtc:peer:util:trace received new ICE candidate: {"candidate":"candidate:3218737663 1 udp 2122260223 300b7d92-46c0-4f54-9e30-7200d16d2079.local 65052 typ host generation 0 ufrag jGaT network-id 1 network-cost 50","sdpMLineIndex":0,"sdpMid":"0","usernameFragment":null} +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +3ms connecting +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +4ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +4ms connecting +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=464 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=5 +1ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=21 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=480 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=480 +1ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=480 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=464 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace received frame streamID=3 type=Data flag= length=226 +0ms +libp2p:yamux:trace stream received data id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=5 +1ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=21 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms +libp2p:yamux:trace stream received data id=5 +0ms +libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +10ms connected +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +139ms +libp2p:yamux:trace stream close id=3 +10ms +libp2p:yamux:trace stream close read id=3 +0ms +libp2p:yamux:trace stream source ended id=3 +0ms +libp2p:yamux:trace stream close write id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=3 +0ms +libp2p:yamux:trace stream sink ended id=3 +1ms +libp2p:connection-manager:auto-dial:trace have enough connections 2/0 +725ms +libp2p:webrtc:stream:trace sending 39 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: connecting +0ms +libp2p:yamux:trace muxer close reason=InternalError +1ms +libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +1ms +libp2p:yamux:trace muxer source ended +0ms +libp2p:yamux:trace stream sink ended id=5 +0ms +libp2p:yamux:trace stream close write id=5 +0ms +libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace muxer sink ended +1ms +libp2p:yamux:trace stream close id=5 +1ms +libp2p:yamux:trace stream close read id=5 +0ms +libp2p:yamux:trace stream source ended id=5 +0ms +libp2p:yamux:trace stream finished id=5 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=242 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:webrtc:stream:trace sending 39 bytes +6ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +18ms connected +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +10ms +libp2p:yamux:trace stream close id=3 +2ms +libp2p:yamux:trace stream close read id=3 +0ms +libp2p:yamux:trace stream source ended id=3 +0ms +libp2p:yamux:trace stream close write id=3 +0ms +libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace stream finished id=3 +1ms +libp2p:yamux:trace stream sink ended id=3 +11ms +libp2p:connection-manager:auto-dial:trace have enough connections 2/0 +21ms +libp2p:webrtc:stream:trace sending 39 bytes +14ms +libp2p:webrtc:stream:trace channel ready state: connecting +0ms +libp2p:yamux:trace muxer close reason=InternalError +0ms +libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +1ms +libp2p:yamux:trace muxer source ended +0ms +libp2p:yamux:trace stream sink ended id=4 +0ms +libp2p:yamux:trace stream close write id=4 +0ms +libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag=FIN length=0 +0ms +libp2p:yamux:trace muxer sink ended +0ms +libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=21 +1ms +libp2p:yamux:trace stream received window update id=4 +0ms +libp2p:webrtc:stream:trace sending 0 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace get await read lock +93ms +libp2p:connection-manager:auto-dial:trace have enough connections 1/0 +4ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +1ms +libp2p:yamux:trace muxer sink ended +4ms +libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +0ms +libp2p:yamux:trace muxer source ended +0ms +libp2p:yamux:trace stream close id=4 +1ms +libp2p:yamux:trace stream close read id=4 +0ms +libp2p:yamux:trace stream source ended id=4 +0ms +libp2p:yamux:trace stream finished id=4 +0ms +libp2p:webrtc:stream:trace sending 39 bytes +5ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 0 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +410ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:webrtc:stream:trace sending 23 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms +libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +6ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:webrtc:stream:trace sending 19 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:peer-store:trace get await read lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +1ms +libp2p:webrtc:stream:trace sending 5 bytes +2ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 342 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +1ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +1ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +27ms +libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +3ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:webrtc:stream:trace Sending flag: FIN +2ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +1ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace patch await write lock +2ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:peer-store:trace get await read lock +25ms +libp2p:connection-manager:auto-dial:trace have enough connections 1/0 +42ms +libp2p:peer-store:trace get got read lock +1ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:yamux:trace muxer sink ended +39ms +libp2p:yamux:trace muxer close reason=NormalTermination +0ms +libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=0 +0ms +libp2p:yamux:trace muxer source ended +0ms +libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/echo/1.0.0"] +31ms +libp2p:webrtc:stream:trace sending 36 bytes +29ms +libp2p:webrtc:stream:trace channel ready state: connecting +0ms +libp2p:webrtc:stream:trace sending 36 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 0 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +1ms +libp2p:mss:handle:trace read "/multistream/1.0.0" +38ms +libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms +libp2p:webrtc:stream:trace sending 23 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:mss:handle:trace read "/echo/1.0.0" +0ms +libp2p:mss:handle:trace respond with "/echo/1.0.0" for "/echo/1.0.0" +1ms +libp2p:peer-store:trace merge await write lock +4ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:webrtc:stream:trace sending 16 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:peer-store:trace merge release write lock +0ms +libp2p:mss:select:trace select: read "/multistream/1.0.0" +4ms +libp2p:mss:select:trace select: read "/echo/1.0.0" +0ms +libp2p:peer-store:trace merge await write lock +1ms +libp2p:peer-store:trace merge got write lock +0ms +libp2p:peer-store:trace merge release write lock +1ms +libp2p:webrtc:stream:trace sending 13 bytes +3ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +0ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace sending 13 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms +libp2p:webrtc:stream:trace sending 3 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +0ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +1ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +  ✅ can dial through a relay (731ms) +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +4ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +1ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:connection:trace closing connection +0ms +libp2p:peer-store:trace get await read lock +14ms +libp2p:peer-store:trace patch await write lock +1ms +libp2p:peer-store:trace patch await write lock +1ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +1ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:peer-store:trace patch got write lock +1ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:peer-store:trace patch got write lock +1ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +8ms +libp2p:webrtc:stream:trace sending 3 bytes +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace Sending flag: FIN +0ms +libp2p:webrtc:stream:trace sending 3 bytes +1ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:stream:trace channel ready state: open +0ms +libp2p:webrtc:connection:trace closing connection +8ms +libp2p:peer-store:trace get await read lock +2ms +libp2p:peer-store:trace patch await write lock +1ms +libp2p:peer-store:trace patch await write lock +1ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace get got read lock +0ms +libp2p:peer-store:trace get release read lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:peer-store:trace patch await write lock +0ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +1ms +libp2p:peer-store:trace patch got write lock +0ms +libp2p:peer-store:trace patch release write lock +0ms +libp2p:peer-store:trace get await read lock +12ms From 7d6d757fa445f44bdc91e61e8ee20e1124be7dd1 Mon Sep 17 00:00:00 2001 From: chad Date: Mon, 3 Jul 2023 12:32:23 -0500 Subject: [PATCH 5/8] chore: remove delay + output logs --- packages/transport-webrtc/chrome_output.txt | 4838 ------------------- packages/transport-webrtc/src/stream.ts | 3 - packages/transport-webrtc/webkit_output.txt | 1678 ------- 3 files changed, 6519 deletions(-) delete mode 100644 packages/transport-webrtc/chrome_output.txt delete mode 100644 packages/transport-webrtc/webkit_output.txt diff --git a/packages/transport-webrtc/chrome_output.txt b/packages/transport-webrtc/chrome_output.txt deleted file mode 100644 index a7aad5cfaf..0000000000 --- a/packages/transport-webrtc/chrome_output.txt +++ /dev/null @@ -1,4838 +0,0 @@ - -> @libp2p/webrtc@2.0.10 test:chrome -> aegir test -g "basics" -t browser --cov - -build - -> @libp2p/webrtc@2.0.10 build -> aegir build - -[17:25:07] tsc [started] -[17:25:10] tsc [completed] -[17:25:10] esbuild [started] -[17:25:10] esbuild [completed] -test browser - - basics -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge await write lock +1ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +2ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +2ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:connection-manager:auto-dial:trace have enough connections 0/0 +0ms -libp2p:peer-store:trace all await read lock +7ms -libp2p:peer-store:trace all got read lock +1ms -libp2p:peer-store:trace all release read lock +4ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +8ms -libp2p:mss:select:trace select: read "/noise" +2ms -libp2p:noise:trace Stage 0 - Initiator starting to send first message. +0ms -libp2p:noise:trace Stage 0 - Initiator finished sending first message. +2ms -libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +1ms -libp2p:noise:trace Stage 1 - Initiator received the message. +38ms -libp2p:noise:trace Initiator going to check remote's signature... +0ms -libp2p:noise:trace All good with the signature! +4ms -libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms -libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +4ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +53ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +14ms -libp2p:mss:select:trace select: read "/yamux/1.0.0" +5ms -libp2p:yamux:trace muxer created +0ms -libp2p:yamux:trace muxer keepalive enabled interval=30000 +1ms -libp2p:peer-store:trace get await read lock +89ms -libp2p:yamux:trace new outgoing stream id=1 +3ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +1ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +5ms -libp2p:peer-store:trace get got read lock +3ms -libp2p:peer-store:trace get release read lock +1ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +1ms -libp2p:yamux:trace new outgoing stream id=3 +2ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +4ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=53 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +2ms -libp2p:yamux:trace new incoming stream id=2 +0ms -libp2p:yamux:trace stream received window update id=2 +1ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +1ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +1ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +0ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +1ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +10ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +1ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +3ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=357 +1ms -libp2p:yamux:trace stream sink ended id=2 +0ms -libp2p:yamux:trace stream close write id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +1ms -libp2p:yamux:trace stream close id=2 +0ms -libp2p:yamux:trace stream close read id=2 +0ms -libp2p:yamux:trace stream source ended id=2 +0ms -libp2p:yamux:trace stream finished id=2 +1ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +1ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +16ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +1ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +8ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace stream sink ended id=1 +1ms -libp2p:yamux:trace stream close write id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=1 +1ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=352 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=352 +1ms -libp2p:yamux:trace stream close id=1 +1ms -libp2p:yamux:trace stream close read id=1 +1ms -libp2p:yamux:trace stream source ended id=1 +0ms -libp2p:yamux:trace stream finished id=1 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +5ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=53 +1ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +14ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=33 +1ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=33 +1ms -libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +2ms -libp2p:peer-store:trace merge await write lock +16ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=3 +2ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +0ms -libp2p:peer-store:trace get await read lock +6ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch await write lock +1ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +7ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=357 +1ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=3 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=277 +0ms -libp2p:yamux:trace stream received data id=3 +1ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=277 +0ms -libp2p:yamux:trace stream close id=3 +1ms -libp2p:yamux:trace stream close read id=3 +0ms -libp2p:yamux:trace stream source ended id=3 +0ms -libp2p:yamux:trace stream close write id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=3 +0ms -libp2p:peer-store:trace merge await write lock +3ms -libp2p:yamux:trace stream sink ended id=3 +1ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace merge await write lock +19ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:connection-manager:auto-dial:trace have enough connections 0/0 +172ms -libp2p:peer-store:trace all await read lock +1ms -libp2p:peer-store:trace all got read lock +1ms -libp2p:peer-store:trace all release read lock +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +40ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +2ms -libp2p:mss:select:trace select: read "/noise" +0ms -libp2p:noise:trace Stage 0 - Initiator starting to send first message. +106ms -libp2p:noise:trace Stage 0 - Initiator finished sending first message. +1ms -libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +1ms -libp2p:noise:trace Stage 1 - Initiator received the message. +7ms -libp2p:noise:trace Initiator going to check remote's signature... +1ms -libp2p:noise:trace All good with the signature! +3ms -libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms -libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +1ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +17ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +6ms -libp2p:mss:select:trace select: read "/yamux/1.0.0" +0ms -libp2p:yamux:trace muxer created +51ms -libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms -libp2p:peer-store:trace get await read lock +28ms -libp2p:yamux:trace new outgoing stream id=1 +1ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +1ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +2ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +1ms -libp2p:yamux:trace new outgoing stream id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +1ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=53 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +2ms -libp2p:yamux:trace new incoming stream id=2 +0ms -libp2p:yamux:trace stream received window update id=2 +1ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +0ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +1ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +100ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +1ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +1ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +9ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +3ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace get await read lock +1ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +2ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=357 +0ms -libp2p:yamux:trace stream sink ended id=2 +1ms -libp2p:yamux:trace stream close write id=2 +1ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream close id=2 +0ms -libp2p:yamux:trace stream close read id=2 +0ms -libp2p:yamux:trace stream source ended id=2 +0ms -libp2p:yamux:trace stream finished id=2 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +2ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +17ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +1ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +8ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace stream sink ended id=1 +1ms -libp2p:yamux:trace stream close write id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=352 +2ms -libp2p:yamux:trace stream received data id=1 +1ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=352 +0ms -libp2p:yamux:trace stream close id=1 +1ms -libp2p:yamux:trace stream close read id=1 +0ms -libp2p:yamux:trace stream source ended id=1 +0ms -libp2p:yamux:trace stream finished id=1 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +2ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=53 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=3 +1ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +9ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=33 +1ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=33 +0ms -libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +2ms -libp2p:peer-store:trace merge await write lock +10ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=3 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=357 +0ms -libp2p:peer-store:trace get await read lock +5ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=3 +4ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=277 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=277 +1ms -libp2p:yamux:trace stream close id=3 +0ms -libp2p:yamux:trace stream close read id=3 +0ms -libp2p:yamux:trace stream source ended id=3 +0ms -libp2p:yamux:trace stream close write id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=3 +1ms -libp2p:peer-store:trace merge await write lock +2ms -libp2p:yamux:trace stream sink ended id=3 +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace merge await write lock +2ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace get await read lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:yamux:trace new outgoing stream id=5 +8ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:peer-store:trace get release read lock +2ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +18ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=53 +2ms -libp2p:peer-store:trace get await read lock +4ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace new outgoing stream id=5 +2ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=SYN length=0 +1ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/push/1.0.0"] +4ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=41 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=ACK length=53 +2ms -libp2p:yamux:trace stream received window update id=5 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +5ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=33 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=33 +1ms -libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +1ms -libp2p:peer-store:trace merge await write lock +7ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=88 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=ACK length=41 +2ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +7ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=21 +2ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=21 +0ms -libp2p:mss:select:trace select: read "/ipfs/id/push/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +7ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +2ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=668 +0ms -libp2p:yamux:trace stream sink ended id=5 +0ms -libp2p:yamux:trace stream close write id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream close id=5 +0ms -libp2p:yamux:trace stream close read id=5 +0ms -libp2p:yamux:trace stream source ended id=5 +0ms -libp2p:yamux:trace stream finished id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag=SYN length=0 +1ms -libp2p:yamux:trace new incoming stream id=4 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=54 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag=ACK length=54 +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +62ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=20 +1ms -libp2p:mss:handle:trace read "/libp2p/circuit/relay/0.2.0/stop" +0ms -libp2p:mss:handle:trace respond with "/libp2p/circuit/relay/0.2.0/stop" for "/libp2p/circuit/relay/0.2.0/stop" +1ms -libp2p:peer-store:trace merge await write lock +5ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=34 +1ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=88 +2ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=668 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=20 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=34 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=45 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=45 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=5 +2ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=5 +3ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=5 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=5 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +20ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +2ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +17ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=20 +0ms -libp2p:mss:handle:trace read "/noise" +0ms -libp2p:mss:handle:trace respond with "/noise" for "/noise" +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=8 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=20 +4ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +9ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=8 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=8 +1ms -libp2p:mss:select:trace select: read "/noise" +1ms -libp2p:noise:trace Stage 0 - Responder waiting to receive first message... +106ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=8 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:noise:trace Stage 0 - Initiator starting to send first message. +1ms -libp2p:noise:trace Stage 0 - Initiator finished sending first message. +1ms -libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=34 +3ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=34 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=34 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=34 +0ms -libp2p:noise:trace Stage 0 - Responder received first message. +3ms -libp2p:noise:trace Stage 1 - Responder sending out first message with signed payload and static key. +0ms -libp2p:noise:trace Stage 1 - Responder sent the second handshake message with signed payload. +4ms -libp2p:noise:trace Stage 2 - Responder waiting for third handshake message... +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=204 +4ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=204 +2ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=204 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=204 +0ms -libp2p:noise:trace Stage 1 - Initiator received the message. +5ms -libp2p:noise:trace Initiator going to check remote's signature... +0ms -libp2p:noise:trace All good with the signature! +3ms -libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms -libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=172 +7ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +20ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=50 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=172 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=172 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=172 +1ms -libp2p:noise:trace Stage 2 - Responder received the message, finished handshake. +6ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +3ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +2ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=50 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=50 +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +35ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:mss:handle:trace read "/yamux/1.0.0" +1ms -libp2p:mss:handle:trace respond with "/yamux/1.0.0" for "/yamux/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +0ms -libp2p:yamux:trace muxer created +0ms -libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms -libp2p:peer-store:trace get await read lock +54ms -libp2p:yamux:trace new outgoing stream id=2 +1ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +11ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +1ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=36 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=30 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=52 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +10ms -libp2p:yamux:trace stream received window update id=5 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=50 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +2ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=30 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +20ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=30 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=30 +1ms -libp2p:mss:select:trace select: read "/yamux/1.0.0" +2ms -libp2p:yamux:trace muxer created +0ms -libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms -libp2p:peer-store:trace get await read lock +22ms -libp2p:yamux:trace new outgoing stream id=1 +1ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +1ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace new outgoing stream id=3 +1ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/webrtc-signaling/0.0.1"] +1ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=45 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=52 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=61 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +4ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:yamux:trace new incoming stream id=2 +0ms -libp2p:yamux:trace stream received window update id=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +6ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=52 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +0ms -libp2p:yamux:trace stream received data id=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=52 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=52 +1ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +50ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +1ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +0ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +26ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=36 +0ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +2ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=32 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +4ms -libp2p:yamux:trace stream received window update id=5 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=52 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=61 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=SYN length=0 +1ms -libp2p:yamux:trace new incoming stream id=1 +0ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:yamux:trace new incoming stream id=3 +1ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=36 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=52 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=52 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=ACK length=36 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +25ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=20 +0ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +0ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +22ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=16 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +1ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +2ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=32 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +3ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=45 +2ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=61 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=61 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=ACK length=45 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +16ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=20 +0ms -libp2p:mss:handle:trace read "/webrtc-signaling/0.0.1" +1ms -libp2p:mss:handle:trace respond with "/webrtc-signaling/0.0.1" for "/webrtc-signaling/0.0.1" +0ms -libp2p:peer-store:trace merge await write lock +15ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=25 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +185ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=41 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=36 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=32 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=ACK length=36 +0ms -libp2p:yamux:trace stream received window update id=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=36 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=36 +1ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +264ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=16 +0ms -libp2p:yamux:trace stream received data id=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=32 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=32 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=16 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +5ms -libp2p:peer-store:trace merge await write lock +200ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace stream sink ended id=2 +1ms -libp2p:yamux:trace stream close write id=2 +1ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:webrtc:peer:trace dialing address: +0ms { - bytes: { - '0': 4, - '1': 127, - '2': 0, - '3': 0, - '4': 1, - '5': 6, - '6': 243, - '7': 190, - '8': 221, - '9': 3, - '10': 165, - '11': 3, - '12': 38, - '13': 0, - '14': 36, - '15': 8, - '16': 1, - '17': 18, - '18': 32, - '19': 225, - '20': 122, - '21': 160, - '22': 92, - '23': 34, - '24': 165, - '25': 112, - '26': 169, - '27': 165, - '28': 157, - '29': 91, - '30': 39, - '31': 212, - '32': 8, - '33': 211, - '34': 84, - '35': 177, - '36': 12, - '37': 67, - '38': 157, - '39': 239, - '40': 206, - '41': 48, - '42': 119, - '43': 145, - '44': 45, - '45': 182, - '46': 96, - '47': 31, - '48': 217, - '49': 51, - '50': 134, - '51': 162, - '52': 2, - '53': 153, - '54': 2, - '55': 165, - '56': 3, - '57': 38, - '58': 0, - '59': 36, - '60': 8, - '61': 1, - '62': 18, - '63': 32, - '64': 32, - '65': 223, - '66': 178, - '67': 182, - '68': 81, - '69': 205, - '70': 25, - '71': 197, - '72': 192, - '73': 144, - '74': 23, - '75': 25, - '76': 204, - '77': 186, - '78': 179, - '79': 214, - '80': 238, - '81': 164, - '82': 75, - '83': 239, - '84': 240, - '85': 178, - '86': 254, - '87': 186, - '88': 178, - '89': 197, - '90': 169, - '91': 154, - '92': 111, - '93': 82, - '94': 4, - '95': 160 - } -} -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=32 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +0ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +14ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +0ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=32 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=32 +1ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +3ms -libp2p:peer-store:trace merge await write lock +16ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace stream sink ended id=1 +1ms -libp2p:yamux:trace stream close write id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=45 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +9ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=25 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=41 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=41 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=41 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=25 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:mss:select:trace select: read "/webrtc-signaling/0.0.1" +9ms -libp2p:peer-store:trace merge await write lock +17ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +4ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace stream received window update id=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +0ms -libp2p:yamux:trace stream received window update id=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +1ms -libp2p:yamux:trace stream received window update id=2 +0ms -libp2p:yamux:trace stream close read id=2 +0ms -libp2p:yamux:trace stream source ended id=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=789 +1ms -libp2p:yamux:trace stream sink ended id=2 +0ms -libp2p:yamux:trace stream close write id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream close id=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=18 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=805 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +2ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=16 +0ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace stream close read id=1 +0ms -libp2p:yamux:trace stream source ended id=1 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=20 +1ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=802 +0ms -libp2p:yamux:trace stream sink ended id=1 +0ms -libp2p:yamux:trace stream close write id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=1 +1ms -libp2p:yamux:trace stream close id=1 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=18 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=818 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=465 +3ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=481 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=25 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=18 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=18 +5ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=789 +6ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=805 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=805 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=789 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream close id=2 +0ms -libp2p:yamux:trace stream close read id=2 +0ms -libp2p:yamux:trace stream source ended id=2 +1ms -libp2p:yamux:trace stream finished id=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +2ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=18 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=805 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=1 +9ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +6ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=18 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=818 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=18 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=18 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +13ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +3ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=802 +0ms -libp2p:yamux:trace stream received data id=1 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=818 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=818 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=802 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream close id=1 +0ms -libp2p:yamux:trace stream close read id=1 +0ms -libp2p:yamux:trace stream source ended id=1 +0ms -libp2p:yamux:trace stream finished id=1 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +3ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:peer-store:trace get await read lock +116ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +13ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +3ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=481 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=789 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:peer-store:trace get await read lock +16ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +3ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=465 +1ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=481 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=481 +1ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=465 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=802 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=464 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=480 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +3ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=465 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=464 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=480 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=480 +1ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=464 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=216 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=232 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=480 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=464 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=216 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=232 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=232 +1ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=216 +0ms -libp2p:webrtc:peer:util:trace received new ICE candidate: {"candidate":"candidate:3194440249 1 udp 2113937151 169a4ddd-84ab-47a5-be4b-d7d6c4967bb0.local 58979 typ host generation 0 ufrag MIgk network-cost 999","sdpMid":"0","sdpMLineIndex":0,"usernameFragment":"MIgk"} +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=232 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=216 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=216 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=232 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +4ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=216 +1ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=232 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +19ms connecting -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=5 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=21 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=232 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=232 +1ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=216 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:webrtc:peer:util:trace received new ICE candidate: {"candidate":"candidate:2542647581 1 udp 2113937151 169a4ddd-84ab-47a5-be4b-d7d6c4967bb0.local 51749 typ host generation 0 ufrag kGBx network-cost 999","sdpMid":"0","sdpMLineIndex":0,"usernameFragment":"kGBx"} +3ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms -libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +2ms connecting -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=21 +0ms -libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +2ms connected -libp2p:webrtc:stream:trace sending 0 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +4ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +205ms -libp2p:yamux:trace stream close id=3 +2ms -libp2p:yamux:trace stream close read id=3 +0ms -libp2p:yamux:trace stream source ended id=3 +0ms -libp2p:yamux:trace stream close write id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=3 +0ms -libp2p:yamux:trace stream sink ended id=3 +0ms -libp2p:connection-manager:auto-dial:trace have enough connections 2/0 +691ms -libp2p:webrtc:stream:trace sending 39 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: connecting +0ms -libp2p:yamux:trace muxer close reason=InternalError +2ms -libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +0ms -libp2p:yamux:trace muxer source ended +0ms -libp2p:yamux:trace stream sink ended id=5 +0ms -libp2p:yamux:trace stream close write id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace muxer sink ended +0ms -libp2p:yamux:trace stream close id=5 +1ms -libp2p:yamux:trace stream close read id=5 +0ms -libp2p:yamux:trace stream source ended id=5 +0ms -libp2p:yamux:trace stream finished id=5 +1ms -libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +11ms connected -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +7ms -libp2p:yamux:trace stream close id=3 +3ms -libp2p:yamux:trace stream close read id=3 +0ms -libp2p:yamux:trace stream source ended id=3 +1ms -libp2p:yamux:trace stream close write id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=3 +0ms -libp2p:yamux:trace stream sink ended id=3 +0ms -libp2p:connection-manager:auto-dial:trace have enough connections 2/0 +7ms -libp2p:webrtc:stream:trace sending 39 bytes +8ms -libp2p:webrtc:stream:trace channel ready state: connecting +0ms -libp2p:yamux:trace muxer close reason=InternalError +1ms -libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +0ms -libp2p:yamux:trace muxer source ended +0ms -libp2p:yamux:trace stream sink ended id=4 +1ms -libp2p:yamux:trace stream close write id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace muxer sink ended +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=21 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +8ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: closed +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +1ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: closed +0ms -libp2p:webrtc:stream:trace sending 39 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 0 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 39 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 0 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=21 +4ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=21 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag=FIN length=0 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace stream close read id=4 +0ms -libp2p:yamux:trace stream source ended id=4 +0ms -libp2p:yamux:trace stream finished id=4 +0ms -libp2p:peer-store:trace get await read lock +91ms -libp2p:connection-manager:auto-dial:trace have enough connections 1/0 +14ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace muxer sink ended +2ms -libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +0ms -libp2p:yamux:trace muxer source ended +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +466ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:webrtc:stream:trace sending 23 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +3ms -libp2p:peer-store:trace merge got write lock +2ms -libp2p:webrtc:stream:trace sending 19 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace merge release write lock +2ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +6ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +1ms -libp2p:webrtc:stream:trace sending 23 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +0ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +3ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:webrtc:stream:trace sending 19 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace merge release write lock +3ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:webrtc:stream:trace sending 5 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 402 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +0ms -libp2p:webrtc:stream:trace sending 3 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace get await read lock +3ms -libp2p:connection-manager:auto-dial:trace have enough connections 1/0 +19ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace muxer sink ended +18ms -libp2p:yamux:trace muxer close reason=NormalTermination +0ms -libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=0 +0ms -libp2p:yamux:trace muxer source ended +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/echo/1.0.0"] +36ms -libp2p:webrtc:stream:trace sending 36 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: connecting +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +2ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +4ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +3ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 36 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 0 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +3ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +3ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +3ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:peer-store:trace patch await write lock +2ms -libp2p:peer-store:trace patch got write lock +1ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:webrtc:stream:trace sending 5 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 804 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +0ms -libp2p:webrtc:stream:trace sending 3 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +21ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:webrtc:stream:trace sending 23 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:mss:handle:trace read "/echo/1.0.0" +0ms -libp2p:mss:handle:trace respond with "/echo/1.0.0" for "/echo/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +4ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:webrtc:stream:trace sending 16 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +2ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +12ms -libp2p:mss:select:trace select: read "/echo/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +4ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:webrtc:stream:trace sending 13 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 13 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +0ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace get await read lock +5ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:webrtc:stream:trace sending 13 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 13 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +1ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +0ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms -libp2p:webrtc:stream:trace sending 3 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -  ✅ can dial through a relay (697ms) -libp2p:webrtc:connection:trace closing connection +0ms -libp2p:peer-store:trace get await read lock +12ms -libp2p:peer-store:trace patch await write lock +2ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:peer-store:trace patch await write lock +1ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:webrtc:connection:trace closing connection +5ms -libp2p:peer-store:trace get await read lock +1ms -libp2p:peer-store:trace patch await write lock +1ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +1ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:peer-store:trace patch got write lock +1ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:peer-store:trace get await read lock +10ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace get await read lock +1ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace get await read lock +1ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace get await read lock +1ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace get await read lock +1ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace merge await write lock +16ms -libp2p:peer-store:trace merge await write lock +1ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:connection-manager:auto-dial:trace have enough connections 0/0 +81ms -libp2p:peer-store:trace all await read lock +1ms -libp2p:peer-store:trace all got read lock +1ms -libp2p:peer-store:trace all release read lock +1ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +65ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +1ms -libp2p:mss:select:trace select: read "/noise" +1ms -libp2p:noise:trace Stage 0 - Initiator starting to send first message. +668ms -libp2p:noise:trace Stage 0 - Initiator finished sending first message. +2ms -libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +0ms -libp2p:noise:trace Stage 1 - Initiator received the message. +8ms -libp2p:noise:trace Initiator going to check remote's signature... +0ms -libp2p:noise:trace All good with the signature! +3ms -libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms -libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +2ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +16ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +4ms -libp2p:mss:select:trace select: read "/yamux/1.0.0" +1ms -libp2p:yamux:trace muxer created +108ms -libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms -libp2p:peer-store:trace get await read lock +26ms -libp2p:yamux:trace new outgoing stream id=1 +1ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +1ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +1ms -libp2p:yamux:trace new outgoing stream id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +1ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=53 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:yamux:trace new incoming stream id=2 +0ms -libp2p:yamux:trace stream received window update id=2 +1ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +0ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +98ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +1ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +0ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +4ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +1ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +1ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=357 +0ms -libp2p:yamux:trace stream sink ended id=2 +0ms -libp2p:yamux:trace stream close write id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream close id=2 +1ms -libp2p:yamux:trace stream close read id=2 +0ms -libp2p:yamux:trace stream source ended id=2 +0ms -libp2p:yamux:trace stream finished id=2 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +1ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +8ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +1ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +4ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace stream sink ended id=1 +1ms -libp2p:yamux:trace stream close write id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=352 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=352 +0ms -libp2p:yamux:trace stream close id=1 +0ms -libp2p:yamux:trace stream close read id=1 +0ms -libp2p:yamux:trace stream source ended id=1 +1ms -libp2p:yamux:trace stream finished id=1 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +1ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=53 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +1ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +6ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=33 +1ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=33 +0ms -libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +1ms -libp2p:peer-store:trace merge await write lock +6ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=3 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=357 +1ms -libp2p:peer-store:trace get await read lock +5ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=3 +5ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=277 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=277 +0ms -libp2p:yamux:trace stream close id=3 +0ms -libp2p:yamux:trace stream close read id=3 +1ms -libp2p:yamux:trace stream source ended id=3 +0ms -libp2p:yamux:trace stream close write id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=3 +0ms -libp2p:peer-store:trace merge await write lock +2ms -libp2p:yamux:trace stream sink ended id=3 +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace merge await write lock +17ms -libp2p:peer-store:trace merge await write lock +1ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:connection-manager:auto-dial:trace have enough connections 0/0 +75ms -libp2p:peer-store:trace all await read lock +0ms -libp2p:peer-store:trace all got read lock +1ms -libp2p:peer-store:trace all release read lock +1ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +34ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +2ms -libp2p:mss:select:trace select: read "/noise" +0ms -libp2p:noise:trace Stage 0 - Initiator starting to send first message. +60ms -libp2p:noise:trace Stage 0 - Initiator finished sending first message. +2ms -libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +0ms -libp2p:noise:trace Stage 1 - Initiator received the message. +7ms -libp2p:noise:trace Initiator going to check remote's signature... +0ms -libp2p:noise:trace All good with the signature! +3ms -libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms -libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +1ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +14ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +4ms -libp2p:mss:select:trace select: read "/yamux/1.0.0" +2ms -libp2p:yamux:trace muxer created +47ms -libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms -libp2p:peer-store:trace get await read lock +24ms -libp2p:yamux:trace new outgoing stream id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +1ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +1ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +0ms -libp2p:yamux:trace new outgoing stream id=3 +1ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +1ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=53 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +1ms -libp2p:yamux:trace new incoming stream id=2 +0ms -libp2p:yamux:trace stream received window update id=2 +0ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +0ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +1ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +73ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +0ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +4ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace get await read lock +1ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=357 +1ms -libp2p:yamux:trace stream sink ended id=2 +0ms -libp2p:yamux:trace stream close write id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream close id=2 +0ms -libp2p:yamux:trace stream close read id=2 +0ms -libp2p:yamux:trace stream source ended id=2 +0ms -libp2p:yamux:trace stream finished id=2 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +1ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +7ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +0ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +2ms -libp2p:peer-store:trace merge await write lock +5ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace stream sink ended id=1 +2ms -libp2p:yamux:trace stream close write id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=352 +0ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=352 +0ms -libp2p:yamux:trace stream close id=1 +1ms -libp2p:yamux:trace stream close read id=1 +0ms -libp2p:yamux:trace stream source ended id=1 +0ms -libp2p:yamux:trace stream finished id=1 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +2ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=53 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +6ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=33 +1ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=33 +0ms -libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +1ms -libp2p:peer-store:trace merge await write lock +8ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=3 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +1ms -libp2p:peer-store:trace get await read lock +3ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +4ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=357 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=3 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=277 +1ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=277 +0ms -libp2p:yamux:trace stream close id=3 +0ms -libp2p:yamux:trace stream close read id=3 +0ms -libp2p:yamux:trace stream source ended id=3 +0ms -libp2p:yamux:trace stream close write id=3 +1ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=3 +0ms -libp2p:peer-store:trace merge await write lock +4ms -libp2p:yamux:trace stream sink ended id=3 +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace merge await write lock +3ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace get await read lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:yamux:trace new outgoing stream id=5 +7ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:peer-store:trace get release read lock +2ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +16ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=53 +1ms -libp2p:peer-store:trace get await read lock +3ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +1ms -libp2p:yamux:trace new outgoing stream id=5 +4ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/push/1.0.0"] +5ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=41 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=ACK length=53 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +3ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=33 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=33 +1ms -libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +1ms -libp2p:peer-store:trace merge await write lock +5ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=88 +2ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=ACK length=41 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +5ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=21 +1ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=21 +0ms -libp2p:mss:select:trace select: read "/ipfs/id/push/1.0.0" +2ms -libp2p:peer-store:trace merge await write lock +6ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +2ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=668 +0ms -libp2p:yamux:trace stream sink ended id=5 +0ms -libp2p:yamux:trace stream close write id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream close id=5 +0ms -libp2p:yamux:trace stream close read id=5 +1ms -libp2p:yamux:trace stream source ended id=5 +0ms -libp2p:yamux:trace stream finished id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:yamux:trace new incoming stream id=4 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=54 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag=ACK length=54 +2ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +52ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=20 +4ms -libp2p:mss:handle:trace read "/libp2p/circuit/relay/0.2.0/stop" +1ms -libp2p:mss:handle:trace respond with "/libp2p/circuit/relay/0.2.0/stop" for "/libp2p/circuit/relay/0.2.0/stop" +1ms -libp2p:peer-store:trace merge await write lock +10ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=34 +2ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=88 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=668 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=20 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=34 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=45 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=45 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=5 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=5 +3ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=5 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=5 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +21ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +2ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +14ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=20 +0ms -libp2p:mss:handle:trace read "/noise" +1ms -libp2p:mss:handle:trace respond with "/noise" for "/noise" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=8 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=20 +3ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=8 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:noise:trace Stage 0 - Responder waiting to receive first message... +85ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +9ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=8 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=8 +1ms -libp2p:mss:select:trace select: read "/noise" +1ms -libp2p:noise:trace Stage 0 - Initiator starting to send first message. +3ms -libp2p:noise:trace Stage 0 - Initiator finished sending first message. +2ms -libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=34 +3ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=34 +2ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=34 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=34 +1ms -libp2p:noise:trace Stage 0 - Responder received first message. +3ms -libp2p:noise:trace Stage 1 - Responder sending out first message with signed payload and static key. +0ms -libp2p:noise:trace Stage 1 - Responder sent the second handshake message with signed payload. +4ms -libp2p:noise:trace Stage 2 - Responder waiting for third handshake message... +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=204 +4ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=204 +2ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=204 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=204 +0ms -libp2p:noise:trace Stage 1 - Initiator received the message. +6ms -libp2p:noise:trace Initiator going to check remote's signature... +0ms -libp2p:noise:trace All good with the signature! +3ms -libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms -libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=172 +8ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +21ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=50 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=172 +3ms -libp2p:yamux:trace stream received window update id=5 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=172 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=172 +1ms -libp2p:noise:trace Stage 2 - Responder received the message, finished handshake. +7ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +2ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +2ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=50 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=50 +1ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +38ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:mss:handle:trace read "/yamux/1.0.0" +0ms -libp2p:mss:handle:trace respond with "/yamux/1.0.0" for "/yamux/1.0.0" +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +1ms -libp2p:yamux:trace muxer created +0ms -libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms -libp2p:peer-store:trace get await read lock +53ms -libp2p:yamux:trace new outgoing stream id=2 +1ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +13ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=36 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=30 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=52 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=50 +11ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=30 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +21ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=30 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=30 +1ms -libp2p:mss:select:trace select: read "/yamux/1.0.0" +2ms -libp2p:yamux:trace muxer created +0ms -libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms -libp2p:peer-store:trace get await read lock +24ms -libp2p:yamux:trace new outgoing stream id=1 +1ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +2ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace new outgoing stream id=3 +1ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/webrtc-signaling/0.0.1"] +1ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +1ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=45 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=52 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=61 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +10ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:yamux:trace new incoming stream id=2 +0ms -libp2p:yamux:trace stream received window update id=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +0ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=52 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=52 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +49ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +0ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +24ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:peer-store:trace merge release write lock +2ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=36 +0ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +2ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=32 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +4ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=52 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=52 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=61 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:yamux:trace new incoming stream id=1 +0ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:yamux:trace new incoming stream id=3 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=36 +0ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=52 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=52 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=ACK length=36 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +26ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=20 +0ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +0ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +24ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +2ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=16 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +1ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=32 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +5ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +39ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=45 +3ms -libp2p:yamux:trace stream received data id=3 +2ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=61 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=61 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=ACK length=45 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +56ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=20 +0ms -libp2p:mss:handle:trace read "/webrtc-signaling/0.0.1" +0ms -libp2p:mss:handle:trace respond with "/webrtc-signaling/0.0.1" for "/webrtc-signaling/0.0.1" +1ms -libp2p:peer-store:trace merge await write lock +55ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=25 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +2ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +2ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=41 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +4ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=ACK length=36 +1ms -libp2p:yamux:trace stream received window update id=2 +4ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +4ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +2ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=20 +5ms -libp2p:yamux:trace stream received data id=2 +2ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=36 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=36 +1ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +142ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +3ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=16 +1ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=32 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=32 +1ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=16 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +7ms -libp2p:peer-store:trace merge await write lock +41ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace stream sink ended id=2 +1ms -libp2p:yamux:trace stream close write id=2 +1ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=36 +2ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=32 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=32 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=41 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +1ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +1ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +24ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +0ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=32 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=32 +1ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +5ms -libp2p:peer-store:trace merge await write lock +28ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace stream sink ended id=1 +2ms -libp2p:yamux:trace stream close write id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +2ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=45 +0ms -libp2p:yamux:trace stream received window update id=3 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=3 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +1ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +13ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +3ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=25 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=41 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=41 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=25 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:mss:select:trace select: read "/webrtc-signaling/0.0.1" +8ms -libp2p:peer-store:trace merge await write lock +19ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +4ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace stream received window update id=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +0ms -libp2p:yamux:trace stream received window update id=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream received window update id=2 +0ms -libp2p:yamux:trace stream close read id=2 +0ms -libp2p:yamux:trace stream source ended id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=789 +0ms -libp2p:yamux:trace stream sink ended id=2 +0ms -libp2p:yamux:trace stream close write id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream close id=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=18 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=805 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +4ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=465 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=481 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +2ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=802 +0ms -libp2p:yamux:trace stream sink ended id=1 +0ms -libp2p:yamux:trace stream close write id=1 +1ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream close id=1 +0ms -libp2p:yamux:trace stream close read id=1 +0ms -libp2p:yamux:trace stream source ended id=1 +0ms -libp2p:yamux:trace stream finished id=1 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=18 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=818 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +2ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=16 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +2ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +3ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +2ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=25 +1ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=2 +2ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=18 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=18 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=789 +0ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=18 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=805 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=805 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=805 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=789 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream close id=2 +0ms -libp2p:yamux:trace stream close read id=2 +0ms -libp2p:yamux:trace stream source ended id=2 +0ms -libp2p:yamux:trace stream finished id=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +2ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=465 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=481 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=481 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=465 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=18 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=818 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=481 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=18 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=18 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=802 +0ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=818 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=818 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=802 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream close id=1 +0ms -libp2p:yamux:trace stream close read id=1 +0ms -libp2p:yamux:trace stream source ended id=1 +0ms -libp2p:yamux:trace stream finished id=1 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +2ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +0ms -libp2p:peer-store:trace get await read lock +89ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +1ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +3ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +2ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=789 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=465 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:peer-store:trace get await read lock +10ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +3ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=802 +1ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=461 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=477 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +6ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=461 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=477 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=477 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=461 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=477 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=216 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=232 +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=216 +3ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=232 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +11ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=461 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=216 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=232 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=232 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=216 +0ms -libp2p:webrtc:peer:util:trace received new ICE candidate: {"candidate":"candidate:2713023471 1 udp 2113937151 169a4ddd-84ab-47a5-be4b-d7d6c4967bb0.local 54423 typ host generation 0 ufrag s2rx network-cost 999","sdpMid":"0","sdpMLineIndex":0,"usernameFragment":"s2rx"} +699ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +2ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=232 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=232 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=216 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=232 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=232 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=216 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:webrtc:peer:util:trace received new ICE candidate: {"candidate":"candidate:1369315953 1 udp 2113937151 169a4ddd-84ab-47a5-be4b-d7d6c4967bb0.local 53243 typ host generation 0 ufrag p/It network-cost 999","sdpMid":"0","sdpMLineIndex":0,"usernameFragment":"p/It"} +7ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=216 +0ms -libp2p:yamux:trace stream received window update id=3 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=216 +0ms -libp2p:yamux:trace stream received window update id=3 +1ms -libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +7ms connecting -libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +0ms connecting -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=21 +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=5 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=21 +0ms -libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +2ms connected -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +162ms -libp2p:yamux:trace stream close id=3 +5ms -libp2p:yamux:trace stream close read id=3 +0ms -libp2p:yamux:trace stream source ended id=3 +0ms -libp2p:yamux:trace stream close write id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=3 +0ms -libp2p:yamux:trace stream sink ended id=3 +1ms -libp2p:connection-manager:auto-dial:trace have enough connections 2/0 +529ms -libp2p:webrtc:stream:trace sending 39 bytes +655ms -libp2p:webrtc:stream:trace channel ready state: connecting +0ms -libp2p:yamux:trace muxer close reason=InternalError +0ms -libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +0ms -libp2p:yamux:trace muxer source ended +0ms -libp2p:yamux:trace stream sink ended id=5 +1ms -libp2p:yamux:trace stream close write id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace muxer sink ended +0ms -libp2p:yamux:trace stream close id=5 +0ms -libp2p:yamux:trace stream close read id=5 +0ms -libp2p:yamux:trace stream source ended id=5 +0ms -libp2p:yamux:trace stream finished id=5 +1ms -libp2p:webrtc:stream:trace sending 39 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 0 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +4ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=5 +1ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=21 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=21 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=5 +0ms -libp2p:webrtc:peer:util:trace end-of-candidates received +16ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=21 +2ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +3ms connected -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +19ms -libp2p:yamux:trace stream close id=3 +5ms -libp2p:yamux:trace stream close read id=3 +0ms -libp2p:yamux:trace stream source ended id=3 +0ms -libp2p:yamux:trace stream close write id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=3 +0ms -libp2p:yamux:trace stream sink ended id=3 +1ms -libp2p:connection-manager:auto-dial:trace have enough connections 2/0 +19ms -libp2p:webrtc:stream:trace sending 39 bytes +14ms -libp2p:webrtc:stream:trace channel ready state: connecting +0ms -libp2p:yamux:trace muxer close reason=InternalError +0ms -libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +0ms -libp2p:yamux:trace muxer source ended +1ms -libp2p:yamux:trace stream sink ended id=4 +0ms -libp2p:yamux:trace stream close write id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace muxer sink ended +0ms -libp2p:peer-store:trace get await read lock +83ms -libp2p:connection-manager:auto-dial:trace have enough connections 1/0 +4ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace muxer sink ended +3ms -libp2p:yamux:trace muxer close reason=NormalTermination +0ms -libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=0 +1ms -libp2p:yamux:trace muxer source ended +0ms -libp2p:yamux:trace stream close id=4 +0ms -libp2p:yamux:trace stream close read id=4 +0ms -libp2p:yamux:trace stream source ended id=4 +0ms -libp2p:yamux:trace stream finished id=4 +0ms -libp2p:webrtc:stream:trace sending 39 bytes +6ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 0 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace get await read lock +4ms -libp2p:connection-manager:auto-dial:trace have enough connections 1/0 +5ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace muxer sink ended +4ms -libp2p:yamux:trace muxer close reason=NormalTermination +1ms -libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=0 +0ms -libp2p:yamux:trace muxer source ended +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/echo/1.0.0"] +12ms -libp2p:webrtc:stream:trace sending 36 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: connecting +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +285ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:webrtc:stream:trace sending 23 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +3ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:webrtc:stream:trace sending 19 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:webrtc:stream:trace sending 5 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 402 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +0ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 36 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 0 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +5ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +3ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:webrtc:stream:trace Sending flag: FIN +1ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:peer-store:trace patch await write lock +1ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +7ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:webrtc:stream:trace sending 23 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:mss:handle:trace read "/echo/1.0.0" +0ms -libp2p:mss:handle:trace respond with "/echo/1.0.0" for "/echo/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +1ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:webrtc:stream:trace sending 16 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +4ms -libp2p:mss:select:trace select: read "/echo/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +1ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 197 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 197 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 197 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 197 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +5ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 197 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +1ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +6ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +8ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +13ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +10ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +17ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +8ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 197 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +6ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace patch await write lock +313ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:peer-store:trace patch await write lock +4ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +9ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +7ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +6ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +6ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +6ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +6ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +7ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +7ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +6ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +10ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 197 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +10ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +10ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +10ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +23ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +17ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +7ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +13ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +8ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +8ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +8ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +15ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +6ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +8ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +9ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +6ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +11ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +11ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 197 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +11ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +13ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +11ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +11ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +10ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +9ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +8ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +6ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +18ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +6ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +10ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +10ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +9ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 197 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +8ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +7ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +9ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace patch await write lock +668ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace patch await write lock +5ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +8ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +11ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +4ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +8ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +8ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +8ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +9ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +7ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +12ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 16387 bytes +8ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 197 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +0ms -libp2p:webrtc:peer:trace dialing address: +871ms { - bytes: { - '0': 4, - '1': 127, - '2': 0, - '3': 0, - '4': 1, - '5': 6, - '6': 243, - '7': 190, - '8': 221, - '9': 3, - '10': 165, - '11': 3, - '12': 38, - '13': 0, - '14': 36, - '15': 8, - '16': 1, - '17': 18, - '18': 32, - '19': 225, - '20': 122, - '21': 160, - '22': 92, - '23': 34, - '24': 165, - '25': 112, - '26': 169, - '27': 165, - '28': 157, - '29': 91, - '30': 39, - '31': 212, - '32': 8, - '33': 211, - '34': 84, - '35': 177, - '36': 12, - '37': 67, - '38': 157, - '39': 239, - '40': 206, - '41': 48, - '42': 119, - '43': 145, - '44': 45, - '45': 182, - '46': 96, - '47': 31, - '48': 217, - '49': 51, - '50': 134, - '51': 162, - '52': 2, - '53': 153, - '54': 2, - '55': 165, - '56': 3, - '57': 38, - '58': 0, - '59': 36, - '60': 8, - '61': 1, - '62': 18, - '63': 32, - '64': 236, - '65': 222, - '66': 174, - '67': 7, - '68': 89, - '69': 50, - '70': 8, - '71': 207, - '72': 220, - '73': 176, - '74': 231, - '75': 23, - '76': 174, - '77': 74, - '78': 101, - '79': 81, - '80': 239, - '81': 33, - '82': 150, - '83': 120, - '84': 233, - '85': 111, - '86': 179, - '87': 154, - '88': 232, - '89': 97, - '90': 183, - '91': 124, - '92': 227, - '93': 157, - '94': 102, - '95': 149 - } -} -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +175ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -  ✅ can send a large file (1864ms) -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +89ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +1ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:connection:trace closing connection +2s -libp2p:peer-store:trace get await read lock +362ms -libp2p:peer-store:trace patch await write lock +2ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch got write lock +1ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:peer-store:trace patch got write lock +1ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +5ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:webrtc:stream:trace Sending flag: FIN +0ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:connection:trace closing connection +6ms -libp2p:peer-store:trace get await read lock +1ms -libp2p:peer-store:trace patch await write lock +2ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -  2 passing (3s) -libp2p:peer-store:trace get await read lock +7ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace get await read lock +1ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch await write lock +983ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:peer-store:trace patch await write lock +2ms -libp2p:peer-store:trace patch got write lock +1ms -libp2p:peer-store:trace patch release write lock +0ms diff --git a/packages/transport-webrtc/src/stream.ts b/packages/transport-webrtc/src/stream.ts index ad7867ac44..a380d3b8ec 100644 --- a/packages/transport-webrtc/src/stream.ts +++ b/packages/transport-webrtc/src/stream.ts @@ -7,7 +7,6 @@ import { pEvent, TimeoutError } from 'p-event' import { Uint8ArrayList } from 'uint8arraylist' import { Message } from './pb/message.js' import type { Direction, Stream } from '@libp2p/interface/connection' -import delay from 'delay' const log = logger('libp2p:webrtc:stream') @@ -155,8 +154,6 @@ class WebRTCStream extends AbstractStream { log.trace('binary type is: %s', this.channel.binaryType) - await delay(10) - if (checkBuffer && this.channel.bufferedAmount > this.dataChannelOptions.maxBufferedAmount) { try { await pEvent(this.channel, 'bufferedamountlow', { timeout: this.dataChannelOptions.bufferedAmountLowEventTimeout }) diff --git a/packages/transport-webrtc/webkit_output.txt b/packages/transport-webrtc/webkit_output.txt deleted file mode 100644 index 9b982cb9e1..0000000000 --- a/packages/transport-webrtc/webkit_output.txt +++ /dev/null @@ -1,1678 +0,0 @@ - -> @libp2p/webrtc@2.0.10 test:webkit -> aegir test -g "basics" -t browser -- --browser webkit - -build - -> @libp2p/webrtc@2.0.10 build -> aegir build - -[17:30:38] tsc [started] -[17:30:41] tsc [completed] -[17:30:41] esbuild [started] -[17:30:41] esbuild [completed] -test browser - - basics -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge await write lock +2ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +5ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +4ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:connection-manager:auto-dial:trace have enough connections 0/0 +0ms -libp2p:peer-store:trace all await read lock +9ms -libp2p:peer-store:trace all got read lock +2ms -libp2p:peer-store:trace all release read lock +5ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +13ms -libp2p:mss:select:trace select: read "/noise" +1ms -libp2p:noise:trace Stage 0 - Initiator starting to send first message. +0ms -libp2p:noise:trace Stage 0 - Initiator finished sending first message. +3ms -libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +0ms -libp2p:noise:trace Stage 1 - Initiator received the message. +21ms -libp2p:noise:trace Initiator going to check remote's signature... +0ms -libp2p:noise:trace All good with the signature! +6ms -libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms -libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +5ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +42ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +7ms -libp2p:mss:select:trace select: read "/yamux/1.0.0" +6ms -libp2p:yamux:trace muxer created +0ms -libp2p:yamux:trace muxer keepalive enabled interval=30000 +1ms -libp2p:peer-store:trace get await read lock +80ms -libp2p:yamux:trace new outgoing stream id=1 +4ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +7ms -libp2p:peer-store:trace get got read lock +3ms -libp2p:peer-store:trace get release read lock +1ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +2ms -libp2p:yamux:trace new outgoing stream id=3 +3ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +4ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=53 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +4ms -libp2p:yamux:trace new incoming stream id=2 +0ms -libp2p:yamux:trace stream received window update id=2 +1ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +2ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +1ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +0ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +1ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +15ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +2ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace get await read lock +1ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +1ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +4ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=345 +1ms -libp2p:yamux:trace stream sink ended id=2 +0ms -libp2p:yamux:trace stream close write id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream close id=2 +1ms -libp2p:yamux:trace stream close read id=2 +0ms -libp2p:yamux:trace stream source ended id=2 +0ms -libp2p:yamux:trace stream finished id=2 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +2ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=1 +1ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +22ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +1ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +9ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace stream sink ended id=1 +2ms -libp2p:yamux:trace stream close write id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=352 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=352 +1ms -libp2p:yamux:trace stream close id=1 +1ms -libp2p:yamux:trace stream close read id=1 +0ms -libp2p:yamux:trace stream source ended id=1 +0ms -libp2p:yamux:trace stream finished id=1 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +4ms -libp2p:peer-store:trace get await read lock +15ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +1ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=53 +10ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +21ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=33 +1ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=33 +0ms -libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +2ms -libp2p:peer-store:trace merge await write lock +4ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=3 +3ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=345 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=3 +4ms -libp2p:yamux:trace stream received window update id=3 +1ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=277 +2ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=277 +0ms -libp2p:yamux:trace stream close id=3 +1ms -libp2p:yamux:trace stream close read id=3 +0ms -libp2p:yamux:trace stream source ended id=3 +1ms -libp2p:yamux:trace stream close write id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=3 +0ms -libp2p:peer-store:trace merge await write lock +12ms -libp2p:yamux:trace stream sink ended id=3 +1ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace merge await write lock +30ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge await write lock +1ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace merge await write lock +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:connection-manager:auto-dial:trace have enough connections 0/0 +191ms -libp2p:peer-store:trace all await read lock +2ms -libp2p:peer-store:trace all got read lock +1ms -libp2p:peer-store:trace all release read lock +1ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +57ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +1ms -libp2p:mss:select:trace select: read "/noise" +1ms -libp2p:noise:trace Stage 0 - Initiator starting to send first message. +133ms -libp2p:noise:trace Stage 0 - Initiator finished sending first message. +3ms -libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +0ms -libp2p:noise:trace Stage 1 - Initiator received the message. +12ms -libp2p:noise:trace Initiator going to check remote's signature... +0ms -libp2p:noise:trace All good with the signature! +4ms -libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms -libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +3ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +25ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +4ms -libp2p:mss:select:trace select: read "/yamux/1.0.0" +2ms -libp2p:yamux:trace muxer created +77ms -libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms -libp2p:peer-store:trace get await read lock +38ms -libp2p:yamux:trace new outgoing stream id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +1ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +2ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +1ms -libp2p:yamux:trace new outgoing stream id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +2ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=53 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +1ms -libp2p:yamux:trace new incoming stream id=2 +1ms -libp2p:yamux:trace stream received window update id=2 +0ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +1ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +133ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +1ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +0ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +7ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +1ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +3ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=345 +0ms -libp2p:yamux:trace stream sink ended id=2 +0ms -libp2p:yamux:trace stream close write id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream close id=2 +0ms -libp2p:yamux:trace stream close read id=2 +1ms -libp2p:yamux:trace stream source ended id=2 +0ms -libp2p:yamux:trace stream finished id=2 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +1ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +11ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +1ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +5ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace stream sink ended id=1 +2ms -libp2p:yamux:trace stream close write id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=352 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=352 +0ms -libp2p:yamux:trace stream close id=1 +1ms -libp2p:yamux:trace stream close read id=1 +0ms -libp2p:yamux:trace stream source ended id=1 +0ms -libp2p:yamux:trace stream finished id=1 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +2ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=53 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +1ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +8ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=33 +1ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=33 +0ms -libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +1ms -libp2p:peer-store:trace merge await write lock +8ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=3 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:peer-store:trace get await read lock +4ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +5ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=345 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=3 +1ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=277 +1ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=277 +0ms -libp2p:yamux:trace stream close id=3 +0ms -libp2p:yamux:trace stream close read id=3 +0ms -libp2p:yamux:trace stream source ended id=3 +0ms -libp2p:yamux:trace stream close write id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=3 +1ms -libp2p:peer-store:trace merge await write lock +3ms -libp2p:yamux:trace stream sink ended id=3 +0ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace merge await write lock +6ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace get await read lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:peer-store:trace get got read lock +2ms -libp2p:yamux:trace new outgoing stream id=5 +15ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:peer-store:trace get release read lock +5ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/libp2p/circuit/relay/0.2.0/hop"] +26ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=53 +4ms -libp2p:peer-store:trace get await read lock +6ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace new outgoing stream id=5 +3ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/push/1.0.0"] +6ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=41 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=ACK length=53 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +3ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=33 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=33 +0ms -libp2p:mss:select:trace select: read "/libp2p/circuit/relay/0.2.0/hop" +1ms -libp2p:peer-store:trace merge await write lock +5ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=88 +2ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=ACK length=41 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +3ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +7ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=21 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=21 +0ms -libp2p:mss:select:trace select: read "/ipfs/id/push/1.0.0" +3ms -libp2p:peer-store:trace merge await write lock +9ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +3ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=656 +1ms -libp2p:yamux:trace stream sink ended id=5 +0ms -libp2p:yamux:trace stream close write id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream close id=5 +0ms -libp2p:yamux:trace stream close read id=5 +0ms -libp2p:yamux:trace stream source ended id=5 +0ms -libp2p:yamux:trace stream finished id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=88 +2ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag=SYN length=0 +1ms -libp2p:yamux:trace new incoming stream id=4 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=54 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag=ACK length=54 +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +68ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=20 +0ms -libp2p:mss:handle:trace read "/libp2p/circuit/relay/0.2.0/stop" +1ms -libp2p:mss:handle:trace respond with "/libp2p/circuit/relay/0.2.0/stop" for "/libp2p/circuit/relay/0.2.0/stop" +0ms -libp2p:peer-store:trace merge await write lock +7ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=34 +2ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +2ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=656 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag=FIN length=0 +3ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=20 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=34 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=45 +2ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=45 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=5 +6ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=5 +4ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=5 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=5 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/noise"] +30ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +2ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +40ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +64ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=20 +1ms -libp2p:mss:handle:trace read "/noise" +1ms -libp2p:mss:handle:trace respond with "/noise" for "/noise" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=8 +1ms -libp2p:noise:trace Stage 0 - Responder waiting to receive first message... +153ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=20 +2ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=20 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=20 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +47ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=8 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=8 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=8 +0ms -libp2p:mss:select:trace select: read "/noise" +2ms -libp2p:noise:trace Stage 0 - Initiator starting to send first message. +5ms -libp2p:noise:trace Stage 0 - Initiator finished sending first message. +3ms -libp2p:noise:trace Stage 1 - Initiator waiting to receive first message from responder... +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=34 +5ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=34 +5ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=34 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=34 +0ms -libp2p:noise:trace Stage 0 - Responder received first message. +7ms -libp2p:noise:trace Stage 1 - Responder sending out first message with signed payload and static key. +0ms -libp2p:noise:trace Stage 1 - Responder sent the second handshake message with signed payload. +9ms -libp2p:noise:trace Stage 2 - Responder waiting for third handshake message... +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=204 +10ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=204 +3ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=204 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=204 +1ms -libp2p:noise:trace Stage 1 - Initiator received the message. +11ms -libp2p:noise:trace Initiator going to check remote's signature... +0ms -libp2p:noise:trace All good with the signature! +4ms -libp2p:noise:trace Stage 2 - Initiator sending third handshake message. +0ms -libp2p:noise:trace Stage 2 - Initiator sent message with signed payload. +3ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/yamux/1.0.0"] +38ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=172 +14ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=50 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=172 +3ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=172 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=172 +0ms -libp2p:noise:trace Stage 2 - Responder received the message, finished handshake. +8ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +8ms -libp2p:yamux:trace stream received window update id=5 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=50 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=50 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=50 +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +62ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:mss:handle:trace read "/yamux/1.0.0" +0ms -libp2p:mss:handle:trace respond with "/yamux/1.0.0" for "/yamux/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace muxer created +1ms -libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms -libp2p:peer-store:trace get await read lock +127ms -libp2p:yamux:trace new outgoing stream id=2 +1ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +19ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +1ms -libp2p:peer-store:trace get release read lock +1ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=36 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=30 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=52 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +3ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +9ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +2ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=30 +2ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=30 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=30 +0ms -libp2p:mss:select:trace select: read "/yamux/1.0.0" +7ms -libp2p:yamux:trace muxer created +1ms -libp2p:yamux:trace muxer keepalive enabled interval=30000 +0ms -libp2p:peer-store:trace get await read lock +16ms -libp2p:yamux:trace new outgoing stream id=1 +1ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +2ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace new outgoing stream id=3 +1ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=SYN length=0 +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/webrtc-signaling/0.0.1"] +1ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=36 +1ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=45 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=52 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=61 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +2ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=SYN length=0 +1ms -libp2p:yamux:trace new incoming stream id=2 +0ms -libp2p:yamux:trace stream received window update id=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=36 +1ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=52 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=52 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=52 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=ACK length=36 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +37ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=20 +0ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +18ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +2ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=16 +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=36 +3ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=32 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +2ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=SYN length=0 +1ms -libp2p:yamux:trace new incoming stream id=1 +0ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=SYN length=0 +1ms -libp2p:yamux:trace new incoming stream id=3 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=36 +0ms -libp2p:yamux:trace stream received data id=1 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=52 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=52 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=52 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=ACK length=36 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +24ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=20 +0ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +2ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +24ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=16 +2ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:peer-store:trace merge release write lock +2ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +12ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=32 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +9ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +4ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=45 +0ms -libp2p:yamux:trace stream received data id=3 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=61 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=61 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=61 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=ACK length=45 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +36ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=20 +0ms -libp2p:mss:handle:trace read "/webrtc-signaling/0.0.1" +1ms -libp2p:mss:handle:trace respond with "/webrtc-signaling/0.0.1" for "/webrtc-signaling/0.0.1" +1ms -libp2p:peer-store:trace merge await write lock +35ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=25 +2ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:peer-store:trace merge release write lock +2ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +195ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=36 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=41 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +2ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=ACK length=36 +0ms -libp2p:yamux:trace stream received window update id=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=20 +0ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=36 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=36 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=36 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +286ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=32 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=16 +0ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=32 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=32 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=16 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +2ms -libp2p:peer-store:trace merge await write lock +205ms -libp2p:peer-store:trace merge got write lock +1ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace stream sink ended id=2 +1ms -libp2p:yamux:trace stream close write id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=ACK length=36 +0ms -libp2p:yamux:trace stream received window update id=1 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=20 +1ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +6ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=16 +0ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=32 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=32 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=32 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=16 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +4ms -libp2p:peer-store:trace merge await write lock +9ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:webrtc:peer:trace dialing address: +0ms { - bytes: { - '0': 4, - '1': 127, - '2': 0, - '3': 0, - '4': 1, - '5': 6, - '6': 245, - '7': 124, - '8': 221, - '9': 3, - '10': 165, - '11': 3, - '12': 38, - '13': 0, - '14': 36, - '15': 8, - '16': 1, - '17': 18, - '18': 32, - '19': 88, - '20': 0, - '21': 112, - '22': 174, - '23': 250, - '24': 133, - '25': 173, - '26': 36, - '27': 3, - '28': 20, - '29': 12, - '30': 77, - '31': 3, - '32': 110, - '33': 17, - '34': 15, - '35': 132, - '36': 87, - '37': 117, - '38': 11, - '39': 229, - '40': 150, - '41': 89, - '42': 0, - '43': 110, - '44': 17, - '45': 73, - '46': 22, - '47': 128, - '48': 132, - '49': 154, - '50': 196, - '51': 162, - '52': 2, - '53': 153, - '54': 2, - '55': 165, - '56': 3, - '57': 38, - '58': 0, - '59': 36, - '60': 8, - '61': 1, - '62': 18, - '63': 32, - '64': 38, - '65': 220, - '66': 68, - '67': 110, - '68': 96, - '69': 130, - '70': 103, - '71': 28, - '72': 70, - '73': 63, - '74': 172, - '75': 0, - '76': 166, - '77': 68, - '78': 248, - '79': 96, - '80': 239, - '81': 129, - '82': 109, - '83': 63, - '84': 163, - '85': 122, - '86': 207, - '87': 129, - '88': 192, - '89': 31, - '90': 97, - '91': 7, - '92': 79, - '93': 194, - '94': 70, - '95': 105 - } -} -libp2p:peer-store:trace merge release write lock +1ms -libp2p:yamux:trace stream sink ended id=1 +2ms -libp2p:yamux:trace stream close write id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=2 type=Data flag= length=777 +0ms -libp2p:yamux:trace stream sink ended id=2 +1ms -libp2p:yamux:trace stream close write id=2 +0ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream close id=2 +0ms -libp2p:yamux:trace stream close read id=2 +0ms -libp2p:yamux:trace stream source ended id=2 +0ms -libp2p:yamux:trace stream finished id=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=18 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=793 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=2 +2ms -libp2p:yamux:trace sending frame streamID=1 type=Data flag= length=790 +0ms -libp2p:yamux:trace stream sink ended id=1 +0ms -libp2p:yamux:trace stream close write id=1 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream close id=1 +0ms -libp2p:yamux:trace stream close read id=1 +0ms -libp2p:yamux:trace stream source ended id=1 +0ms -libp2p:yamux:trace stream finished id=1 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=18 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=806 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag=ACK length=45 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=36 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=20 +1ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=41 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=36 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=36 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=20 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +17ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=25 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=41 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=41 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=25 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:mss:select:trace select: read "/webrtc-signaling/0.0.1" +5ms -libp2p:peer-store:trace merge await write lock +21ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +4ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=20 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=16 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +5ms -libp2p:yamux:trace stream received window update id=5 +14ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=20 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +1ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=16 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +1ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=464 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=480 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=18 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=18 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=18 +1ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=2 type=Data flag= length=777 +0ms -libp2p:yamux:trace stream received data id=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=793 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=793 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=793 +1ms -libp2p:yamux:trace sending frame streamID=2 type=WindowUpdate flag= length=777 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream close id=2 +0ms -libp2p:yamux:trace stream close read id=2 +0ms -libp2p:yamux:trace stream source ended id=2 +0ms -libp2p:yamux:trace stream finished id=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +3ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=20 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=18 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=18 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=18 +1ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=Data flag= length=790 +0ms -libp2p:yamux:trace stream received data id=1 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=806 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=806 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=806 +0ms -libp2p:yamux:trace sending frame streamID=1 type=WindowUpdate flag= length=790 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream close id=1 +0ms -libp2p:yamux:trace stream close read id=1 +0ms -libp2p:yamux:trace stream source ended id=1 +0ms -libp2p:yamux:trace stream finished id=1 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +3ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=25 +0ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:peer-store:trace get await read lock +69ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:peer-store:trace patch got write lock +1ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +10ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=464 +0ms -libp2p:yamux:trace stream received data id=3 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=480 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=480 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=480 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=464 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +1ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=2 type=WindowUpdate flag= length=777 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +4ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +4ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=1 type=WindowUpdate flag= length=790 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=226 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=242 +1ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=WindowUpdate flag= length=464 +1ms -libp2p:yamux:trace stream received window update id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=464 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=480 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +2ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=226 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=242 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=28 +2ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=28 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=226 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=5 type=WindowUpdate flag= length=242 +1ms -libp2p:yamux:trace stream received window update id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=Data flag= length=242 +1ms -libp2p:yamux:trace stream received data id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag= length=242 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=226 +0ms -libp2p:webrtc:peer:util:trace received new ICE candidate: {"candidate":"candidate:3218737663 1 udp 2122260223 300b7d92-46c0-4f54-9e30-7200d16d2079.local 65052 typ host generation 0 ufrag jGaT network-id 1 network-cost 50","sdpMLineIndex":0,"sdpMid":"0","usernameFragment":null} +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +3ms connecting -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +4ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +4ms connecting -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=464 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=5 +1ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=4 type=Data flag= length=21 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=480 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=480 +1ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=480 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag= length=464 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace received frame streamID=3 type=Data flag= length=226 +0ms -libp2p:yamux:trace stream received data id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=Data flag= length=5 +1ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=28 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace sending frame streamID=5 type=Data flag= length=21 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=5 type=Data flag= length=2 +0ms -libp2p:yamux:trace stream received data id=5 +0ms -libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +10ms connected -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +139ms -libp2p:yamux:trace stream close id=3 +10ms -libp2p:yamux:trace stream close read id=3 +0ms -libp2p:yamux:trace stream source ended id=3 +0ms -libp2p:yamux:trace stream close write id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=3 +0ms -libp2p:yamux:trace stream sink ended id=3 +1ms -libp2p:connection-manager:auto-dial:trace have enough connections 2/0 +725ms -libp2p:webrtc:stream:trace sending 39 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: connecting +0ms -libp2p:yamux:trace muxer close reason=InternalError +1ms -libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +1ms -libp2p:yamux:trace muxer source ended +0ms -libp2p:yamux:trace stream sink ended id=5 +0ms -libp2p:yamux:trace stream close write id=5 +0ms -libp2p:yamux:trace sending frame streamID=5 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace muxer sink ended +1ms -libp2p:yamux:trace stream close id=5 +1ms -libp2p:yamux:trace stream close read id=5 +0ms -libp2p:yamux:trace stream source ended id=5 +0ms -libp2p:yamux:trace stream finished id=5 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=242 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=28 +0ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=2 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:webrtc:stream:trace sending 39 bytes +6ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:peer:util:trace receiver peerConnectionState state: +18ms connected -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/ipfs/id/1.0.0"] +10ms -libp2p:yamux:trace stream close id=3 +2ms -libp2p:yamux:trace stream close read id=3 +0ms -libp2p:yamux:trace stream source ended id=3 +0ms -libp2p:yamux:trace stream close write id=3 +0ms -libp2p:yamux:trace sending frame streamID=3 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace stream finished id=3 +1ms -libp2p:yamux:trace stream sink ended id=3 +11ms -libp2p:connection-manager:auto-dial:trace have enough connections 2/0 +21ms -libp2p:webrtc:stream:trace sending 39 bytes +14ms -libp2p:webrtc:stream:trace channel ready state: connecting +0ms -libp2p:yamux:trace muxer close reason=InternalError +0ms -libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +1ms -libp2p:yamux:trace muxer source ended +0ms -libp2p:yamux:trace stream sink ended id=4 +0ms -libp2p:yamux:trace stream close write id=4 +0ms -libp2p:yamux:trace sending frame streamID=4 type=WindowUpdate flag=FIN length=0 +0ms -libp2p:yamux:trace muxer sink ended +0ms -libp2p:yamux:trace received frame streamID=4 type=WindowUpdate flag= length=21 +1ms -libp2p:yamux:trace stream received window update id=4 +0ms -libp2p:webrtc:stream:trace sending 0 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace get await read lock +93ms -libp2p:connection-manager:auto-dial:trace have enough connections 1/0 +4ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +1ms -libp2p:yamux:trace muxer sink ended +4ms -libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=2 +0ms -libp2p:yamux:trace muxer source ended +0ms -libp2p:yamux:trace stream close id=4 +1ms -libp2p:yamux:trace stream close read id=4 +0ms -libp2p:yamux:trace stream source ended id=4 +0ms -libp2p:yamux:trace stream finished id=4 +0ms -libp2p:webrtc:stream:trace sending 39 bytes +5ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 0 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +410ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:webrtc:stream:trace sending 23 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:mss:handle:trace read "/ipfs/id/1.0.0" +1ms -libp2p:mss:handle:trace respond with "/ipfs/id/1.0.0" for "/ipfs/id/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +6ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:webrtc:stream:trace sending 19 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:peer-store:trace get await read lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +1ms -libp2p:webrtc:stream:trace sending 5 bytes +2ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 342 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +1ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +1ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +27ms -libp2p:mss:select:trace select: read "/ipfs/id/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +3ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:webrtc:stream:trace Sending flag: FIN +2ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +1ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace patch await write lock +2ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:peer-store:trace get await read lock +25ms -libp2p:connection-manager:auto-dial:trace have enough connections 1/0 +42ms -libp2p:peer-store:trace get got read lock +1ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:yamux:trace muxer sink ended +39ms -libp2p:yamux:trace muxer close reason=NormalTermination +0ms -libp2p:yamux:trace sending frame streamID=0 type=GoAway flag= length=0 +0ms -libp2p:yamux:trace muxer source ended +0ms -libp2p:mss:select:trace select: write ["/multistream/1.0.0", "/echo/1.0.0"] +31ms -libp2p:webrtc:stream:trace sending 36 bytes +29ms -libp2p:webrtc:stream:trace channel ready state: connecting +0ms -libp2p:webrtc:stream:trace sending 36 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 0 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +1ms -libp2p:mss:handle:trace read "/multistream/1.0.0" +38ms -libp2p:mss:handle:trace respond with "/multistream/1.0.0" for "/multistream/1.0.0" +0ms -libp2p:webrtc:stream:trace sending 23 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:mss:handle:trace read "/echo/1.0.0" +0ms -libp2p:mss:handle:trace respond with "/echo/1.0.0" for "/echo/1.0.0" +1ms -libp2p:peer-store:trace merge await write lock +4ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:webrtc:stream:trace sending 16 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:peer-store:trace merge release write lock +0ms -libp2p:mss:select:trace select: read "/multistream/1.0.0" +4ms -libp2p:mss:select:trace select: read "/echo/1.0.0" +0ms -libp2p:peer-store:trace merge await write lock +1ms -libp2p:peer-store:trace merge got write lock +0ms -libp2p:peer-store:trace merge release write lock +1ms -libp2p:webrtc:stream:trace sending 13 bytes +3ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +0ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace sending 13 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +0ms -libp2p:webrtc:stream:trace sending 3 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +0ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +1ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -  ✅ can dial through a relay (731ms) -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +4ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +1ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:connection:trace closing connection +0ms -libp2p:peer-store:trace get await read lock +14ms -libp2p:peer-store:trace patch await write lock +1ms -libp2p:peer-store:trace patch await write lock +1ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +1ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:peer-store:trace patch got write lock +1ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:peer-store:trace patch got write lock +1ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:webrtc:stream:trace Sending flag: STOP_SENDING +8ms -libp2p:webrtc:stream:trace sending 3 bytes +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace Sending flag: FIN +0ms -libp2p:webrtc:stream:trace sending 3 bytes +1ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:stream:trace channel ready state: open +0ms -libp2p:webrtc:connection:trace closing connection +8ms -libp2p:peer-store:trace get await read lock +2ms -libp2p:peer-store:trace patch await write lock +1ms -libp2p:peer-store:trace patch await write lock +1ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace get got read lock +0ms -libp2p:peer-store:trace get release read lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:peer-store:trace patch await write lock +0ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +1ms -libp2p:peer-store:trace patch got write lock +0ms -libp2p:peer-store:trace patch release write lock +0ms -libp2p:peer-store:trace get await read lock +12ms From 48fa903ddb671b2fef8b9e71bb13534bcacb79c2 Mon Sep 17 00:00:00 2001 From: chad Date: Mon, 3 Jul 2023 12:32:23 -0500 Subject: [PATCH 6/8] chore: remove delay + output logs --- packages/transport-webrtc/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/transport-webrtc/package.json b/packages/transport-webrtc/package.json index 0884354dce..576f21511b 100644 --- a/packages/transport-webrtc/package.json +++ b/packages/transport-webrtc/package.json @@ -36,9 +36,9 @@ "generate": "protons src/private-to-private/pb/message.proto src/pb/message.proto", "build": "aegir build", "test": "aegir test -t browser", - "test:chrome": "aegir test -g \"basics\" -t browser --cov", + "test:chrome": "aegir test -t browser --cov", "test:firefox": "aegir test -t browser -- --browser firefox", - "test:webkit": "aegir test -g \"basics\" -t browser -- --browser webkit", + "test:webkit": "aegir test -t browser -- --browser webkit", "lint": "aegir lint", "lint:fix": "aegir lint --fix", "clean": "aegir clean", From 278bbe84ef620085a2c4c50e8ffc6358d0b781df Mon Sep 17 00:00:00 2001 From: chad Date: Mon, 3 Jul 2023 13:48:43 -0500 Subject: [PATCH 7/8] test: remove unncessary logs --- packages/transport-webrtc/src/stream.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/packages/transport-webrtc/src/stream.ts b/packages/transport-webrtc/src/stream.ts index a380d3b8ec..bc997397a8 100644 --- a/packages/transport-webrtc/src/stream.ts +++ b/packages/transport-webrtc/src/stream.ts @@ -148,12 +148,6 @@ class WebRTCStream extends AbstractStream { } async _sendMessage (data: Uint8ArrayList, checkBuffer: boolean = true): Promise { - log.trace('sending %d bytes', data.length) - - log.trace('channel ready state: %s', this.channel.readyState) - - log.trace('binary type is: %s', this.channel.binaryType) - if (checkBuffer && this.channel.bufferedAmount > this.dataChannelOptions.maxBufferedAmount) { try { await pEvent(this.channel, 'bufferedamountlow', { timeout: this.dataChannelOptions.bufferedAmountLowEventTimeout }) From fdce20ea1200f69fc7990a87ba5dbc55e8d71470 Mon Sep 17 00:00:00 2001 From: chad Date: Tue, 4 Jul 2023 09:30:24 -0500 Subject: [PATCH 8/8] test: add root level webkit test --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index f354e3162b..55f202dc4c 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "test:chrome-webworker": "aegir run test:chrome-webworker", "test:firefox": "aegir run test:firefox", "test:firefox-webworker": "aegir run test:firefox-webworker", + "test:webkit": "aegir run test:webkit", "test:electron-main": "aegir run test:electron-main", "test:external": "aegir run test:external", "test:cli": "aegir run test:cli",