Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Connection stuck when sendmsg call completes withEPIPE on Darwin. #2011

Open
mstyura opened this issue Oct 10, 2024 · 13 comments
Open

Connection stuck when sendmsg call completes withEPIPE on Darwin. #2011

mstyura opened this issue Oct 10, 2024 · 13 comments

Comments

@mstyura
Copy link
Contributor

mstyura commented Oct 10, 2024

Steps to reproduce

  1. Use quinn to establish quic connection to remote server in context of iOS application via code like this (only UDP socket configuration provided):
let bind_addr = if addr.is_ipv4() {
    SocketAddr::new(IpAddr::V4(Ipv4Addr::UNSPECIFIED), 0)
} else {
    SocketAddr::new(IpAddr::V6(Ipv6Addr::UNSPECIFIED), 0)
};
let socket = tokio::net::UdpSocket::bind(bind_addr).await?;
let local_addr = socket.local_addr()?;
let runtime = quinn::TokioRuntime;
let endpoint = quinn::Endpoint::new(
    quinn_endpoint_config,
    None,
    socket.into_std()?,
    Arc::new(runtime),
)?;
  1. Minimize iOS application and lock the phone screen while previously established quic connection was alive;
  2. Wait several minutes in background (not sure about exact timing, maybe only important to app being actually suspended by iOS);
  3. Resume iOS application and try to use previous quic connection such that quinn send some packets.

Actual result

  1. quinn is unable to send any UDP packet over previously constructed UDP socket. It receives "Broken Pipe" error from sendmsg; Non of the IP packets leave the device;
  2. Idle timer on local side is reset before sendmsg is called and failed, prolonging automatic detection of socket broken;
  3. quinn connection is closed by local side once idle timeout is reached.

Expected result

  • There is some quick way to know that underlying socket is broken or whole quinn connection is not usable anymore.
  • Maybe there is an kind of event that UDP socket rotation is required, so user code can listen/wait to it and call Endpoint::rebind once problem with socket detected.
  • Maybe additional API from Connection is exposed, like explicit ping method which can return io::Error from underlying UDP socket and user code can trigger rebind or complete Endpoint/Connection.
  • Idle timer preferably should not restart when sendmsg call failed.

More details

I've tracked down EPIPE error from sendmsg inside XNU kernel.
The backtrace to likely origin from XNU source code:

It look like the socket state contains SOF_DEFUNCT or SS_CANTSENDMORE so it's practically become unusable.

According to FreeBSD documentation EPIPE is also indicator of "you can not send more data via provided socket"

See: https://man.freebsd.org/cgi/man.cgi?send(2)

[EPIPE] The socket is unable to send anymore data
(SBS_CANTSENDMORE has been set on the socket). This
typically means that the socket is not connected.

UPD: The same "broken" state of socket produces ENOTCONN error when called with recvmsg, the origin of it seems to be this check in function soreceive.

UPD 2: Seems ENOTCONN should also have some special treatment on Darwin https://github.com/libevent/libevent/pull/1031/files

@djc
Copy link
Member

djc commented Oct 10, 2024

cc @mxinden might be of interest.

@Ralith
Copy link
Collaborator

Ralith commented Oct 11, 2024

Many UDP sendmsg failures are transient (e.g. due to wifi dropping out, switching networks, or even spoofed ICMP messages), so we don't generally want to act on them too eagerly, but perhaps this case merits special treatment.

Maybe there is an kind of event that UDP socket rotation is required

While technically feasible, this seems tricky from an ergonomics standpoint. Users should be able to get reasonable behavior by default without having to know about this. Would it make sense for us to try to create a new socket at the same address whenever we get an error like that? How do we square that with user-provided sockets that might have other attached state we don't know about?

What happens to a TCP connection on iOS under the same circumstances?

Maybe additional API from Connection is exposed, like explicit ping method which can return io::Error from underlying UDP socket

I think this is likely to lead to people reimplementing the existing idle timeout mechanism, or inadvertently degrading it. We should try to handle this type of issue automatically.

Idle timer preferably should not restart when sendmsg call failed.

This is an interesting point. Even for transient errors, it's not constructive to sit around waiting for a response that we could've inferred won't happen. We'll need to tweak quinn-proto's API to support this, though. Maybe a Connection::handle_transmit_success method, or similar?

@mstyura
Copy link
Contributor Author

mstyura commented Oct 11, 2024

What happens to a TCP connection on iOS under the same circumstances?

I believe every connection is in a broken state after app was in background and they are recreated. Here is how it looks from logs provided by system frameworks:

See logs just after app was brought back to foreground (a lot of errors that previously created connection are closed)
Oct 11 09:21:09 App(Network)[2146] <Notice>: [C21 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @65.552s
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <D8C4C87A-E796-4952-A28D-76D4D7A9C23F>.<93> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <57501762-0815-442A-A132-EBDF8044EF74>.<94> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <F0898CE2-2349-4410-9DCC-AF4CB31FDFB1>.<95> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher (null)
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: TCP Conn [38:0x3009f8fa0] using empty proxy configuration
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Stream client bypassing proxies on TCP Conn [38:0x3009f8fa0]
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: TCP Conn 0x3009f8fa0 started
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <9B11AC1C-7AAA-4037-BDD3-F294CE0EE3E9>.<96> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <1E826C1B-54A3-4D20-9534-9AA29420B289>.<97> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <F68D16E2-B8F5-4287-810A-7CC56C35934D>.<98> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(Network)[2146] <Notice>: nw_path_libinfo_path_check [E703AE70-9960-4F3A-809A-97E6440B8C5A IPv4#23f6c39a:5678 tcp, legacy-socket, attribution: developer]
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <418F5919-EFAC-4F01-BB5C-4E800002BEBE>.<99> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <71AD4A1A-2481-4DF2-8893-2CF472DB354F>.<100> resuming, timeouts(5.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <5B5D8B0E-D0BD-44CB-AAFA-92B52CD42065>.<101> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <7479A2C7-75F1-49C8-84DB-109B04F91C6A>.<102> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <19A4D569-FC76-484A-BBEA-21C1E71D27C0>.<103> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <B92BBEE3-13DA-4489-A112-F7B7316632F5>.<104> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <3619EE7B-5341-450F-900C-F920820598FB>.<105> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <C1806A78-BDCC-46A8-85C6-0AA18BE235D9>.<106> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <26A3AC87-3FFD-4197-8910-74309B8C9EF8>.<107> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <DAEB5383-C13A-489A-95AA-BF27C5FCC700>.<108> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <F4C81D9D-7B11-45F6-A92D-A354A9D00520>.<109> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <6F5B70E6-6AA5-4A92-8D9A-99026B5632CC>.<110> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <B4750D91-9A80-4979-93B5-1E94B4AAEB69>.<111> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <9742E90B-A6BE-4F82-9A30-A4E7F0CDE2C6>.<112> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:09 App(CFNetwork)[2146] <Notice>: Task <16A23201-0BCF-42AE-9812-03B99CB51C8B>.<113> resuming, timeouts(10.0, 604800.0) QOS(0x15) Voucher (null)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C27 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @64.702s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C21 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @65.973s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C27 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @65.111s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C29 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @65.037s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C4 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @69.984s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C31 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @63.442s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C12 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @68.927s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C23 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @65.812s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C6 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @69.952s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C10 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @69.114s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38 59F39F8C-86C1-49DE-844A-80B1DBDEF22A Hostname#67fd676b:443 tcp, definite, attribution: developer, context: Default Network Context (private), proc: 3FA6C97B-25A7-3588-875D-DA6499E974D6, no proxy, prohibit fallback, allow socket access] start
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38 Hostname#67fd676b:443 initial parent-flow ((null))] event: path:start @0.000s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38 Hostname#67fd676b:443 waiting parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.000s, uuid: FCFF0915-C9D5-44A5-9CD0-033EE7FA7BD4
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38 Hostname#67fd676b:443 in_progress parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_connect @0.000s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C38] reporting state preparing
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38 Hostname#67fd676b:443 in_progress parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_child @0.000s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38.1 Hostname#67fd676b:443 initial path ((null))] event: path:start @0.000s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38.1 Hostname#67fd676b:443 waiting path (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.000s, uuid: FCFF0915-C9D5-44A5-9CD0-033EE7FA7BD4
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38.1 Hostname#67fd676b:443 in_progress resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: resolver:start_dns @0.000s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C3] event: client:connection_reused @70.025s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <1E826C1B-54A3-4D20-9534-9AA29420B289>.<97> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <5B5D8B0E-D0BD-44CB-AAFA-92B52CD42065>.<101> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F4C81D9D-7B11-45F6-A92D-A354A9D00520>.<109> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <B4750D91-9A80-4979-93B5-1E94B4AAEB69>.<111> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <9742E90B-A6BE-4F82-9A30-A4E7F0CDE2C6>.<112> now using Connection 3
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C2] event: client:connection_reused @70.046s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <57501762-0815-442A-A132-EBDF8044EF74>.<94> now using Connection 2
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <D8C4C87A-E796-4952-A28D-76D4D7A9C23F>.<93> now using Connection 2
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F0898CE2-2349-4410-9DCC-AF4CB31FDFB1>.<95> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <9B11AC1C-7AAA-4037-BDD3-F294CE0EE3E9>.<96> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F68D16E2-B8F5-4287-810A-7CC56C35934D>.<98> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <418F5919-EFAC-4F01-BB5C-4E800002BEBE>.<99> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <71AD4A1A-2481-4DF2-8893-2CF472DB354F>.<100> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <7479A2C7-75F1-49C8-84DB-109B04F91C6A>.<102> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <19A4D569-FC76-484A-BBEA-21C1E71D27C0>.<103> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <B92BBEE3-13DA-4489-A112-F7B7316632F5>.<104> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <3619EE7B-5341-450F-900C-F920820598FB>.<105> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <C1806A78-BDCC-46A8-85C6-0AA18BE235D9>.<106> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <26A3AC87-3FFD-4197-8910-74309B8C9EF8>.<107> now using Connection 3
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_path_libinfo_path_check [6EF3D71E-0212-4343-A24A-4E9028C69F7E IPv4#a5e30d08:5678 tcp, legacy-socket, attribution: developer]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <32912C69-9E59-42EE-9395-31CCF53EA57F>.<114> resuming, timeouts(5.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <DAEB5383-C13A-489A-95AA-BF27C5FCC700>.<108> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <6F5B70E6-6AA5-4A92-8D9A-99026B5632CC>.<110> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <16A23201-0BCF-42AE-9812-03B99CB51C8B>.<113> now using Connection 3
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <32912C69-9E59-42EE-9395-31CCF53EA57F>.<114> now using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_handle_error_inner [C2.1.1.1:2] [-fcd6a2de1d7d0527] received error: Socket is not connected (state quic_conn_state_connected, nw path 0)
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_migration_handle_error [C2.1.1.1:2] [-fcd6a2de1d7d0527] path 0x12a9cd2f0 on <private> received an error, closing it
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C2] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C2] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C2] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C2] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C6:1][0x129f96bd0] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C6 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C6 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C2.1.1.1 IPv4#a3e734bb:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_handle_error_inner [C9.1.1.1:2] [-f00ceac27762b42b] received error: Socket is not connected (state quic_conn_state_connected, nw path 0)
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_migration_handle_error [C9.1.1.1:2] [-f00ceac27762b42b] path 0x129f836f0 on <private> received an error, closing it
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C9] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C9] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C9] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C10:1][0x129ffa470] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C10 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C10 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_handle_error_inner [C3.1.1.1:2] [-e0b003ee82b31aa4] received error: Socket is not connected (state quic_conn_state_connected, nw path 0)
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_migration_handle_error [C3.1.1.1:2] [-e0b003ee82b31aa4] path 0x12ad20130 on <private> received an error, closing it
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C4:1][0x129f7b410] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C4 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <84C88EA7-45DD-48C4-B764-DDC389C6AC91>.<116> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <62F14904-9738-4FA8-B264-6EF71870F846>.<115> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F3FA2EBF-A122-413D-8139-EBB851987AF7>.<117> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F6C572ED-DA77-438F-BF6D-87E7AD1AC403>.<118> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C3] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C4 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C3.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_handle_error_inner [C11.1.1.1:2] [-e38fe21eaa034862] received error: Socket is not connected (state quic_conn_state_connected, nw path 0)
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_migration_handle_error [C11.1.1.1:2] [-e38fe21eaa034862] path 0x12a9ff2e0 on <private> received an error, closing it
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C11] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C12:1][0x12a9a2000] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C12 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C11] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C12 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_handle_error_inner [C22.1.1.1:2] [-f8f52feac896ce1b] received error: Socket is not connected (state quic_conn_state_connected, nw path 0)
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_migration_handle_error [C22.1.1.1:2] [-f8f52feac896ce1b] path 0x1654347f0 on <private> received an error, closing it
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C22.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C22.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C22.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C22.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C22.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C22] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C23:1][0x12ad2dfd0] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C23 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C22.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C22.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C22] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C22.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C22.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C22.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C22.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C22.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C23 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C22.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C22.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C13.1.1.1:2][0x129f26960] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_handle_error_inner [C26.1.1.1:2] [-e7b612a8756a9328] received error: Socket is not connected (state quic_conn_state_connected, nw path 0)
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_migration_handle_error [C26.1.1.1:2] [-e7b612a8756a9328] path 0x1654b3700 on <private> received an error, closing it
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C27:1][0x139cbcc90] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C27 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C26.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C26.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C26.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C26.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C26] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C26.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C26] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C26.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C26.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C27 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C26.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C26.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C26.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C26.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C26.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C26.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C26.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_handle_error_inner [C28.1.1.1:2] [-f8c3e39dcf26d46b] received error: Socket is not connected (state quic_conn_state_connected, nw path 0)
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_migration_handle_error [C28.1.1.1:2] [-f8c3e39dcf26d46b] path 0x1654b7ba0 on <private> received an error, closing it
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C28] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C29:1][0x1654b9a10] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C29 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C28] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C28] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C29 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C7.1.1.1:2][0x129fc6cc0] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C14.1.1.1:2][0x153226ac0] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C5.1.1.1:2][0x12ae1a0a0] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_handle_error_inner [C20.1.1.1:2] [-ea41d976f8c1a0a0] received error: Socket is not connected (state quic_conn_state_connected, nw path 0)
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_migration_handle_error [C20.1.1.1:2] [-ea41d976f8c1a0a0] path 0x139c8c1a0 on <private> received an error, closing it
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C20] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C20] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C21:1][0x139c8a2e0] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C21 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C20] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C21 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_handle_error_inner [C30.1.1.1:2] [-e15e98672eadf0c5] received error: Socket is not connected (state quic_conn_state_connected, nw path 0)
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_migration_handle_error [C30.1.1.1:2] [-e15e98672eadf0c5] path 0x12a92ebd0 on <private> received an error, closing it
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C30.1.1.1 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C30.1.1.1 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C30.1.1.1 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C30] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C31:1][0x1532c5d90] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C31 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C30.1.1.1 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C30.1.1.1 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C30.1.1.1 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C30.1.1.1 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C30] Receive failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C30.1.1.1 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C30.1.1.1 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C30.1.1.1 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C31 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C30.1.1.1 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C30.1.1.1 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C30.1.1.1 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C30.1.1.1 IPv4#c109126e:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C17.1.1.1:2][0x139c4d8f0] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <84C88EA7-45DD-48C4-B764-DDC389C6AC91>.<116> now using Connection 3
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_flow_service_writes Failing write request <nw_write_request> [57: Socket is not connected]
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_write_request_report [C3] Send failed with error "Socket is not connected"
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <62F14904-9738-4FA8-B264-6EF71870F846>.<115> now using Connection 3
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_flow_service_writes Failing write request <nw_write_request> [57: Socket is not connected]
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_write_request_report [C3] Send failed with error "Socket is not connected"
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F3FA2EBF-A122-413D-8139-EBB851987AF7>.<117> now using Connection 3
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_flow_service_writes Failing write request <nw_write_request> [57: Socket is not connected]
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_write_request_report [C3] Send failed with error "Socket is not connected"
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F6C572ED-DA77-438F-BF6D-87E7AD1AC403>.<118> now using Connection 3
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_flow_service_writes Failing write request <nw_write_request> [57: Socket is not connected]
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_write_request_report [C3] Send failed with error "Socket is not connected"
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C7.1.1.1:2][0x129fc6cc0] Lower protocol stack error post TLS handshake. [53: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C7 IPv4#442d88ca:443 ready parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C7] Receive failed with error "Software caused connection abort"
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C17.1.1.1:2][0x139c4d8f0] Lower protocol stack error post TLS handshake. [53: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C17 IPv4#c065efd7:443 ready parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C17] Receive failed with error "Software caused connection abort"
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C14.1.1.1:2][0x153226ac0] Lower protocol stack error post TLS handshake. [53: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C14 IPv6#3c5e8d00.443 ready parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C14] Receive failed with error "Software caused connection abort"
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C5.1.1.1:2][0x12ae1a0a0] Lower protocol stack error post TLS handshake. [53: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C5 IPv4#33889da0:443 ready parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C5] Receive failed with error "Software caused connection abort"
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C13.1.1.1:2][0x129f26960] Lower protocol stack error post TLS handshake. [53: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C13 IPv6#4b5823dd.443 ready parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_read_request_report [C13] Receive failed with error "Software caused connection abort"
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x12ab2df28 ID=264 Task <5B5D8B0E-D0BD-44CB-AAFA-92B52CD42065>.<101> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x11e64bf88 ID=272 Task <B4750D91-9A80-4979-93B5-1E94B4AAEB69>.<111> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x12ad2d728 ID=276 Task <9742E90B-A6BE-4F82-9A30-A4E7F0CDE2C6>.<112> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x129f3ced8 ID=284 Task <9B11AC1C-7AAA-4037-BDD3-F294CE0EE3E9>.<96> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x139c85ab8 ID=292 Task <418F5919-EFAC-4F01-BB5C-4E800002BEBE>.<99> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x16591c1b8 ID=296 Task <71AD4A1A-2481-4DF2-8893-2CF472DB354F>.<100> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x16543e618 ID=300 Task <7479A2C7-75F1-49C8-84DB-109B04F91C6A>.<102> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x165481ae8 ID=304 Task <19A4D569-FC76-484A-BBEA-21C1E71D27C0>.<103> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x1654ca1c8 ID=308 Task <B92BBEE3-13DA-4489-A112-F7B7316632F5>.<104> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x165470d38 ID=312 Task <3619EE7B-5341-450F-900C-F920820598FB>.<105> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x11e653268 ID=316 Task <C1806A78-BDCC-46A8-85C6-0AA18BE235D9>.<106> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x165942cd8 ID=320 Task <26A3AC87-3FFD-4197-8910-74309B8C9EF8>.<107> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x167f775b8 ID=324 Task <DAEB5383-C13A-489A-95AA-BF27C5FCC700>.<108> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x129fcb068 ID=328 Task <6F5B70E6-6AA5-4A92-8D9A-99026B5632CC>.<110> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x165998d58 ID=336 Task <32912C69-9E59-42EE-9395-31CCF53EA57F>.<114> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <1E826C1B-54A3-4D20-9534-9AA29420B289>.<97> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <3619EE7B-5341-450F-900C-F920820598FB>.<105> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <B92BBEE3-13DA-4489-A112-F7B7316632F5>.<104> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[Y]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <71AD4A1A-2481-4DF2-8893-2CF472DB354F>.<100> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F0898CE2-2349-4410-9DCC-AF4CB31FDFB1>.<95> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[Y]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <5B5D8B0E-D0BD-44CB-AAFA-92B52CD42065>.<101> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <7479A2C7-75F1-49C8-84DB-109B04F91C6A>.<102> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F4C81D9D-7B11-45F6-A92D-A354A9D00520>.<109> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <B4750D91-9A80-4979-93B5-1E94B4AAEB69>.<111> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <9742E90B-A6BE-4F82-9A30-A4E7F0CDE2C6>.<112> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <DAEB5383-C13A-489A-95AA-BF27C5FCC700>.<108> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <32912C69-9E59-42EE-9395-31CCF53EA57F>.<114> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <C1806A78-BDCC-46A8-85C6-0AA18BE235D9>.<106> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <16A23201-0BCF-42AE-9812-03B99CB51C8B>.<113> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <9B11AC1C-7AAA-4037-BDD3-F294CE0EE3E9>.<96> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <19A4D569-FC76-484A-BBEA-21C1E71D27C0>.<103> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F68D16E2-B8F5-4287-810A-7CC56C35934D>.<98> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <418F5919-EFAC-4F01-BB5C-4E800002BEBE>.<99> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[Y]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <26A3AC87-3FFD-4197-8910-74309B8C9EF8>.<107> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <6F5B70E6-6AA5-4A92-8D9A-99026B5632CC>.<110> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Connection 3: write error 1:57
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x139ceb0c8 ID=340 Task <84C88EA7-45DD-48C4-B764-DDC389C6AC91>.<116> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Connection 3: write error 1:57
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x12ab2e0c8 ID=344 Task <62F14904-9738-4FA8-B264-6EF71870F846>.<115> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Connection 3: write error 1:57
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x12ae46d68 ID=348 Task <F3FA2EBF-A122-413D-8139-EBB851987AF7>.<117> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Connection 3: write error 1:57
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x12ae3dc78 ID=352 Task <F6C572ED-DA77-438F-BF6D-87E7AD1AC403>.<118> sent request, body N 0
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_flow_service_writes Failing write request <nw_write_request> [57: Socket is not connected]
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_write_request_report [C3] Send failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_flow_service_writes Failing write request <nw_write_request> [57: Socket is not connected]
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_write_request_report [C3] Send failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_flow_service_writes Failing write request <nw_write_request> [57: Socket is not connected]
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_write_request_report [C3] Send failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_flow_service_writes Failing write request <nw_write_request> [57: Socket is not connected]
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_write_request_report [C3] Send failed with error "Socket is not connected"
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_flow_service_writes Failing write request <nw_write_request> [57: Socket is not connected]
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_write_request_report [C3] Send failed with error "Socket is not connected"
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Connection 3: write error 1:57
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Connection 3: write error 1:57
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Connection 3: write error 1:57
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Connection 3: write error 1:57
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Connection 3: write error 1:57
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x11e63ef78 ID=8 Task <57501762-0815-442A-A132-EBDF8044EF74>.<94> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x165472408 ID=12 Task <D8C4C87A-E796-4952-A28D-76D4D7A9C23F>.<93> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 2: final read 1:57, complete[Y], final[Y]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 2: final read 1:57, complete[Y], final[Y]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 2: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <D8C4C87A-E796-4952-A28D-76D4D7A9C23F>.<93> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 2: final read 1:57, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <57501762-0815-442A-A132-EBDF8044EF74>.<94> can retry(N) with reason(2) for error [1:57]
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C2.1.1.1:2] [-fcd6a2de1d7d0527] [S8] sending RESET_STREAM
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C2.1.1.1:2] [-fcd6a2de1d7d0527] [S12] sending RESET_STREAM
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_frame_write_CONNECTION_CLOSE [C2.1.1.1:2] [-fcd6a2de1d7d0527] sending CONNECTION_CLOSE, code NO_ERROR, type UNKNOWN, reason <null>
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C6 1E7F28FA-BF76-4C85-8804-2758E57A6516 IPv4#a3e734bb:443 quic-connection, url hash: 8df2f83a, tls, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C6 1E7F28FA-BF76-4C85-8804-2758E57A6516 IPv4#a3e734bb:443 quic-connection, url hash: 8df2f83a, tls, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C6 IPv4#a3e734bb:443 cancelled channel-flow ((null))] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C6] reporting state cancelled
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C6:1][0x129f96bd0] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C6:1][0x129f96bd0] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_log_summary [C2.1.1.1:2] [-fcd6a2de1d7d0527] 
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C2.1.1.1:2] [-fcd6a2de1d7d0527] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C2.1.1.1:2] [-fcd6a2de1d7d0527] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C2.1.1.1:2] [-fcd6a2de1d7d0527] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C2.1.1.1:2] [-fcd6a2de1d7d0527] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C2.1.1.1:2] [-fcd6a2de1d7d0527] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C2.1.1.1:2] [-fcd6a2de1d7d0527] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C2.1.1.1:2] [-fcd6a2de1d7d0527] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C2.1.1.1:2] [-fcd6a2de1d7d0527] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C2.1.1.1:2] [-fcd6a2de1d7d0527] unable to request outbound data
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C2.1.1.1 IPv4#a3e734bb:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.125s, error Socket is not connected
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C2.1.1 Hostname#ed47d18c:443 failed resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.125s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C2.1 Hostname#ed47d18c:443 failed transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.126s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C2 IPv4#a3e734bb:443 failed parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.126s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C2] reporting state failed error Socket is not connected
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C2.1.1.1 IPv4#a3e734bb:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.127s, error Socket is not connected
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C2.1.1 Hostname#ed47d18c:443 failed resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.127s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C2.1 Hostname#ed47d18c:443 failed transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.127s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C2 IPv4#a3e734bb:443 failed parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.127s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 9: final read 1:57, complete[Y], final[Y]
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_frame_write_CONNECTION_CLOSE [C9.1.1.1:2] [-f00ceac27762b42b] sending APPLICATION_CLOSE, code 0x100, reason <null>
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C10 BD87113D-3BDA-4A97-BA94-06EF570CB4ED IPv4#436126a1:443 quic-connection, url hash: 5a0323c7, tls, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C10 BD87113D-3BDA-4A97-BA94-06EF570CB4ED IPv4#436126a1:443 quic-connection, url hash: 5a0323c7, tls, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C10 IPv4#436126a1:443 cancelled channel-flow ((null))] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C10] reporting state cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C10:1][0x129ffa470] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <EABC0DCE-E361-4CF7-BEAF-6EDD05B8F5B8>.<2> resuming, timeouts(60.0, 604800.0) QOS(0x19) Voucher (null)
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C9.1.1.1 IPv4#436126a1:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C10:1][0x129ffa470] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_log_summary [C9.1.1.1:2] [-f00ceac27762b42b] 
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 9: cleaning up
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C9 D1DB11DD-0D50-45A6-B6EF-19715396BA96 Hostname#486daad9:443 quic-connection, url hash: 5a0323c7, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C9 D1DB11DD-0D50-45A6-B6EF-19715396BA96 Hostname#486daad9:443 quic-connection, url hash: 5a0323c7, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C9.1.1.1:2] [-f00ceac27762b42b] unable to request outbound data
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <030662B8-85DB-44A1-8A43-4ED53CE71423>.<119> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C9] reporting state cancelled
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <1E826C1B-54A3-4D20-9534-9AA29420B289>.<97> HTTP load failed, 58/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <3619EE7B-5341-450F-900C-F920820598FB>.<105> HTTP load failed, 57/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <B92BBEE3-13DA-4489-A112-F7B7316632F5>.<104> HTTP load failed, 59/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <71AD4A1A-2481-4DF2-8893-2CF472DB354F>.<100> HTTP load failed, 102/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <F0898CE2-2349-4410-9DCC-AF4CB31FDFB1>.<95> HTTP load failed, 19/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <5B5D8B0E-D0BD-44CB-AAFA-92B52CD42065>.<101> HTTP load failed, 59/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <7479A2C7-75F1-49C8-84DB-109B04F91C6A>.<102> HTTP load failed, 56/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <F4C81D9D-7B11-45F6-A92D-A354A9D00520>.<109> HTTP load failed, 23/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <B4750D91-9A80-4979-93B5-1E94B4AAEB69>.<111> HTTP load failed, 66/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <9742E90B-A6BE-4F82-9A30-A4E7F0CDE2C6>.<112> HTTP load failed, 66/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <DAEB5383-C13A-489A-95AA-BF27C5FCC700>.<108> HTTP load failed, 58/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <32912C69-9E59-42EE-9395-31CCF53EA57F>.<114> HTTP load failed, 69/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <C1806A78-BDCC-46A8-85C6-0AA18BE235D9>.<106> HTTP load failed, 63/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <16A23201-0BCF-42AE-9812-03B99CB51C8B>.<113> HTTP load failed, 61/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <9B11AC1C-7AAA-4037-BDD3-F294CE0EE3E9>.<96> HTTP load failed, 42/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <19A4D569-FC76-484A-BBEA-21C1E71D27C0>.<103> HTTP load failed, 56/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <F68D16E2-B8F5-4287-810A-7CC56C35934D>.<98> HTTP load failed, 56/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <418F5919-EFAC-4F01-BB5C-4E800002BEBE>.<99> HTTP load failed, 54/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <26A3AC87-3FFD-4197-8910-74309B8C9EF8>.<107> HTTP load failed, 70/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <6F5B70E6-6AA5-4A92-8D9A-99026B5632CC>.<110> HTTP load failed, 64/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <D8C4C87A-E796-4952-A28D-76D4D7A9C23F>.<93> HTTP load failed, 145/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <57501762-0815-442A-A132-EBDF8044EF74>.<94> HTTP load failed, 143/0 bytes (error code: -1005 [1:57])
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C22] event: client:connection_reused @66.016s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <EABC0DCE-E361-4CF7-BEAF-6EDD05B8F5B8>.<2> now using Connection 22
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <1E826C1B-54A3-4D20-9534-9AA29420B289>.<97> summary for task failure {transaction_duration_ms=544, response_status=-1, connection=3, reused=1, reused_after_ms=35286, request_start_ms=394, request_duration_ms=0, response_start_ms=0, response_duration_ms=0, request_bytes=58, response_bytes=0, cache_hit=false}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <1E826C1B-54A3-4D20-9534-9AA29420B289>.<97> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x303550b40 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <3619EE7B-5341-450F-900C-F920820598FB>.<105> summary for task failure {transaction_duration_ms=536, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=407, request_duration_ms=55, response_start_ms=0, response_duration_ms=0, request_bytes=57, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <3619EE7B-5341-450F-900C-F920820598FB>.<105> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x303702ac0 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <B92BBEE3-13DA-4489-A112-F7B7316632F5>.<104> summary for task failure {transaction_duration_ms=538, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=408, request_duration_ms=56, response_start_ms=0, response_duration_ms=0, request_bytes=59, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <B92BBEE3-13DA-4489-A112-F7B7316632F5>.<104> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x3037028e0 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <71AD4A1A-2481-4DF2-8893-2CF472DB354F>.<100> summary for task failure {transaction_duration_ms=545, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=408, request_duration_ms=62, response_start_ms=0, response_duration_ms=0, request_bytes=102, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <71AD4A1A-2481-4DF2-8893-2CF472DB354F>.<100> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x3034d8cf0 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F0898CE2-2349-4410-9DCC-AF4CB31FDFB1>.<95> summary for task failure {transaction_duration_ms=551, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=411, request_duration_ms=0, response_start_ms=0, response_duration_ms=0, request_bytes=19, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <F0898CE2-2349-4410-9DCC-AF4CB31FDFB1>.<95> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x3034e0b40 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <5B5D8B0E-D0BD-44CB-AAFA-92B52CD42065>.<101> summary for task failure {transaction_duration_ms=543, response_status=-1, connection=3, reused=1, reused_after_ms=0, request_start_ms=391, request_duration_ms=76, response_start_ms=0, response_duration_ms=0, request_bytes=59, response_bytes=0, cache_hit=false}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <5B5D8B0E-D0BD-44CB-AAFA-92B52CD42065>.<101> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x30370ee20 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <7479A2C7-75F1-49C8-84DB-109B04F91C6A>.<102> summary for task failure {transaction_duration_ms=543, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=407, request_duration_ms=60, response_start_ms=0, response_duration_ms=0, request_bytes=56, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <7479A2C7-75F1-49C8-84DB-109B04F91C6A>.<102> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x303716a00 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F4C81D9D-7B11-45F6-A92D-A354A9D00520>.<109> summary for task failure {transaction_duration_ms=535, response_status=-1, connection=3, reused=1, reused_after_ms=0, request_start_ms=385, request_duration_ms=0, response_start_ms=0, response_duration_ms=0, request_bytes=23, response_bytes=0, cache_hit=false}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <F4C81D9D-7B11-45F6-A92D-A354A9D00520>.<109> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x3037173c0 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <B4750D91-9A80-4979-93B5-1E94B4AAEB69>.<111> summary for task failure {transaction_duration_ms=534, response_status=-1, connection=3, reused=1, reused_after_ms=0, request_start_ms=386, request_duration_ms=72, response_start_ms=0, response_duration_ms=0, request_bytes=66, response_bytes=0, cache_hit=false}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <B4750D91-9A80-4979-93B5-1E94B4AAEB69>.<111> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x303716700 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <9742E90B-A6BE-4F82-9A30-A4E7F0CDE2C6>.<112> summary for task failure {transaction_duration_ms=534, response_status=-1, connection=3, reused=1, reused_after_ms=0, request_start_ms=387, request_duration_ms=70, response_start_ms=0, response_duration_ms=0, request_bytes=66, response_bytes=0, cache_hit=false}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <9742E90B-A6BE-4F82-9A30-A4E7F0CDE2C6>.<112> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x3037136c0 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <DAEB5383-C13A-489A-95AA-BF27C5FCC700>.<108> summary for task failure {transaction_duration_ms=536, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=413, request_duration_ms=47, response_start_ms=0, response_duration_ms=0, request_bytes=58, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <DAEB5383-C13A-489A-95AA-BF27C5FCC700>.<108> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x303713120 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <32912C69-9E59-42EE-9395-31CCF53EA57F>.<114> summary for task failure {transaction_duration_ms=123, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=2, request_duration_ms=45, response_start_ms=0, response_duration_ms=0, request_bytes=69, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <32912C69-9E59-42EE-9395-31CCF53EA57F>.<114> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x3037124c0 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <C1806A78-BDCC-46A8-85C6-0AA18BE235D9>.<106> summary for task failure {transaction_duration_ms=539, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=408, request_duration_ms=53, response_start_ms=0, response_duration_ms=0, request_bytes=63, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <C1806A78-BDCC-46A8-85C6-0AA18BE235D9>.<106> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x3035c83c0 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <16A23201-0BCF-42AE-9812-03B99CB51C8B>.<113> summary for task failure {transaction_duration_ms=423, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=298, request_duration_ms=0, response_start_ms=0, response_duration_ms=0, request_bytes=61, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <16A23201-0BCF-42AE-9812-03B99CB51C8B>.<113> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x3035c9c80 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <9B11AC1C-7AAA-4037-BDD3-F294CE0EE3E9>.<96> summary for task failure {transaction_duration_ms=556, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=409, request_duration_ms=64, response_start_ms=0, response_duration_ms=0, request_bytes=42, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <9B11AC1C-7AAA-4037-BDD3-F294CE0EE3E9>.<96> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x30371ed60 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <19A4D569-FC76-484A-BBEA-21C1E71D27C0>.<103> summary for task failure {transaction_duration_ms=548, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=407, request_duration_ms=59, response_start_ms=0, response_duration_ms=0, request_bytes=56, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <19A4D569-FC76-484A-BBEA-21C1E71D27C0>.<103> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x303678bd0 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F68D16E2-B8F5-4287-810A-7CC56C35934D>.<98> summary for task failure {transaction_duration_ms=555, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=408, request_duration_ms=0, response_start_ms=0, response_duration_ms=0, request_bytes=56, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <F68D16E2-B8F5-4287-810A-7CC56C35934D>.<98> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x30367f1b0 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <418F5919-EFAC-4F01-BB5C-4E800002BEBE>.<99> summary for task failure {transaction_duration_ms=556, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=409, request_duration_ms=63, response_start_ms=0, response_duration_ms=0, request_bytes=54, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <418F5919-EFAC-4F01-BB5C-4E800002BEBE>.<99> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x30371a8b0 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <26A3AC87-3FFD-4197-8910-74309B8C9EF8>.<107> summary for task failure {transaction_duration_ms=546, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=412, request_duration_ms=49, response_start_ms=0, response_duration_ms=0, request_bytes=70, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <26A3AC87-3FFD-4197-8910-74309B8C9EF8>.<107> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x3035c9d70 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <6F5B70E6-6AA5-4A92-8D9A-99026B5632CC>.<110> summary for task failure {transaction_duration_ms=545, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=414, request_duration_ms=46, response_start_ms=0, response_duration_ms=0, request_bytes=64, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <6F5B70E6-6AA5-4A92-8D9A-99026B5632CC>.<110> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x3035caac0 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <D8C4C87A-E796-4952-A28D-76D4D7A9C23F>.<93> summary for task failure {transaction_duration_ms=569, response_status=200, connection=2, reused=1, reused_after_ms=0, request_start_ms=415, request_duration_ms=73, response_start_ms=0, response_duration_ms=0, request_bytes=145, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <1231B864-5E0D-4FA6-BCDD-E1C71E7DC364>.<121> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <3797F428-9BE8-473E-BC52-5EDB79331895>.<120> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <D8C4C87A-E796-4952-A28D-76D4D7A9C23F>.<93> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x3034e3c60 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <57501762-0815-442A-A132-EBDF8044EF74>.<94> summary for task failure {transaction_duration_ms=570, response_status=200, connection=2, reused=1, reused_after_ms=69768, request_start_ms=414, request_duration_ms=74, response_start_ms=0, response_duration_ms=0, request_bytes=143, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <57501762-0815-442A-A132-EBDF8044EF74>.<94> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=57, NSUnderlyingError=0x3034ef090 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=57, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S260] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <1E826C1B-54A3-4D20-9534-9AA29420B289>.<97> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S312] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <3619EE7B-5341-450F-900C-F920820598FB>.<105> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S308] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <B92BBEE3-13DA-4489-A112-F7B7316632F5>.<104> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S296] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <71AD4A1A-2481-4DF2-8893-2CF472DB354F>.<100> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S280] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F0898CE2-2349-4410-9DCC-AF4CB31FDFB1>.<95> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S264] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <5B5D8B0E-D0BD-44CB-AAFA-92B52CD42065>.<101> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S300] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <7479A2C7-75F1-49C8-84DB-109B04F91C6A>.<102> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S268] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F4C81D9D-7B11-45F6-A92D-A354A9D00520>.<109> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S272] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <B4750D91-9A80-4979-93B5-1E94B4AAEB69>.<111> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S276] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <9742E90B-A6BE-4F82-9A30-A4E7F0CDE2C6>.<112> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S324] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <DAEB5383-C13A-489A-95AA-BF27C5FCC700>.<108> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S336] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <32912C69-9E59-42EE-9395-31CCF53EA57F>.<114> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S316] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <C1806A78-BDCC-46A8-85C6-0AA18BE235D9>.<106> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S332] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <16A23201-0BCF-42AE-9812-03B99CB51C8B>.<113> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S284] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <9B11AC1C-7AAA-4037-BDD3-F294CE0EE3E9>.<96> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S304] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <19A4D569-FC76-484A-BBEA-21C1E71D27C0>.<103> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S288] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F68D16E2-B8F5-4287-810A-7CC56C35934D>.<98> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S292] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <418F5919-EFAC-4F01-BB5C-4E800002BEBE>.<99> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S320] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <26A3AC87-3FFD-4197-8910-74309B8C9EF8>.<107> done using Connection 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S328] sending RESET_STREAM
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <6F5B70E6-6AA5-4A92-8D9A-99026B5632CC>.<110> done using Connection 3
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_endpoint_handler_unregister_context [C2.1.1.1 IPv4#a3e734bb:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Cannot unregister after flow table is released
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <D8C4C87A-E796-4952-A28D-76D4D7A9C23F>.<93> done using Connection 2
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_endpoint_handler_unregister_context [C2.1.1.1 IPv4#a3e734bb:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Cannot unregister after flow table is released
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 2: cleaning up
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C2 8BEC3874-669E-4198-A1CE-CD2457DC4210 Hostname#ed47d18c:443 quic-connection, url hash: 8df2f83a, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_endpoint_flow_fillout_data_transfer_snapshot copy_info() returned NULL
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C2 8BEC3874-669E-4198-A1CE-CD2457DC4210 Hostname#ed47d18c:443 quic-connection, url hash: 8df2f83a, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C2] reporting state cancelled error Socket is not connected
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <57501762-0815-442A-A132-EBDF8044EF74>.<94> done using Connection 2
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C4 IPv4#93eca9fc:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.195s, error Socket is not connected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C4] reporting state failed error Socket is not connected
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S340] sending RESET_STREAM
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S348] sending RESET_STREAM
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S344] sending RESET_STREAM
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C3.1.1.1:2] [-e0b003ee82b31aa4] [S352] sending RESET_STREAM
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_frame_write_CONNECTION_CLOSE [C3.1.1.1:2] [-e0b003ee82b31aa4] sending CONNECTION_CLOSE, code NO_ERROR, type UNKNOWN, reason <null>
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C4 063E59A2-1C6F-4570-9582-C5D1880DFAE0 IPv4#93eca9fc:443 quic-connection, url hash: c6ef4f7f, tls, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C4 063E59A2-1C6F-4570-9582-C5D1880DFAE0 IPv4#93eca9fc:443 quic-connection, url hash: c6ef4f7f, tls, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C4] reporting state cancelled error Socket is not connected
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_log_summary [C3.1.1.1:2] [-e0b003ee82b31aa4] 
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C3.1.1.1:2] [-e0b003ee82b31aa4] unable to request outbound data
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C3.1.1.1 IPv4#93eca9fc:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.311s, error Socket is not connected
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C3.1.1 Hostname#ec8c3e54:443 failed resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.311s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C3.1 Hostname#ec8c3e54:443 failed transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.311s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C3 IPv4#93eca9fc:443 failed parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.311s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C3] reporting state failed error Socket is not connected
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C3.1.1.1 IPv4#93eca9fc:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.312s, error Socket is not connected
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C3.1.1 Hostname#ec8c3e54:443 failed resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.312s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C3.1 Hostname#ec8c3e54:443 failed transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.312s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C3 IPv4#93eca9fc:443 failed parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @70.312s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 11: final read 1:57, complete[Y], final[Y]
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_frame_write_CONNECTION_CLOSE [C11.1.1.1:2] [-e38fe21eaa034862] sending APPLICATION_CLOSE, code 0x100, reason <null>
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C12 5EB6D9AC-B0B6-4FE2-9421-32BCCE92845A IPv6#fae6705f.443 quic-connection, url hash: 3d4776e6, tls, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C12 5EB6D9AC-B0B6-4FE2-9421-32BCCE92845A IPv6#fae6705f.443 quic-connection, url hash: 3d4776e6, tls, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C12 IPv6#fae6705f.443 cancelled channel-flow ((null))] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C12] reporting state cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C12:1][0x12a9a2000] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C12:1][0x12a9a2000] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C11.1.1.1 IPv6#fae6705f.443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_log_summary [C11.1.1.1:2] [-e38fe21eaa034862] 
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 11: cleaning up
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C11 11579638-4B5F-4690-8979-D211FC7078A2 Hostname#4cc324a5:443 quic-connection, url hash: 3d4776e6, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C11 11579638-4B5F-4690-8979-D211FC7078A2 Hostname#4cc324a5:443 quic-connection, url hash: 3d4776e6, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C11.1.1.1:2] [-e38fe21eaa034862] unable to request outbound data
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C11] reporting state cancelled
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 11: done
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_send_reset_stream [C22.1.1.1:2] [-f8f52feac896ce1b] [S4] sending RESET_STREAM
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_frame_write_CONNECTION_CLOSE [C22.1.1.1:2] [-f8f52feac896ce1b] sending CONNECTION_CLOSE, code NO_ERROR, type UNKNOWN, reason <null>
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C23 CC256907-AA92-466B-9538-503A1FB15F3A IPv4#be1fb399:443 quic-connection, url hash: a3412719, tls, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C23 CC256907-AA92-466B-9538-503A1FB15F3A IPv4#be1fb399:443 quic-connection, url hash: a3412719, tls, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C23 IPv4#be1fb399:443 cancelled channel-flow ((null))] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C23] reporting state cancelled
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C23:1][0x12ad2dfd0] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C23:1][0x12ad2dfd0] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_log_summary [C22.1.1.1:2] [-f8f52feac896ce1b] 
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C22.1.1.1:2] [-f8f52feac896ce1b] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C22.1.1.1:2] [-f8f52feac896ce1b] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C22.1.1.1:2] [-f8f52feac896ce1b] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C22.1.1.1:2] [-f8f52feac896ce1b] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C22.1.1.1:2] [-f8f52feac896ce1b] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C22.1.1.1:2] [-f8f52feac896ce1b] unable to request outbound data
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C22.1.1.1 IPv4#be1fb399:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @66.193s, error Socket is not connected
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C22.1.1 Hostname#48b671b3:443 failed resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @66.193s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C22.1 Hostname#48b671b3:443 failed transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @66.193s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C22 IPv4#be1fb399:443 failed parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @66.193s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C22] reporting state failed error Socket is not connected
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 22: final read 1:57, complete[Y], final[Y]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 22: final read 1:57, complete[Y], final[Y]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 22: final read 1:89, complete[N], final[N]
Oct 11 09:21:10 App(Network)[2146] <Fault>: nw_protocol_instance_async_if_needed called with null instance
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <EABC0DCE-E361-4CF7-BEAF-6EDD05B8F5B8>.<2> can retry(N) with reason(2) for error [1:89]
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Connection 22: received failure notification
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_endpoint_handler_add_write_request [C22.1.1.1 IPv4#be1fb399:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Cannot send after flow table is released
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_write_request_report [C22] Send failed with error "Socket is not connected"
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Connection 22: write error 1:57
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C22.1.1.1 IPv4#be1fb399:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @66.194s, error Socket is not connected
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C22.1.1 Hostname#48b671b3:443 failed resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @66.194s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C22.1 Hostname#48b671b3:443 failed transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @66.194s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C22 IPv4#be1fb399:443 failed parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @66.194s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C27 IPv4#0ad4340d:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @65.441s, error Socket is not connected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C27] reporting state failed error Socket is not connected
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_frame_write_CONNECTION_CLOSE [C26.1.1.1:2] [-e7b612a8756a9328] sending CONNECTION_CLOSE, code NO_ERROR, type UNKNOWN, reason <null>
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C27 50D2C5B3-307B-46CE-9142-DBD2C422A65F IPv4#0ad4340d:443 quic-connection, url hash: 538e0e1f, tls, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C27 50D2C5B3-307B-46CE-9142-DBD2C422A65F IPv4#0ad4340d:443 quic-connection, url hash: 538e0e1f, tls, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C27] reporting state cancelled error Socket is not connected
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_log_summary [C26.1.1.1:2] [-e7b612a8756a9328] 
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C26.1.1.1:2] [-e7b612a8756a9328] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C26.1.1.1:2] [-e7b612a8756a9328] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C26.1.1.1:2] [-e7b612a8756a9328] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C26.1.1.1:2] [-e7b612a8756a9328] unable to request outbound data
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C26.1.1.1 IPv4#0ad4340d:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @65.496s, error Socket is not connected
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C26.1.1 Hostname#f814cacc:443 failed resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @65.496s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C26.1 Hostname#f814cacc:443 failed transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @65.496s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C26 IPv4#0ad4340d:443 failed parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @65.496s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C26] reporting state failed error Socket is not connected
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 26: final read 1:57, complete[Y], final[Y]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 26: cleaning up
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C26 1F39EBA6-9912-44B2-86ED-0DE37D30CFD8 Hostname#f814cacc:443 quic-connection, url hash: 538e0e1f, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_endpoint_flow_fillout_data_transfer_snapshot copy_info() returned NULL
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C26 1F39EBA6-9912-44B2-86ED-0DE37D30CFD8 Hostname#f814cacc:443 quic-connection, url hash: 538e0e1f, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C26] reporting state cancelled error Socket is not connected
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 26: done
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 28: final read 1:57, complete[Y], final[Y]
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_frame_write_CONNECTION_CLOSE [C28.1.1.1:2] [-f8c3e39dcf26d46b] sending APPLICATION_CLOSE, code 0x100, reason <null>
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C29 C84E204B-9A8B-4D45-BCAF-36213FFDD339 IPv4#0ad4340d:443 quic-connection, url hash: a4a77eec, tls, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C29 C84E204B-9A8B-4D45-BCAF-36213FFDD339 IPv4#0ad4340d:443 quic-connection, url hash: a4a77eec, tls, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C29 IPv4#0ad4340d:443 cancelled channel-flow ((null))] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C29] reporting state cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C29:1][0x1654b9a10] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C29:1][0x1654b9a10] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C28.1.1.1 IPv4#0ad4340d:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_log_summary [C28.1.1.1:2] [-f8c3e39dcf26d46b] 
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 28: cleaning up
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C28 9AECB553-E16D-42B4-9A56-BA3B6CEF5ED3 Hostname#f814cacc:443 quic-connection, url hash: a4a77eec, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C28 9AECB553-E16D-42B4-9A56-BA3B6CEF5ED3 Hostname#f814cacc:443 quic-connection, url hash: a4a77eec, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C28.1.1.1:2] [-f8c3e39dcf26d46b] unable to request outbound data
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C28] reporting state cancelled
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 28: done
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 20: final read 1:57, complete[Y], final[Y]
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_frame_write_CONNECTION_CLOSE [C20.1.1.1:2] [-ea41d976f8c1a0a0] sending APPLICATION_CLOSE, code 0x100, reason <null>
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C21 07991969-ED7D-4077-A61C-F492F7FB759A IPv4#e81724d9:443 quic-connection, url hash: 80b40c1f, tls, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C21 07991969-ED7D-4077-A61C-F492F7FB759A IPv4#e81724d9:443 quic-connection, url hash: 80b40c1f, tls, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C21 IPv4#e81724d9:443 cancelled channel-flow ((null))] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C21] reporting state cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C21:1][0x139c8a2e0] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C21:1][0x139c8a2e0] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C20.1.1.1 IPv4#e81724d9:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol disconnected
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_log_summary [C20.1.1.1:2] [-ea41d976f8c1a0a0] 
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 20: cleaning up
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C20 684F43B2-C6BD-4626-8635-28D9209D2F84 Hostname#cad37835:443 quic-connection, url hash: 80b40c1f, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C20 684F43B2-C6BD-4626-8635-28D9209D2F84 Hostname#cad37835:443 quic-connection, url hash: 80b40c1f, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C20.1.1.1:2] [-ea41d976f8c1a0a0] unable to request outbound data
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C20] reporting state cancelled
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 20: done
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_frame_write_CONNECTION_CLOSE [C30.1.1.1:2] [-e15e98672eadf0c5] sending CONNECTION_CLOSE, code NO_ERROR, type UNKNOWN, reason <null>
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C31 D6EB1D80-436A-4611-802A-2EDDD1424C50 IPv4#c109126e:443 quic-connection, url hash: b1c52411, tls, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C31 D6EB1D80-436A-4611-802A-2EDDD1424C50 IPv4#c109126e:443 quic-connection, url hash: b1c52411, tls, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_disconnected [C31 IPv4#c109126e:443 cancelled channel-flow ((null))] Output protocol disconnected
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C31] reporting state cancelled
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C31:1][0x1532c5d90] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <A974A8DC-EA20-4432-83E1-FD69A85C6FFB>.<7> resuming, timeouts(60.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_error(1902) [C31:1][0x1532c5d90] Lower protocol stack error post TLS handshake. [57: <private>]
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_log_summary [C30.1.1.1:2] [-e15e98672eadf0c5] 
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C30.1.1.1:2] [-e15e98672eadf0c5] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C30.1.1.1:2] [-e15e98672eadf0c5] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C30.1.1.1:2] [-e15e98672eadf0c5] unable to request outbound data
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_conn_send_frames_for_key_state_block_invoke [C30.1.1.1:2] [-e15e98672eadf0c5] unable to request outbound data
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C30.1.1.1 IPv4#c109126e:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @63.843s, error Socket is not connected
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C30.1.1 Hostname#08ac4659:443 failed resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @63.844s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C30.1 Hostname#08ac4659:443 failed transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @63.844s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C30 IPv4#c109126e:443 failed parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:disconnect @63.844s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C30] reporting state failed error Socket is not connected
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <EABC0DCE-E361-4CF7-BEAF-6EDD05B8F5B8>.<2> HTTP load canceled, 199/0 bytes (error code: -999 [1:89])
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <EABC0DCE-E361-4CF7-BEAF-6EDD05B8F5B8>.<2> summary for task failure {transaction_duration_ms=235, response_status=-1, connection=22, reused=1, reused_after_ms=65789, request_start_ms=42, request_duration_ms=0, response_start_ms=0, response_duration_ms=0, request_bytes=199, response_bytes=0, cache_hit=false}
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_endpoint_handler_unregister_context [C22.1.1.1 IPv4#be1fb399:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Cannot unregister after flow table is released
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 22: cleaning up
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C22 217D53D4-E776-41C9-BDBB-225B02F66932 Hostname#48b671b3:443 quic-connection, url hash: a3412719, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_endpoint_flow_fillout_data_transfer_snapshot copy_info() returned NULL
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <EABC0DCE-E361-4CF7-BEAF-6EDD05B8F5B8>.<2> finished with error [-999] Error Domain=NSURLErrorDomain Code=-999 UserInfo={_kCFStreamErrorCodeKey=89, NSUnderlyingError=0x3037d0f60 {Error Domain=kCFErrorDomainCFNetwork Code=-999 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=89, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C22 217D53D4-E776-41C9-BDBB-225B02F66932 Hostname#48b671b3:443 quic-connection, url hash: a3412719, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C22] reporting state cancelled error Socket is not connected
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <EABC0DCE-E361-4CF7-BEAF-6EDD05B8F5B8>.<2> done using Connection 22
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C5] event: client:connection_reused @70.338s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <A974A8DC-EA20-4432-83E1-FD69A85C6FFB>.<7> now using Connection 5
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 30: final read 1:57, complete[Y], final[Y]
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_protocol_instance_async_if_needed called with null instance, dumping backtrace:
    0   Network                             0x0000000192b2f0fc __nw_create_backtrace_string + 192
    1   Network                             0x000000019264ef80 nw_protocol_instance_async_if_needed + 768
    2   libquic.dylib                       0x0000000206d9ebe8 9657AE15-843B-3906-8EC7-A7D4C8F7B147 + 318440
    3   Network                             0x00000001926840d8 3B346129-AB2A-364A-8109-B53646EB1F80 + 2248920
    4   Network                             0x0000000192683ed0 nw_quic_connection_close_with_error + 148
    5   CFNetwork                           0x0000000193102788 CFHostGetInfo + 80784
    6   CFNetwork                           0x0000000193101cac CFHostGetInfo + 78004
    7   CFNetwork                           0x00000001930f8414 CFHostGetInfo + 38940
    8   CFNetwork                           0x000000019307dbf8 _CFURLResponseCreateFromArchiveList + 24340
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 30: cleaning up
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C30 612F7133-4D07-4B0C-9015-6DCCC4A3934C Hostname#08ac4659:443 quic-connection, url hash: b1c52411, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_endpoint_flow_fillout_data_transfer_snapshot copy_info() returned NULL
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C30 612F7133-4D07-4B0C-9015-6DCCC4A3934C Hostname#08ac4659:443 quic-connection, url hash: b1c52411, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <06E9F165-5A2D-41AD-A53C-2FF3FDBF0329>.<3> resuming, timeouts(60.0, 604800.0) QOS(0x19) Voucher (null)
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <1E9B2C53-6DC4-488E-ABE5-9DD62336F6B8>.<122> resuming, timeouts(10.0, 604800.0) QOS(0x19) Voucher <private>
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C30] reporting state cancelled error Socket is not connected
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C39 D975BFF2-283B-439B-B9EE-892D380C1A9A Hostname#0d7854bf:443 tcp, tls, attribution: developer, context: Default Network Context (private), proc: 3FA6C97B-25A7-3588-875D-DA6499E974D6] start
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C39 Hostname#0d7854bf:443 initial parent-flow ((null))] event: path:start @0.000s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C39 Hostname#0d7854bf:443 waiting parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.000s, uuid: 0D4C41C2-819E-473A-B2C0-A26A0419322E
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C39 Hostname#0d7854bf:443 in_progress parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_connect @0.001s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C39] reporting state preparing
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C39 Hostname#0d7854bf:443 in_progress parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_child @0.001s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C39.1 Hostname#0d7854bf:443 initial path ((null))] event: path:start @0.001s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C39.1 Hostname#0d7854bf:443 waiting path (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.001s, uuid: 0D4C41C2-819E-473A-B2C0-A26A0419322E
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C39.1 Hostname#0d7854bf:443 in_progress resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: resolver:start_dns @0.001s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 7: final read 1:53, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 7: cleaning up
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C7 345DEA47-FD8D-4638-A17F-466C3D794805 Hostname#c680837b:443 quic-connection, url hash: 0a51c499, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C7 345DEA47-FD8D-4638-A17F-466C3D794805 Hostname#c680837b:443 quic-connection, url hash: 0a51c499, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <39F8C959-2F66-4AC5-B5A7-AD793EEFA414>.<123> resuming, timeouts(10.0, 604800.0) QOS(0x15) Voucher (null)
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C7] reporting state cancelled
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 7: done
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 17: final read 1:53, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 17: cleaning up
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C17 15FBDF04-7648-429E-B0CE-D9BB774FB3CA Hostname#0b506199:443 quic-connection, url hash: 8aaad52c, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C17 15FBDF04-7648-429E-B0CE-D9BB774FB3CA Hostname#0b506199:443 quic-connection, url hash: 8aaad52c, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C17] reporting state cancelled
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 17: done
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 14: final read 1:53, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 14: cleaning up
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C14 C982AF83-1B69-4527-81DE-F5F3F6D12AC4 Hostname#79834516:443 quic-connection, url hash: 88e3e7da, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C14 C982AF83-1B69-4527-81DE-F5F3F6D12AC4 Hostname#79834516:443 quic-connection, url hash: 88e3e7da, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C14] reporting state cancelled
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 14: done
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 5: final read 1:53, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 5: cleaning up
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C5 0A8B4051-F4D6-420B-8A4C-9E243BB69688 Hostname#f1b965a4:443 quic-connection, url hash: ca15db0f, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C5 0A8B4051-F4D6-420B-8A4C-9E243BB69688 Hostname#f1b965a4:443 quic-connection, url hash: ca15db0f, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C5] reporting state cancelled
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 5: done
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 13: final read 1:53, complete[Y], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 13: cleaning up
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C13 B3BD86C0-A9FD-494E-A734-BEBF6DCFC0FD Hostname#081326e5:443 quic-connection, url hash: 3c89b246, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C13 B3BD86C0-A9FD-494E-A734-BEBF6DCFC0FD Hostname#081326e5:443 quic-connection, url hash: 3c89b246, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C13] reporting state cancelled
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 13: done
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_endpoint_resolver_update [C38.1 Hostname#67fd676b:443 in_progress resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Adding endpoint handler for IPv4#cc37abe2:443
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_endpoint_resolver_update [C38.1 Hostname#67fd676b:443 in_progress resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Adding endpoint handler for IPv4#93190d90:443
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38.1 Hostname#67fd676b:443 in_progress resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: resolver:receive_dns @0.386s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <A974A8DC-EA20-4432-83E1-FD69A85C6FFB>.<7> incrementRetryCount fNumRetries=1
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <A974A8DC-EA20-4432-83E1-FD69A85C6FFB>.<7> idempotent(N) retry reason(0) bytes written(N)
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <A974A8DC-EA20-4432-83E1-FD69A85C6FFB>.<7> can retry(N) with reason(0) for error [1:53]
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <A974A8DC-EA20-4432-83E1-FD69A85C6FFB>.<7> HTTP load failed, 0/0 bytes (error code: -1005 [1:53])
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <A974A8DC-EA20-4432-83E1-FD69A85C6FFB>.<7> summary for task failure {transaction_duration_ms=45, response_status=200, connection=5, reused=1, reused_after_ms=0, request_start_ms=0, request_duration_ms=0, response_start_ms=0, response_duration_ms=0, request_bytes=0, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Task <A974A8DC-EA20-4432-83E1-FD69A85C6FFB>.<7> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_kCFStreamErrorCodeKey=53, NSUnderlyingError=0x3037d2d60 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 UserInfo={_kCFStreamErrorCodeKey=53, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:89, complete[N], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <84C88EA7-45DD-48C4-B764-DDC389C6AC91>.<116> can retry(N) with reason(2) for error [1:89]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:89, complete[N], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F3FA2EBF-A122-413D-8139-EBB851987AF7>.<117> can retry(N) with reason(2) for error [1:89]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:89, complete[N], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <62F14904-9738-4FA8-B264-6EF71870F846>.<115> can retry(N) with reason(2) for error [1:89]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: final read 1:89, complete[N], final[N]
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F6C572ED-DA77-438F-BF6D-87E7AD1AC403>.<118> can retry(N) with reason(2) for error [1:89]
Oct 11 09:21:10 App(CFNetwork)[2146] <Error>: Connection 3: received failure notification
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <84C88EA7-45DD-48C4-B764-DDC389C6AC91>.<116> HTTP load canceled, 59/0 bytes (error code: -999 [1:89])
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <84C88EA7-45DD-48C4-B764-DDC389C6AC91>.<116> summary for task failure {transaction_duration_ms=343, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=27, request_duration_ms=13, response_start_ms=0, response_duration_ms=0, request_bytes=59, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F3FA2EBF-A122-413D-8139-EBB851987AF7>.<117> HTTP load canceled, 64/0 bytes (error code: -999 [1:89])
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <62F14904-9738-4FA8-B264-6EF71870F846>.<115> HTTP load canceled, 58/0 bytes (error code: -999 [1:89])
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F6C572ED-DA77-438F-BF6D-87E7AD1AC403>.<118> HTTP load canceled, 65/0 bytes (error code: -999 [1:89])
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <84C88EA7-45DD-48C4-B764-DDC389C6AC91>.<116> finished with error [-999] Error Domain=NSURLErrorDomain Code=-999 UserInfo={_kCFStreamErrorCodeKey=89, NSUnderlyingError=0x30361e520 {Error Domain=kCFErrorDomainCFNetwork Code=-999 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=89, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F3FA2EBF-A122-413D-8139-EBB851987AF7>.<117> summary for task failure {transaction_duration_ms=342, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=27, request_duration_ms=10, response_start_ms=0, response_duration_ms=0, request_bytes=64, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F3FA2EBF-A122-413D-8139-EBB851987AF7>.<117> finished with error [-999] Error Domain=NSURLErrorDomain Code=-999 UserInfo={_kCFStreamErrorCodeKey=89, NSUnderlyingError=0x303551020 {Error Domain=kCFErrorDomainCFNetwork Code=-999 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=89, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <62F14904-9738-4FA8-B264-6EF71870F846>.<115> summary for task failure {transaction_duration_ms=343, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=27, request_duration_ms=11, response_start_ms=0, response_duration_ms=0, request_bytes=58, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <62F14904-9738-4FA8-B264-6EF71870F846>.<115> finished with error [-999] Error Domain=NSURLErrorDomain Code=-999 UserInfo={_kCFStreamErrorCodeKey=89, NSUnderlyingError=0x30361e460 {Error Domain=kCFErrorDomainCFNetwork Code=-999 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=89, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F6C572ED-DA77-438F-BF6D-87E7AD1AC403>.<118> summary for task failure {transaction_duration_ms=342, response_status=200, connection=3, reused=1, reused_after_ms=0, request_start_ms=29, request_duration_ms=8, response_start_ms=0, response_duration_ms=0, request_bytes=65, response_bytes=0, cache_hit=true}
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F6C572ED-DA77-438F-BF6D-87E7AD1AC403>.<118> finished with error [-999] Error Domain=NSURLErrorDomain Code=-999 UserInfo={_kCFStreamErrorCodeKey=89, NSUnderlyingError=0x3036789f0 {Error Domain=kCFErrorDomainCFNetwork Code=-999 UserInfo={NSErrorPeerAddressKey=<private>, _kCFStreamErrorCodeKey=89, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=<private>, _NSURLErrorRelatedURLSessionTaskErrorKey=<private>, NSLocalizedDescription=<private>, NSErrorFailingURLStringKey=<private>, NSErrorFailingURLKey=<private>, _kCFStreamErrorDomainKey=1}
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_endpoint_handler_unregister_context [C3.1.1.1 IPv4#93eca9fc:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Cannot unregister after flow table is released
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <84C88EA7-45DD-48C4-B764-DDC389C6AC91>.<116> done using Connection 3
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_endpoint_handler_unregister_context [C3.1.1.1 IPv4#93eca9fc:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Cannot unregister after flow table is released
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F3FA2EBF-A122-413D-8139-EBB851987AF7>.<117> done using Connection 3
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_endpoint_handler_unregister_context [C3.1.1.1 IPv4#93eca9fc:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Cannot unregister after flow table is released
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <62F14904-9738-4FA8-B264-6EF71870F846>.<115> done using Connection 3
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_endpoint_handler_unregister_context [C3.1.1.1 IPv4#93eca9fc:443 failed channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Cannot unregister after flow table is released
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 3: cleaning up
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C3 20A066B3-055E-481A-AB99-071AED790091 Hostname#ec8c3e54:443 quic-connection, url hash: c6ef4f7f, definite, attribution: developer] cancel
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_endpoint_flow_fillout_data_transfer_snapshot copy_info() returned NULL
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C3 20A066B3-055E-481A-AB99-071AED790091 Hostname#ec8c3e54:443 quic-connection, url hash: c6ef4f7f, definite, attribution: developer] cancelled
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C3] reporting state cancelled error Socket is not connected
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <F6C572ED-DA77-438F-BF6D-87E7AD1AC403>.<118> done using Connection 3
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38.1.1 IPv4#cc37abe2:443 initial path ((null))] event: path:start @0.396s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38.1.1 IPv4#cc37abe2:443 waiting path (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.397s, uuid: F2318E81-9289-46C7-93FE-6593D429F132
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_socket_initialize_socket [C38.1.1:1] Not guarding fd 65
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38.1.1 IPv4#cc37abe2:443 in_progress socket-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_connect @0.397s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 0: creating secure tcp or quic connection
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <3797F428-9BE8-473E-BC52-5EDB79331895>.<120> waiting for setup of Connection 40
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <1231B864-5E0D-4FA6-BCDD-E1C71E7DC364>.<121> waiting for setup of Connection 40
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <1E9B2C53-6DC4-488E-ABE5-9DD62336F6B8>.<122> waiting for setup of Connection 40
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <39F8C959-2F66-4AC5-B5A7-AD793EEFA414>.<123> waiting for setup of Connection 40
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 40: enabling TLS
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 40: starting, TC(0x0)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40 D26F7EB2-AECE-4C9D-AD31-F7B9102937DC Hostname#ec8c3e54:443 quic-connection, url hash: c6ef4f7f, definite, attribution: developer, context: com.apple.CFNetwork.NSURLSession.{20F9D653-F591-411E-BDBD-2DA1DE33ABDD}{(null)}{Y}{2}{0x0} (private), proc: 3FA6C97B-25A7-3588-875D-DA6499E974D6] start
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40 Hostname#ec8c3e54:443 initial parent-flow ((null))] event: path:start @0.000s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40 Hostname#ec8c3e54:443 waiting parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.000s, uuid: 9016B3C2-B4DC-4947-9F02-D9E6C69F86B0
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40 Hostname#ec8c3e54:443 in_progress parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_connect @0.000s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C40] reporting state preparing
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40 Hostname#ec8c3e54:443 in_progress parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_child @0.001s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1 Hostname#ec8c3e54:443 initial path ((null))] event: path:start @0.001s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1 Hostname#ec8c3e54:443 waiting path (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.002s, uuid: 9016B3C2-B4DC-4947-9F02-D9E6C69F86B0
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1 Hostname#ec8c3e54:443 in_progress transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: transform:start @0.002s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1 Hostname#ec8c3e54:443 initial path ((null))] event: path:start @0.003s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1 Hostname#ec8c3e54:443 waiting path (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.003s, uuid: 3F107F51-B05C-4914-8D4E-39E1CC9F63F5
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1 Hostname#ec8c3e54:443 in_progress resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: resolver:start_dns @0.003s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <030662B8-85DB-44A1-8A43-4ED53CE71423>.<119> setting up Connection 40
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_endpoint_resolver_update [C39.1 Hostname#0d7854bf:443 in_progress resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Adding endpoint handler for IPv4#bef5de4a:443
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C39.1 Hostname#0d7854bf:443 in_progress resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: resolver:receive_dns @0.045s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 0: creating secure tcp or quic connection
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 41: enabling TLS
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 41: starting, TC(0x0)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41 F0F0115B-DDBF-479D-BE56-CB4DBB49E199 Hostname#48b671b3:443 quic-connection, url hash: a3412719, definite, attribution: developer, context: com.apple.CFNetwork.NSURLSession.{46011448-04AC-4089-B32A-DA94E02BC5C1}{(null)}{Y}{2}{0x0} (private), proc: 3FA6C97B-25A7-3588-875D-DA6499E974D6] start
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41 Hostname#48b671b3:443 initial parent-flow ((null))] event: path:start @0.000s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41 Hostname#48b671b3:443 waiting parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.000s, uuid: 6F2ABABA-F1DA-4F12-9674-19E7EE9407CA
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41 Hostname#48b671b3:443 in_progress parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_connect @0.000s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C41] reporting state preparing
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41 Hostname#48b671b3:443 in_progress parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_child @0.005s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1 Hostname#48b671b3:443 initial path ((null))] event: path:start @0.008s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1 Hostname#48b671b3:443 waiting path (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.011s, uuid: 6F2ABABA-F1DA-4F12-9674-19E7EE9407CA
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1 Hostname#48b671b3:443 in_progress transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: transform:start @0.021s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1 Hostname#48b671b3:443 initial path ((null))] event: path:start @0.022s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1 Hostname#48b671b3:443 waiting path (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.022s, uuid: CA4240AE-8AC3-46EB-B59C-CCAF42E43839
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1 Hostname#48b671b3:443 in_progress resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: resolver:start_dns @0.022s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <06E9F165-5A2D-41AD-A53C-2FF3FDBF0329>.<3> setting up Connection 41
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C39.1.1 IPv4#bef5de4a:443 initial path ((null))] event: path:start @0.070s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C39.1.1 IPv4#bef5de4a:443 waiting path (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.071s, uuid: 0896289B-ABF0-46E6-AE8E-BD4E1FEC7895
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C39.1.1 IPv4#bef5de4a:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_nexus @0.071s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C39.1.1 IPv4#bef5de4a:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @0.071s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C39.1.1 IPv4#bef5de4a:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_connect @0.072s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_endpoint_resolver_update [C40.1.1 Hostname#ec8c3e54:443 in_progress resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Adding endpoint handler for IPv4#93eca9fc:443
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1 Hostname#ec8c3e54:443 in_progress resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: resolver:receive_dns @0.039s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_endpoint_resolver_update [C41.1.1 Hostname#48b671b3:443 in_progress resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Adding endpoint handler for IPv4#be1fb399:443
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1 Hostname#48b671b3:443 in_progress resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: resolver:receive_dns @0.032s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1.1 IPv4#93eca9fc:443 initial path ((null))] event: path:start @0.039s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1.1 IPv4#93eca9fc:443 waiting path (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.039s, uuid: 90DA6787-6322-4EE8-AD26-F6FF6A2060A2
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1.1 IPv4#93eca9fc:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_nexus @0.039s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1.1 IPv4#93eca9fc:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @0.040s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_protocol_instance_ignore_future_path_changes [C40.1.1.1:2] Ignoring future path changes for protocol
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_initialize_inner [C40.1.1.1:2] [-a2478c8fd573d66a] created QUIC connection (spin bit enabled)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1.1 IPv4#93eca9fc:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_connect @0.041s
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_crypto_new_flow [C40.1.1.1:2] [-a2478c8fd573d66a] TLS stream is: [C42]
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C42 192CE393-9979-4787-8B85-1422CCB6BE5F IPv4#93eca9fc:443 quic-connection, url hash: c6ef4f7f, tls, definite, attribution: developer, context: com.apple.CFNetwork.NSURLSession.{20F9D653-F591-411E-BDBD-2DA1DE33ABDD}{(null)}{Y}{2}{0x0} (private), proc: 3FA6C97B-25A7-3588-875D-DA6499E974D6, no transport] start
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C42 IPv4#93eca9fc:443 initial socket-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:start @0.000s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C42 IPv4#93eca9fc:443 waiting socket-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.000s, uuid: 90DA6787-6322-4EE8-AD26-F6FF6A2060A2
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C42 IPv4#93eca9fc:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_connect @0.000s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C42] reporting state preparing
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_connected [C42 IPv4#93eca9fc:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Transport protocol connected (quic-connection)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C42 IPv4#93eca9fc:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:finish_transport @0.000s
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_session_apply_protocol_options_for_transport_block_invoke(2007) [C42:1][0x139c204a0] TLS configured [min_version(0x0304) max_version(0x0304) name(redacted) tickets(false) false_start(false) enforce_ev(false) enforce_ats(false) ech(false)]
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2133) [C42:1][0x139c204a0] Client handshake started
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS client enter_early_data
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS client read_server_hello
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1.1 IPv4#be1fb399:443 initial path ((null))] event: path:start @0.036s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1.1 IPv4#be1fb399:443 waiting path (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.037s, uuid: 39572662-F07B-4F5E-9FD4-D7ADEB4CC9D4
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1.1 IPv4#be1fb399:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_nexus @0.037s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1.1 IPv4#be1fb399:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @0.037s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_protocol_instance_ignore_future_path_changes [C41.1.1.1:2] Ignoring future path changes for protocol
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_conn_initialize_inner [C41.1.1.1:2] [-3e5cb251ff54ebfb] created QUIC connection (spin bit enabled)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1.1 IPv4#be1fb399:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_connect @0.038s
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_crypto_new_flow [C41.1.1.1:2] [-3e5cb251ff54ebfb] TLS stream is: [C43]
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C43 0267A735-B491-4461-B089-6E3CDE0C7D8A IPv4#be1fb399:443 quic-connection, url hash: a3412719, tls, definite, attribution: developer, context: com.apple.CFNetwork.NSURLSession.{46011448-04AC-4089-B32A-DA94E02BC5C1}{(null)}{Y}{2}{0x0} (private), proc: 3FA6C97B-25A7-3588-875D-DA6499E974D6, no transport] start
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C43 IPv4#be1fb399:443 initial socket-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:start @0.000s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C43 IPv4#be1fb399:443 waiting socket-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:satisfied @0.000s, uuid: 39572662-F07B-4F5E-9FD4-D7ADEB4CC9D4
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C43 IPv4#be1fb399:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:start_connect @0.000s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C43] reporting state preparing
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_connected [C43 IPv4#be1fb399:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Transport protocol connected (quic-connection)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C43 IPv4#be1fb399:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:finish_transport @0.000s
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_session_apply_protocol_options_for_transport_block_invoke(2007) [C43:1][0x1654baef0] TLS configured [min_version(0x0304) max_version(0x0304) name(redacted) tickets(false) false_start(false) enforce_ev(false) enforce_ats(false) ech(false)]
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2133) [C43:1][0x1654baef0] Client handshake started
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS client enter_early_data
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS client read_server_hello
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C43 IPv4#be1fb399:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:receive_nexus @0.002s
Oct 11 09:21:10 App(Network)[2146] <Error>: udp_validate_cksum_internal [C40.1.1.1:3] udp incorrect IPv4-UDP offload checksum 0x1b71 ulen 212
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_protocol_udp_get_input_frames [C40.1.1.1:3] Dropped inbound packets, checking for more
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS 1.3 client read_hello_retry_request
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS 1.3 client read_server_hello
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS 1.3 client read_encrypted_extensions
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS 1.3 client read_certificate_request
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(Network)[2146] <Error>: udp_validate_cksum_internal [C41.1.1.1:3] udp incorrect IPv4-UDP offload checksum 0x5ff7 ulen 619
Oct 11 09:21:10 App(Network)[2146] <Error>: nw_protocol_udp_get_input_frames [C41.1.1.1:3] Dropped inbound packets, checking for more
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS 1.3 client read_hello_retry_request
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS 1.3 client read_server_hello
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS 1.3 client read_encrypted_extensions
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS 1.3 client read_certificate_request
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS 1.3 client read_server_certificate
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS 1.3 client read_server_certificate_verify
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_evaluate_trust_async(1690) [C42:1][0x139c204a0] Performing external trust evaluation
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_evaluate_trust_async_external(1675) [C42:1][0x139c204a0] Asyncing for external verify block
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 40: asked to evaluate TLS Trust
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <030662B8-85DB-44A1-8A43-4ED53CE71423>.<119> auth completion disp=1 cred=0x0
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS 1.3 client read_server_certificate
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS 1.3 client read_server_certificate_verify
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_evaluate_trust_async(1690) [C43:1][0x1654baef0] Performing external trust evaluation
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_evaluate_trust_async_external(1675) [C43:1][0x1654baef0] Asyncing for external verify block
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 41: asked to evaluate TLS Trust
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <06E9F165-5A2D-41AD-A53C-2FF3FDBF0329>.<3> auth completion disp=1 cred=0x0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: System Trust Evaluation yielded status(0)
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: System Trust Evaluation yielded status(0)
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 40: TLS Trust result 0
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_evaluate_trust_async_external_block_invoke_3(1631) [C42:1][0x139c204a0] Returning from external verify block with result: true
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_certificate_verify_callback(1852) [C42:1][0x139c204a0] Certificate verification result: OK
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS 1.3 client read_server_finished
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS 1.3 client send_end_of_early_data
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS 1.3 client send_client_encrypted_extensions
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS 1.3 client send_client_certificate
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS 1.3 client complete_second_flight
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS 1.3 client done
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS client finish_client_handshake
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C42:1][0x139c204a0] Client handshake state: TLS client done
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2139) [C42:1][0x139c204a0] Client handshake done
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_signal_connected(746) [C42:1][0x139c204a0] TLS connected [version(0x0304) ciphersuite(TLS_AES_128_GCM_SHA256) group(0x001d) signature_alg(0x0804) alpn(h3) resumed(0) offered_ticket(0) false_started(0) ocsp_received(0) sct_received(0) connect_time(64ms) flight_time(19ms) rtt(17ms) write_stalls(0) read_stalls(5)]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_connected [C42 IPv4#93eca9fc:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol connected (tls)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C42 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:finish_connect @0.065s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C42] reporting state ready
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C42 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:changed_viability @0.065s
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_pmtud_restart [C40.1.1.1:2] [-e2478c8fd573d66a] PMTUD enabled, max PMTU: 1500, header size: 28, current PMTU 1228
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_crypto_tls_ready_inner [C40.1.1.1:2] [-e2478c8fd573d66a] QUIC connection established in 68.608 ms, RTT 16.8 ms
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_connected [C40.1.1.1 IPv4#93eca9fc:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Transport protocol connected (quic-connection)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1.1 IPv4#93eca9fc:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:finish_transport @0.112s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_connected [C40.1.1.1 IPv4#93eca9fc:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol connected (CFNetworkConnection-1048239895)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:child_finish_connect @0.112s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1 Hostname#ec8c3e54:443 ready resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:child_finish_connect @0.113s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1 Hostname#ec8c3e54:443 ready transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:child_finish_connect @0.113s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:changed_viability @0.113s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1 Hostname#ec8c3e54:443 ready resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:changed_viability @0.113s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1 Hostname#ec8c3e54:443 ready transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:changed_viability @0.113s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_connected [C40 IPv4#93eca9fc:443 in_progress parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol connected (endpoint_flow)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40 IPv4#93eca9fc:443 ready parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:finish_connect @0.114s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C40] reporting state ready
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40 IPv4#93eca9fc:443 ready parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:changed_viability @0.114s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_protocol_instance_report_ready [C40.1.1.1:2] Calling notify with interface <private>
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1.1 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:migrated @0.114s, uuid: 90DA6787-6322-4EE8-AD26-F6FF6A2060A2
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1.1 Hostname#ec8c3e54:443 ready resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:migrated @0.114s, uuid: 3F107F51-B05C-4914-8D4E-39E1CC9F63F5
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40.1 Hostname#ec8c3e54:443 ready transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:migrated @0.114s, uuid: 9016B3C2-B4DC-4947-9F02-D9E6C69F86B0
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40 IPv4#93eca9fc:443 ready parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:migrated @0.115s, uuid: 9016B3C2-B4DC-4947-9F02-D9E6C69F86B0
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_create_inbound [C40.1.1.1:2] [-e2478c8fd573d66a] creating inbound stream 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 41: TLS Trust result 0
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_evaluate_trust_async_external_block_invoke_3(1631) [C43:1][0x1654baef0] Returning from external verify block with result: true
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_certificate_verify_callback(1852) [C43:1][0x1654baef0] Certificate verification result: OK
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS 1.3 client read_server_finished
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS 1.3 client send_end_of_early_data
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS 1.3 client send_client_encrypted_extensions
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS 1.3 client send_client_certificate
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS 1.3 client complete_second_flight
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS 1.3 client done
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS client finish_client_handshake
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2150) [C43:1][0x1654baef0] Client handshake state: TLS client done
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_info_handler(2139) [C43:1][0x1654baef0] Client handshake done
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_signal_connected(746) [C43:1][0x1654baef0] TLS connected [version(0x0304) ciphersuite(TLS_AES_128_GCM_SHA256) group(0x001d) signature_alg(0x0804) alpn(h3) resumed(0) offered_ticket(0) false_started(0) ocsp_received(0) sct_received(0) connect_time(69ms) flight_time(25ms) rtt(19ms) write_stalls(0) read_stalls(5)]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_connected [C43 IPv4#be1fb399:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol connected (tls)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C43 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:finish_connect @0.071s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C43] reporting state ready
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C43 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:changed_viability @0.072s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 40: connected successfully
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 40: TLS handshake complete
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 40: ready C(N) E(N)
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_new_session_handler(1393) [C42:1][0x139c204a0] Asyncing for session update block
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_new_session_handler(1393) [C42:1][0x139c204a0] Asyncing for session update block
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: nw_protocol_boringssl_signal_connected(746) [C42:1][0x139c204a0] TLS connected [version(0x0304) ciphersuite(TLS_AES_128_GCM_SHA256) group(0x001d) signature_alg(0x0804) alpn(h3) resumed(0) offered_ticket(0) false_started(0) ocsp_received(0) sct_received(0) connect_time(64ms) flight_time(19ms) rtt(17ms) write_stalls(0) read_stalls(5)]
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_connected [C42 IPv4#93eca9fc:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol connected (tls)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C40] event: client:connection_reused @0.124s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <030662B8-85DB-44A1-8A43-4ED53CE71423>.<119> now using Connection 40
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_crypto_queue_append not enqueing more packets (max 5 reached)
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: quic_crypto_queue_append not enqueing more packets (max 5 reached)
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <3797F428-9BE8-473E-BC52-5EDB79331895>.<120> now using Connection 40
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <1231B864-5E0D-4FA6-BCDD-E1C71E7DC364>.<121> now using Connection 40
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <1E9B2C53-6DC4-488E-ABE5-9DD62336F6B8>.<122> now using Connection 40
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <39F8C959-2F66-4AC5-B5A7-AD793EEFA414>.<123> now using Connection 40
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 40: received viability advisory(Y)
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x12a9c3b58 ID=4 Task <3797F428-9BE8-473E-BC52-5EDB79331895>.<120> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x12a9f9d18 ID=8 Task <1231B864-5E0D-4FA6-BCDD-E1C71E7DC364>.<121> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x129fba3e8 ID=12 Task <1E9B2C53-6DC4-488E-ABE5-9DD62336F6B8>.<122> sent request, body N 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x129f45f78 ID=0 Task <030662B8-85DB-44A1-8A43-4ED53CE71423>.<119> sent request, body S 26
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x129fbe358 ID=16 Task <39F8C959-2F66-4AC5-B5A7-AD793EEFA414>.<123> sent request, body S 1531
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_pmtud_restart [C41.1.1.1:2] [-fe5cb251ff54ebfb] PMTUD enabled, max PMTU: 1500, header size: 28, current PMTU 1228
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_crypto_tls_ready_inner [C41.1.1.1:2] [-fe5cb251ff54ebfb] QUIC connection established in 82.511 ms, RTT 18.615 ms
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_connected [C41.1.1.1 IPv4#be1fb399:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Transport protocol connected (quic-connection)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1.1 IPv4#be1fb399:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:finish_transport @0.121s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_connected [C41.1.1.1 IPv4#be1fb399:443 in_progress channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol connected (CFNetworkConnection-1048239895)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:child_finish_connect @0.122s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1 Hostname#48b671b3:443 ready resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:child_finish_connect @0.122s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1 Hostname#48b671b3:443 ready transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:child_finish_connect @0.122s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:changed_viability @0.122s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1 Hostname#48b671b3:443 ready resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:changed_viability @0.122s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1 Hostname#48b671b3:443 ready transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:changed_viability @0.122s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_connected [C41 IPv4#be1fb399:443 in_progress parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol connected (endpoint_flow)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41 IPv4#be1fb399:443 ready parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:finish_connect @0.122s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C41] reporting state ready
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41 IPv4#be1fb399:443 ready parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:changed_viability @0.122s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_protocol_instance_report_ready [C41.1.1.1:2] Calling notify with interface <private>
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1.1 IPv4#be1fb399:443 ready channel-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:migrated @0.122s, uuid: 39572662-F07B-4F5E-9FD4-D7ADEB4CC9D4
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1.1 Hostname#48b671b3:443 ready resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:migrated @0.123s, uuid: CA4240AE-8AC3-46EB-B59C-CCAF42E43839
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41.1 Hostname#48b671b3:443 ready transform (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:migrated @0.123s, uuid: 6F2ABABA-F1DA-4F12-9674-19E7EE9407CA
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41 IPv4#be1fb399:443 ready parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: path:migrated @0.123s, uuid: 6F2ABABA-F1DA-4F12-9674-19E7EE9407CA
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(libquic.dylib)[2146] <Notice>: quic_stream_create_inbound [C41.1.1.1:2] [-fe5cb251ff54ebfb] creating inbound stream 3
Oct 11 09:21:10 App(libquic.dylib)[2146] <Error>: sec_framer_open_aesgcm failed to open for AESGCM: -4308
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_socket_handle_socket_event [C38.1.1:1] Socket received CONNECTED event
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_connected [C38.1.1 IPv4#cc37abe2:443 in_progress socket-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol connected (socket)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38.1.1 IPv4#cc37abe2:443 ready socket-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:child_finish_connect @0.529s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38.1 Hostname#67fd676b:443 ready resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:child_finish_connect @0.529s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38.1.1 IPv4#cc37abe2:443 ready socket-flow (satisfied (Path is satisfied), viable, interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:changed_viability @0.529s
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38.1 Hostname#67fd676b:443 ready resolver (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:changed_viability @0.529s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_flow_connected [C38 IPv4#cc37abe2:443 in_progress parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] Output protocol connected (endpoint_flow)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38 IPv4#cc37abe2:443 ready parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:finish_connect @0.529s
Oct 11 09:21:10 App(Network)[2146] <Notice>: nw_connection_report_state_with_handler_on_nw_queue [C38] reporting state ready
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C38 IPv4#cc37abe2:443 ready parent-flow (satisfied (Path is satisfied), interface: en0[802.11], ipv4, ipv6, dns, uses wifi)] event: flow:changed_viability @0.530s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: TCP Conn 0x3009f8fa0 event 1. err: 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: TCP Conn 0x3009f8fa0 complete. fd: 94, err: 0
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: TCP Conn 0x3009f8fa0 starting SSL negotiation
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_new_session_handler_block_invoke(1396) [C42:1][0x139c204a0] Returning from session update block
Oct 11 09:21:10 App(libboringssl.dylib)[2146] <Notice>: boringssl_context_new_session_handler_block_invoke(1396) [C42:1][0x139c204a0] Returning from session update block
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 41: connected successfully
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 41: TLS handshake complete
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 41: ready C(N) E(N)
Oct 11 09:21:10 App(Network)[2146] <Notice>: [C41] event: client:connection_reused @0.129s
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Task <06E9F165-5A2D-41AD-A53C-2FF3FDBF0329>.<3> now using Connection 41
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: Connection 41: received viability advisory(Y)
Oct 11 09:21:10 App(CFNetwork)[2146] <Notice>: 0x129f833d8 ID=0 Task <06E9F165-5A2D-41AD-A53C-2FF3FDBF0329>.<3> sent request, body S 372

@djc
Copy link
Member

djc commented Oct 11, 2024

Maybe there is an kind of event that UDP socket rotation is required

While technically feasible, this seems tricky from an ergonomics standpoint. Users should be able to get reasonable behavior by default without having to know about this. Would it make sense for us to try to create a new socket at the same address whenever we get an error like that? How do we square that with user-provided sockets that might have other attached state we don't know about?

Would be interesting, too, to understand what happens on Android in these kinds of scenarios.

As for "should be able to get reasonable behavior by default" it seems like the current behavior works well outside of mobile, so maybe it we should have some kind of wrapper AsyncUdpSocketBuilder trait that, in the default configuration, doesn't really do anything other than wrapping an existing Arc<dyn AsyncUdpSocket> but implementations of which can do the stuff we need for mobile environments?

@mstyura
Copy link
Contributor Author

mstyura commented Oct 11, 2024

I expect to investigate Android next week and report findings here. So far our QA is reported that connection is also does not work after BG until long timeout expires (probably idle timeout). But I guess Android has problem due to a different technical reason. Speculatively I can guess that Android might have more tricker problem which is timers are not advanced in background (tokio-rs/tokio#3185, rust-lang/rust#71860), but as I've said I didn't have a chance to debug problem myself and will likely to do it next week.

@djc
Copy link
Member

djc commented Oct 11, 2024

@mstyura who's we, by the way? Always good to understand our downstream consumer's use cases.

@Ralith
Copy link
Collaborator

Ralith commented Oct 11, 2024

I believe every connection is in a broken state after app was in background and they are recreated.

Are they recreated automatically, or is it the application's responsibility?

It's interesting to note that Apple explicitly instructs application developers to release resources upon entering the background. Is it typical for libraries to handle that internally? It might be most idiomatic for your application layer to manually tear down/rebuild networking resources from the top level.

@mstyura
Copy link
Contributor Author

mstyura commented Oct 11, 2024

It's very much depends of type of connection. According to observed logs connections maintained under the hood by URLSession (apple's http request api) are failed and re-created automatically by the system framework providing http api. The manually created connections like NWConnection are getting event that they are on failed state after BG and it's app responsibility to recover them.

Regarding releasing resources in background, I believe Apple recommendations are mostly about different story - their main concern is releasing memory when app is not visible to user, so more apps can be preserved in memory at same time allowing faster switch between them. It's common for app on iOS to have some network communications after it's already minimized and you cab handle that, but can not handle the point when OS stop executing any thread of the app.

Whether or not library handles socket disruption automatically is very much dependent on library. E.g for http client library like system provided URLSession it's natural to expect it handles reconnection automatically. For more low level sockets when they are initiated by user of the library I expect some kind of event when socket become broken and it's library user responsibility to handle recovery.

Even now I believe Quinn is extensible enough such that I can provide custom AsyncUdpSocket which monitor EPIPE and signal back to my code to handle recovery. So far I've managed to handle stuck connection by re-creating them on EPIPE, which sound like ok but not perfect. It feels like better recovery could be to try rebind_abstract to make quic try to resume existing connection, but I've not yet completed with implementation of this to see if it actually work like this.

Even if quinn will never by default provide any kind of signal to recover broken udp socket I would expect by default it should have been failed faster in such case e.g. by emitting internal event on I/O error from
Connection driver to cause connection be LocalClosed with some error message. In such case whoever need different behavior could still provide custom socket implementation.

@Ralith
Copy link
Collaborator

Ralith commented Oct 12, 2024

connections maintained under the hood by URLSession (apple's http request api) are failed and re-created automatically by the system framework providing http api. The manually created connections like NWConnection are getting event that they are on failed state after BG and it's app responsibility to recover them.

Thanks, that's useful context.

Because we're (presumably?) not in a good position to detect when the connection can be resumed, and rebuilding UDP sockets internally is tricky, I see two reasonable paths forwards:

  • Fail the connection outright with a (new?) ConnectionError that might prompt the application to reconnect. This is minimal and simple to implement.
  • Introduce a new non-fatal event that the application can act on to rebind. This is a larger change, but might save reconnection costs and be easier to integrate into application logic, since Quinn objects won't need to be replaced.

@mstyura
Copy link
Contributor Author

mstyura commented Oct 14, 2024

Fail the connection outright with a (new?) ConnectionError that might prompt the application to reconnect. This is minimal and simple to implement.

In one of the attempts to find workaround I've tried to return Err from sendmsg to fail fast connection, but what I've actually got is stuck connection. So maybe the event should be triggered from the connection driver completed with error as well?

tracing::error!("I/O error: {e}");

@Ralith
Copy link
Collaborator

Ralith commented Oct 14, 2024

So maybe the event should be triggered from the connection driver completed with error

Currently the assumption is that the connection driver should never fail. Revisiting that does seem like a reasonable implementation strategy for this new class of errors. It's also probably a bad thing that the I/O driver failing causes connections to get stuck indefinitely regardless.

@mstyura
Copy link
Contributor Author

mstyura commented Oct 18, 2024

On Android the situation with sockets in background is occurred to be unrelated to timers. Whenever device screen is locked while app was in foreground the next attempt to call sendmsg completes with EACCESS. quinn tries to send more packets including re-transmission and subsequent sendmsg are not happening probably because according to socket status it's not writable and tokio awaiting it become writeable. Eventually quinn decides that network congestion happen and block sending more packets. After app come to foreground socket become writable again, but probably estimation of available bandwidth was "ruined" by packets which were scheduled to sent but not actually left device, so it take more time to connection to recover from this situation.

@Ralith
Copy link
Collaborator

Ralith commented Oct 25, 2024

After app come to foreground socket become writable again, but probably estimation of available bandwidth was "ruined"

The new interface proposed in #2018 might help accelerate recovery, though it might also be much more pessimistic than the impact of the limited amount of loss that can occur before quinn is backpressured by the unwritable socket.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants