invertase / react-native-firebase

๐Ÿ”ฅ A well-tested feature-rich modular Firebase implementation for React Native. Supports both iOS & Android platforms for all Firebase services.
https://rnfirebase.io
Other
11.64k stars 2.21k forks source link

[๐Ÿ›] Android[Quit], onNotificationOpenedApp not trigger / iOS when app is Background received fcm notification, click that notification when app is Quit, not trigger onNotificationOpenedApp #6191

Closed Jeeying closed 2 years ago

Jeeying commented 2 years ago

Issue

โš ๏ธ update

(when app is Active, fcm not show notification, so I use notifee to show notification)

android when app is Quit, click notification not triger messaging().onNotificationOpenedApp when app is Quit, no notifee event be triger ios when app is Background, received fcm notification, click this notification when app is Quit, won't trigger messaging().onNotificationOpenedApp

and another thing, messaging().getInitialNotification never trigger

device
  when/do what
    device state
      ...
------------------------------------
Android
  send fcm, what be trigger
    Active
      messaging().onMessage
      notifee.onForegroundEvent(type is 3)
    Background
      messaging().setBackgroundMessageHandler ๐ŸŸ
    Quit
      messaging().setBackgroundMessageHandler ๐ŸŒˆ

  when app is background, reveived fcm notification, chick notification when app is..
  when app is quit, reveived fcm notification, chick notification when app is..
    Active
    Background
      messaging().onNotificationOpenedApp
    Quit
      not thing โŒ

  click notifee notification when
    Active
      notifee.onForegroundEvent(type is 1)
    Background
      notifee.onBackgroundEvent(type is 1)
    Quit
      not thing โŒ

iOS
  Active
    send fcm, what be trigger
      messaging().onMessage
      notifee.onForegroundEvent(type is 3)
  Background
      messaging().setBackgroundMessageHandler ๐ŸŸ
  Quit
      messaging().setBackgroundMessageHandler ๐ŸŒˆ

  when app is background, reveived fcm notification, chick notification when app is..
    Active
    Background
      messaging().onNotificationOpenedApp
    Quit
      not thing โŒ

  when app is quit, reveived fcm notification, chick notification when app is..
    Active
    Background
    Quit
      messaging().onNotificationOpenedApp

  click notifee notification when
    Active
    Background
    Quit
      notifee.onForegroundEvent(type is 1)

--

post https://fcm.googleapis.com/fcm/send and body:

{
    "to": "...",
    "notification": {
        "title": "title",
        "body": "content",
        "badge": 2
    },
    "data": {
        "type": 19
    },
    "priority": "high",
    "content_available": true
}

--

here is my code

index.js

โš ๏ธ update

import { AppRegistry } from 'react-native';
import App from './App';
import messaging from '@react-native-firebase/messaging';
import { name as appName } from './app.json';

messaging().setBackgroundMessageHandler(async (e) => {
  console.log('setBackgroundMessageHandler ๐ŸŒˆ');
});

AppRegistry.registerComponent(appName, () => App);

App.js

import React from 'react';
import 'react-native-gesture-handler';
// Redux
import { Provider } from 'react-redux';
import store from './app/redux'
// Plugin
import RNBootSplash from "react-native-bootsplash";
import { SafeAreaProvider } from 'react-native-safe-area-context';
import { NavigationContainer } from '@react-navigation/native';
// Component
import RootStack from '@app/router/RootStack';

const App: () => Node = () => {
  return (
    <Provider store={store}>
      <SafeAreaProvider>
        <NavigationContainer
          onReady={() => {
            RNBootSplash.hide();
          }}
        >
          <RootStack />
        </NavigationContainer>
      </SafeAreaProvider>
    </Provider>
  )
};

export default App;

RootStack.js

import React from 'react';

// Navigation
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';

// Hook
import useMessageHandler from '@hook/useMessageHandler';

const Tab = createBottomTabNavigator();

export default function RootStack(props) {
  useMessageHandler();

  return (
    <Tab.Navigator
      initialRouteName="Init"
      screenOptions={{
        headerShown: false,
      }}
      tabBar={() => null}
    >
      ...
    </Tab.Navigator>
  );
}

useMessageHandler.js

โš ๏ธ update

import { useState, useEffect } from 'react';
import messaging from '@react-native-firebase/messaging';
import notifee, { AndroidStyle } from '@notifee/react-native';

function useMessageHandler() {
  const [channelId, setChannelId] = useState('channel');
  const [enabled, setEnabled] = useState(false)

  messaging().setBackgroundMessageHandler(async (e) => {
    console.log('setBackgroundMessageHandler ๐ŸŸ')
  });

  const requestUserPermission = async () => {
    const authStatus = await messaging().requestPermission({ badge: true, announcement: true });
    const currentEnabled = authStatus === messaging.AuthorizationStatus.AUTHORIZED || authStatus === messaging.AuthorizationStatus.PROVISIONAL;
    messaging().setAutoInitEnabled(true);

    setEnabled(currentEnabled)
  };

  useEffect(() => {
    requestUserPermission();
    messaging().registerDeviceForRemoteMessages();
    const subscribeNotifeeChannel = async () => {
      const notifeeChannelId = await notifee.createChannel({
        id: 'channel',
        name: 'Channel',
        sound: 'default',
      });
      setChannelId(notifeeChannelId);
    }
    subscribeNotifeeChannel()

    messaging()
      .subscribeToTopic('broadcast')
      .then(() => {
        // ...
      })

    messaging().onNotificationOpenedApp(async e => {
      // ...
    });

  messaging().getInitialNotification(async (e) => {
      // ...
  });
    messaging().onMessage(async (remoteMessage) => {
      const {
        data = {},
        notification = {},
      } = remoteMessage;
      const { title = '', body = '', ios = {}, android = {} } = notification ?? {};

      await notifee?.displayNotification({
        title,
        body,
        data,
        ios,
        android: {
          ...android,
          channelId,
          smallIcon: 'ic_notification',
          showTimestamp: true,
          color: '#fdae9f',
          style: {
            type: AndroidStyle.INBOX,
            lines: body.split('\n'),
          },
          pressAction: {
            id: 'default',
          },
        },
      });
    });

    async function handleGroundEvent(e = {}, from = '') {
      // ...
    }

    notifee.onBackgroundEvent(async (e) => handleGroundEvent(e, 'onBackgroundEvent'));
    notifee.onForegroundEvent(async (e) => handleGroundEvent(e, 'onForegroundEvent'));

  }, []);

  useEffect(() => {
    if (enabled) {
      messaging().getToken().then(() => { /* ... */ })
    }
  }, [enabled])
}

export default useMessageHandler;

Project Files

Javascript

Click To Expand

#### `package.json` ```json "react": "17.0.2", "react-native": "0.68.0", "react-native-bootsplash": "^4.1.4", "@react-native-firebase/app": "^14.7.0", "@react-native-firebase/messaging": "^14.7.0", "@notifee/react-native": "^5.1.0", "@react-navigation/bottom-tabs": "^6.0.7", "@react-navigation/native": "^6.0.4", "@react-navigation/stack": "^6.0.9", "react-native-safe-area-context": "^3.3.2", "react-native-gesture-handler": "^1.10.3", "react-redux": "^7.2.5", "redux": "^4.1.1" ``` #### `firebase.json` for react-native-firebase v6 ```json # N/A ```

iOS

Click To Expand

#### `ios/Podfile` - [ ] I'm not using Pods - [x] I'm using Pods and my Podfile looks like: ```ruby require_relative '../node_modules/react-native/scripts/react_native_pods' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' platform :ios, '11.0' install! 'cocoapods', :deterministic_uuids => false target 'BabyApp' do config = use_native_modules! # Flags change depending on the env values. flags = get_default_flags() use_react_native!( :path => config[:reactNativePath], # to enable hermes on iOS, change `false` to `true` and then install pods :hermes_enabled => flags[:hermes_enabled], :fabric_enabled => flags[:fabric_enabled], # An absolute path to your application root. :app_path => "#{Pod::Config.instance.installation_root}/.." ) target 'BabyAppTests' do inherit! :complete # Pods for testing end # Enables Flipper. # # Note that if you have use_frameworks! enabled, Flipper will not work and # you should disable the next line. use_flipper!() post_install do |installer| react_native_post_install(installer) __apply_Xcode_12_5_M1_post_install_workaround(installer) end end ``` #### `AppDelegate.m` ```objc #import "AppDelegate.h" #import #import #import #import "RNBootSplash.h" // react-native-bootsplash #import // Firebase #ifdef FB_SONARKIT_ENABLED #import #import #import #import #import #import static void InitializeFlipper(UIApplication *application) { FlipperClient *client = [FlipperClient sharedClient]; SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults]; [client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]]; [client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]]; [client addPlugin:[FlipperKitReactPlugin new]]; [client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]]; [client start]; } #endif @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [FIRApp configure]; // Firebase #ifdef FB_SONARKIT_ENABLED InitializeFlipper(application); #endif RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge moduleName:@"BabyApp" initialProperties:nil]; if (@available(iOS 13.0, *)) { rootView.backgroundColor = [UIColor systemBackgroundColor]; } else { rootView.backgroundColor = [UIColor whiteColor]; } self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; UIViewController *rootViewController = [UIViewController new]; rootViewController.view = rootView; self.window.rootViewController = rootViewController; [self.window makeKeyAndVisible]; [RNBootSplash initWithStoryboard:@"LaunchScreen" rootView:rootView]; // react-native-bootsplash return YES; } - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge { #if DEBUG return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; #else return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; #endif } @end ```


Android

Click To Expand

#### Have you converted to AndroidX? - [ ] my application is an AndroidX application? - [ ] I am using `android/gradle.settings` `jetifier=true` for Android compatibility? - [ ] I am using the NPM package `jetifier` for react-native compatibility? #### `android/build.gradle` ```groovy // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext { buildToolsVersion = "31.0.0" minSdkVersion = 21 compileSdkVersion = 31 targetSdkVersion = 31 ndkVersion = "21.4.7075529" } repositories { google() // jcenter() mavenCentral() } dependencies { classpath("com.android.tools.build:gradle:7.0.4") classpath 'com.google.gms:google-services:4.3.10' classpath("com.facebook.react:react-native-gradle-plugin") classpath("de.undercouch:gradle-download-task:4.1.2") // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { maven { // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm url("$rootDir/../node_modules/react-native/android") } maven { // Android JSC is installed from npm url("$rootDir/../node_modules/jsc-android/dist") } // notifee maven { url "$rootDir/../node_modules/@notifee/react-native/android/libs" } mavenCentral { // We don't want to fetch react-native from Maven Central as there are // older versions over there. content { excludeGroup "com.facebook.react" } } google() mavenLocal() // jcenter() maven { url 'https://www.jitpack.io' } } } ``` #### `android/app/build.gradle` โš ๏ธ update ```groovy apply plugin: "com.android.application" apply plugin: 'com.google.gms.google-services' import com.android.build.OutputFile /** * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets * and bundleReleaseJsAndAssets). * These basically call `react-native bundle` with the correct arguments during the Android build * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the * bundle directly from the development server. Below you can see all the possible configurations * and their defaults. If you decide to add a configuration block, make sure to add it before the * `apply from: "../../node_modules/react-native/react.gradle"` line. * * project.ext.react = [ * // the name of the generated asset file containing your JS bundle * bundleAssetName: "index.android.bundle", * * // the entry file for bundle generation. If none specified and * // "index.android.js" exists, it will be used. Otherwise "index.js" is * // default. Can be overridden with ENTRY_FILE environment variable. * entryFile: "index.android.js", * * // https://reactnative.dev/docs/performance#enable-the-ram-format * bundleCommand: "ram-bundle", * * // whether to bundle JS and assets in debug mode * bundleInDebug: false, * * // whether to bundle JS and assets in release mode * bundleInRelease: true, * * // whether to bundle JS and assets in another build variant (if configured). * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants * // The configuration property can be in the following formats * // 'bundleIn${productFlavor}${buildType}' * // 'bundleIn${buildType}' * // bundleInFreeDebug: true, * // bundleInPaidRelease: true, * // bundleInBeta: true, * * // whether to disable dev mode in custom build variants (by default only disabled in release) * // for example: to disable dev mode in the staging build type (if configured) * devDisabledInStaging: true, * // The configuration property can be in the following formats * // 'devDisabledIn${productFlavor}${buildType}' * // 'devDisabledIn${buildType}' * * // the root of your project, i.e. where "package.json" lives * root: "../../", * * // where to put the JS bundle asset in debug mode * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", * * // where to put the JS bundle asset in release mode * jsBundleDirRelease: "$buildDir/intermediates/assets/release", * * // where to put drawable resources / React Native assets, e.g. the ones you use via * // require('./image.png')), in debug mode * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", * * // where to put drawable resources / React Native assets, e.g. the ones you use via * // require('./image.png')), in release mode * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", * * // by default the gradle tasks are skipped if none of the JS files or assets change; this means * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to * // date; if you have any other folders that you want to ignore for performance reasons (gradle * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ * // for example, you might want to remove it from here. * inputExcludes: ["android/**", "ios/**"], * * // override which node gets called and with what additional arguments * nodeExecutableAndArgs: ["node"], * * // supply additional arguments to the packager * extraPackagerArgs: [] * ] */ project.ext.react = [ enableHermes: true, // clean and rebuild if changing ] apply from: "../../node_modules/react-native/react.gradle" /** * Set this to true to create two separate APKs instead of one: * - An APK that only works on ARM devices * - An APK that only works on x86 devices * The advantage is the size of the APK is reduced by about 4MB. * Upload all the APKs to the Play Store and people will download * the correct one based on the CPU architecture of their device. */ def enableSeparateBuildPerCPUArchitecture = false /** * Run Proguard to shrink the Java bytecode in release builds. */ def enableProguardInReleaseBuilds = false /** * The preferred build flavor of JavaScriptCore. * * For example, to use the international variant, you can use: * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` * * The international variant includes ICU i18n library and necessary data * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that * give correct results when using with locales other than en-US. Note that * this variant is about 6MiB larger per architecture than default. */ def jscFlavor = 'org.webkit:android-jsc:+' /** * Whether to enable the Hermes VM. * * This should be set on project.ext.react and that value will be read here. If it is not set * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode * and the benefits of using Hermes will therefore be sharply reduced. */ def enableHermes = project.ext.react.get("enableHermes", false); android { ndkVersion rootProject.ext.ndkVersion compileSdkVersion rootProject.ext.compileSdkVersion // react-native-pdf packagingOptions { pickFirst 'lib/x86/libc++_shared.so' pickFirst 'lib/x86_64/libjsc.so' pickFirst 'lib/arm64-v8a/libjsc.so' pickFirst 'lib/arm64-v8a/libc++_shared.so' pickFirst 'lib/x86_64/libc++_shared.so' pickFirst 'lib/armeabi-v7a/libc++_shared.so' } defaultConfig { applicationId "..." minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 1 versionName "1.0" } splits { abi { reset() enable enableSeparateBuildPerCPUArchitecture universalApk false // If true, also generate a universal APK include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" } } signingConfigs { debug { storeFile file('debug.keystore') storePassword 'android' keyAlias 'androiddebugkey' keyPassword 'android' } } buildTypes { debug { signingConfig signingConfigs.debug } release { // Caution! In production, you need to generate your own keystore file. // see https://reactnative.dev/docs/signed-apk-android. signingConfig signingConfigs.debug minifyEnabled enableProguardInReleaseBuilds proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" } } // applicationVariants are e.g. debug, release applicationVariants.all { variant -> variant.outputs.each { output -> // For each separate APK per architecture, set a unique version code as described here: // https://developer.android.com/studio/build/configure-apk-splits.html // Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc. def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4] def abi = output.getFilter(OutputFile.ABI) if (abi != null) { // null for the universal-debug, universal-release variants output.versionCodeOverride = defaultConfig.versionCode * 1000 + versionCodes.get(abi) } } } } dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) //noinspection GradleDynamicVersion implementation 'com.google.firebase:firebase-messaging' implementation 'com.google.firebase:firebase-analytics' implementation 'com.android.support:multidex:2.0.1' implementation("com.google.firebase:firebase-iid") // https://github.com/mixpanel/mixpanel-android/issues/744#issuecomment-852448041 implementation "com.facebook.react:react-native:+" // From node_modules implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" implementation "androidx.core:core-splashscreen:1.0.0-beta01" // react-native-bootsplash debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") { exclude group:'com.facebook.fbjni' } debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") { exclude group:'com.facebook.flipper' exclude group:'com.squareup.okhttp3', module:'okhttp' } debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") { exclude group:'com.facebook.flipper' } if (enableHermes) { def hermesPath = "../../node_modules/hermes-engine/android/"; debugImplementation files(hermesPath + "hermes-debug.aar") releaseImplementation files(hermesPath + "hermes-release.aar") } else { implementation jscFlavor } } // Run this once to be able to run the application with BUCK // puts all compile dependencies into folder libs for BUCK to use task copyDownloadableDepsToLibs(type: Copy) { from configurations.implementation into 'libs' } apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) ``` #### `android/settings.gradle` ```groovy rootProject.name = 'BabyApp' apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) include ':app' includeBuild('../node_modules/react-native-gradle-plugin') if (settings.hasProperty("newArchEnabled") && settings.newArchEnabled == "true") { include(":ReactAndroid") project(":ReactAndroid").projectDir = file('../node_modules/react-native/ReactAndroid') } ``` #### `MainApplication.java` ```java package com.babyapp; import android.app.Application; import android.content.Context; import com.facebook.react.PackageList; import com.facebook.react.ReactApplication; import com.facebook.react.ReactInstanceManager; import com.facebook.react.ReactNativeHost; import com.facebook.react.ReactPackage; import com.facebook.soloader.SoLoader; import com.facebook.react.bridge.JSIModulePackage; // react-native-reanimated import com.swmansion.reanimated.ReanimatedJSIModulePackage; // react-native-reanimated import java.lang.reflect.InvocationTargetException; import java.util.List; public class MainApplication extends Application implements ReactApplication { private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { @Override public boolean getUseDeveloperSupport() { return BuildConfig.DEBUG; } @Override protected List getPackages() { @SuppressWarnings("UnnecessaryLocalVariable") List packages = new PackageList(this).getPackages(); // Packages that cannot be autolinked yet can be added manually here, for example: // packages.add(new MyReactNativePackage()); return packages; } @Override protected String getJSMainModuleName() { return "index"; } // react-native-reanimated @Override protected JSIModulePackage getJSIModulePackage() { return new ReanimatedJSIModulePackage(); // <- add } }; @Override public ReactNativeHost getReactNativeHost() { return mReactNativeHost; } @Override public void onCreate() { super.onCreate(); SoLoader.init(this, /* native exopackage */ false); initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); } /** * Loads Flipper in React Native templates. Call this in the onCreate method with something like * initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); * * @param context * @param reactInstanceManager */ private static void initializeFlipper( Context context, ReactInstanceManager reactInstanceManager) { if (BuildConfig.DEBUG) { try { /* We use reflection here to pick up the class that initializes Flipper, since Flipper library is not available in release mode */ Class aClass = Class.forName("com.babyapp.ReactNativeFlipper"); aClass .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class) .invoke(null, context, reactInstanceManager); } catch (ClassNotFoundException e) { e.printStackTrace(); } catch (NoSuchMethodException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } catch (InvocationTargetException e) { e.printStackTrace(); } } } } ``` #### `AndroidManifest.xml` ```xml ```


Environment

Click To Expand

**`react-native info` output:** โš ๏ธ update ``` System: OS: macOS 12.3.1 CPU: (8) x64 Apple M1 Memory: 26.10 MB / 16.00 GB Shell: 5.8 - /bin/zsh Binaries: Node: 16.10.0 - ~/.nvm/versions/node/v16.10.0/bin/node Yarn: 1.22.11 - ~/.nvm/versions/node/v16.10.0/bin/yarn npm: 7.24.0 - ~/.nvm/versions/node/v16.10.0/bin/npm Watchman: Not Found Managers: CocoaPods: 1.11.3 - /usr/local/bin/pod SDKs: iOS SDK: Platforms: DriverKit 21.4, iOS 15.4, macOS 12.3, tvOS 15.4, watchOS 8.5 Android SDK: API Levels: 28, 29, 30, 31 Build Tools: 29.0.1, 29.0.2, 29.0.3, 30.0.2, 30.0.3, 31.0.0 System Images: android-29 | Google APIs Intel x86 Atom, android-30 | Google APIs ARM 64 v8a, android-30 | Google APIs Intel x86 Atom, android-31 | Google APIs ARM 64 v8a, android-31 | Google APIs Intel x86 Atom_64 Android NDK: 22.1.7171670 IDEs: Android Studio: 2021.1 AI-211.7628.21.2111.8309675 Xcode: 13.3/13E113 - /usr/bin/xcodebuild Languages: Java: javac 17 - /usr/bin/javac npmPackages: @react-native-community/cli: Not Found react: 17.0.2 => 17.0.2 react-native: 0.68.0 => 0.68.0 react-native-macos: Not Found npmGlobalPackages: *react-native*: Not Found ``` - **Platform that you're experiencing the issue on**: - [ ] iOS - [ ] Android - [ ] **iOS** but have not tested behavior on Android - [ ] **Android** but have not tested behavior on iOS - [x] Both - **`react-native-firebase` version you're using that has this issue:** - `14.7.0` - **`Firebase` module(s) you're using that has the issue:** - `e.g. Instance ID` - **Are you using `TypeScript`?** - `N`


mikehardy commented 2 years ago

๐Ÿค” On a first scan, this is a really complete issue, so thank you very much for that, it does help

I see you are specifying BoM 29.1.0 on the Android side and I'm not sure why you would do that? I think you should either remove that line or if you are overriding, override forward to 29.3.0 (current). I do not think this will actually impact things though.

Can you tell me what "quit" state means to you? There is a lot of confusion among mobile developers about app states, specifically when an app is not visible, and at the technical level there are actually a couple different states which I normally think of as "force quit" (or "killed", where the user uses app chooser to flick the app away / dismiss it or they kill it via a task manager) and just regular "quit" (where the OS retires the app or the phone started and app hasn't been started yet). They are actually distinct, but they shouldn't affect this since the user is starting the app. Might have an effect though. So the steps taken to quit the app might be interesting.

What do you see in adb logcat or xcode console when this happens? What exact devices are being used to reproduce this (device type or emulator, and operating system version)? What happens if you reach in to node_modules and add logging statements to the javascript and before/after the relevant Java or Objective-C code to see how the flow is going ?

Jeeying commented 2 years ago

I update my issue, after I found lost this step Enable Background Modes

-- I remove bom:29.1.0 that line, nothing impact ๐Ÿ‘

--

device state that I think

Click To Expand Android ใ€€Active ใ€€Background ใ€€Quit iOS ใ€€Active ใ€€Background ใ€€Quit

-- log

Android
  send fcm, what be trigger
    Active
      messaging().onMessage
      notifee.onForegroundEvent(type is 3)
    Background
      messaging().setBackgroundMessageHandler ๐ŸŸ
    Quit
      messaging().setBackgroundMessageHandler ๐ŸŒˆ

  when app is background, reveived fcm notification, chick notification when app is..
    Active
    Background
      messaging().onNotificationOpenedApp
    Quit
      not thing โŒ
Click To Expand 2022-04-12 10:25:17.169 15654-15654/? I/owdesign.pbfap: Late-enabling -Xcheck:jni 2022-04-12 10:25:17.183 15654-15654/? I/owdesign.pbfap: Unquickening 12 vdex files! 2022-04-12 10:25:17.409 15654-15654/tw.com.howdesign.pbfapp D/NetworkSecurityConfig: No Network Security Config specified, using platform default 2022-04-12 10:25:17.410 15654-15654/tw.com.howdesign.pbfapp D/NetworkSecurityConfig: No Network Security Config specified, using platform default 2022-04-12 10:25:17.424 15654-15654/tw.com.howdesign.pbfapp I/FirebaseApp: Device unlocked: initializing all Firebase APIs for app [DEFAULT] 2022-04-12 10:25:17.452 15654-15654/tw.com.howdesign.pbfapp I/FirebaseInitProvider: FirebaseApp initialization successful 2022-04-12 10:25:17.453 15654-15654/tw.com.howdesign.pbfapp D/ReactNativeFirebaseApp: received application context. 2022-04-12 10:25:17.455 15654-15654/tw.com.howdesign.pbfapp D/WM-WrkMgrInitializer: Initializing WorkManager with default configuration. 2022-04-12 10:25:17.464 15654-15684/tw.com.howdesign.pbfapp I/DynamiteModule: Considering local module com.google.android.gms.measurement.dynamite:64 and remote module com.google.android.gms.measurement.dynamite:67 2022-04-12 10:25:17.464 15654-15684/tw.com.howdesign.pbfapp I/DynamiteModule: Selected remote version of com.google.android.gms.measurement.dynamite, version >= 67 2022-04-12 10:25:17.464 15654-15684/tw.com.howdesign.pbfapp V/DynamiteModule: Dynamite loader version >= 2, using loadModule2NoCrashUtils 2022-04-12 10:25:17.468 15654-15654/tw.com.howdesign.pbfapp I/TetheringManager: registerTetheringEventCallback:tw.com.howdesign.pbfapp 2022-04-12 10:25:17.479 15654-15684/tw.com.howdesign.pbfapp I/DynamiteLoaderV2Impl: [71] com.google.android.gms.measurement.dynamite 2022-04-12 10:25:17.482 15654-15654/tw.com.howdesign.pbfapp D/NOTIFEE: (context): received application context 2022-04-12 10:25:17.496 15654-15654/tw.com.howdesign.pbfapp V/fb-UnpackingSoSource: locked dso store /data/user/0/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:25:17.496 15654-15654/tw.com.howdesign.pbfapp I/fb-UnpackingSoSource: dso store is up-to-date: /data/user/0/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:25:17.496 15654-15654/tw.com.howdesign.pbfapp V/fb-UnpackingSoSource: releasing dso store lock for /data/user/0/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:25:17.510 15654-15654/tw.com.howdesign.pbfapp D/SoLoader: libjscexecutor.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:25:17.510 15654-15654/tw.com.howdesign.pbfapp D/SoLoader: libjscexecutor.so not found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:25:17.510 15654-15654/tw.com.howdesign.pbfapp D/SoLoader: libjscexecutor.so not found on /system/lib64 2022-04-12 10:25:17.510 15654-15654/tw.com.howdesign.pbfapp D/SoLoader: libjscexecutor.so not found on /vendor/lib64 2022-04-12 10:25:17.512 15654-15654/tw.com.howdesign.pbfapp E/SoLoader: couldn't find DSO to load: libjscexecutor.so SoSource 0: com.facebook.soloader.ApkSoSource[root = /data/data/tw.com.howdesign.pbfapp/lib-main flags = 1] SoSource 1: com.facebook.soloader.DirectorySoSource[root = /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 flags = 0] SoSource 2: com.facebook.soloader.DirectorySoSource[root = /system/lib64 flags = 2] SoSource 3: com.facebook.soloader.DirectorySoSource[root = /vendor/lib64 flags = 2] Native lib dir: /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 result: 0 2022-04-12 10:25:17.512 15654-15654/tw.com.howdesign.pbfapp D/SoLoader: libhermes.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:25:17.512 15654-15654/tw.com.howdesign.pbfapp D/SoLoader: libhermes.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:25:17.512 15654-15654/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libhermes.so 2022-04-12 10:25:17.516 15654-15654/tw.com.howdesign.pbfapp D/SoLoader: libhermes-executor-debug.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:25:17.516 15654-15654/tw.com.howdesign.pbfapp D/SoLoader: libhermes-executor-debug.so not found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:25:17.516 15654-15654/tw.com.howdesign.pbfapp D/SoLoader: libhermes-executor-debug.so not found on /system/lib64 2022-04-12 10:25:17.516 15654-15654/tw.com.howdesign.pbfapp D/SoLoader: libhermes-executor-debug.so not found on /vendor/lib64 2022-04-12 10:25:17.517 15654-15654/tw.com.howdesign.pbfapp E/SoLoader: couldn't find DSO to load: libhermes-executor-debug.so SoSource 0: com.facebook.soloader.ApkSoSource[root = /data/data/tw.com.howdesign.pbfapp/lib-main flags = 1] SoSource 1: com.facebook.soloader.DirectorySoSource[root = /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 flags = 0] SoSource 2: com.facebook.soloader.DirectorySoSource[root = /system/lib64 flags = 2] SoSource 3: com.facebook.soloader.DirectorySoSource[root = /vendor/lib64 flags = 2] Native lib dir: /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 result: 0 2022-04-12 10:25:17.517 15654-15654/tw.com.howdesign.pbfapp D/SoLoader: libhermes-executor-release.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:25:17.517 15654-15654/tw.com.howdesign.pbfapp D/SoLoader: libhermes-executor-release.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:25:17.517 15654-15654/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libhermes-executor-release.so 2022-04-12 10:25:17.542 15654-15688/tw.com.howdesign.pbfapp I/FA: App measurement initialized, version: 58022 2022-04-12 10:25:17.542 15654-15688/tw.com.howdesign.pbfapp I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE 2022-04-12 10:25:17.542 15654-15688/tw.com.howdesign.pbfapp I/FA: To enable faster debug mode event logging run: adb shell setprop debug.firebase.analytics.app tw.com.howdesign.pbfapp 2022-04-12 10:25:17.612 15654-15654/tw.com.howdesign.pbfapp W/System.err: java.lang.ClassNotFoundException: com.babyapp.ReactNativeFlipper 2022-04-12 10:25:17.612 15654-15654/tw.com.howdesign.pbfapp W/System.err: at java.lang.Class.classForName(Native Method) 2022-04-12 10:25:17.612 15654-15654/tw.com.howdesign.pbfapp W/System.err: at java.lang.Class.forName(Class.java:454) 2022-04-12 10:25:17.612 15654-15654/tw.com.howdesign.pbfapp W/System.err: at java.lang.Class.forName(Class.java:379) 2022-04-12 10:25:17.612 15654-15654/tw.com.howdesign.pbfapp W/System.err: at com.babyapp.MainApplication.initializeFlipper(MainApplication.java:73) 2022-04-12 10:25:17.612 15654-15654/tw.com.howdesign.pbfapp W/System.err: at com.babyapp.MainApplication.onCreate(MainApplication.java:55) 2022-04-12 10:25:17.612 15654-15654/tw.com.howdesign.pbfapp W/System.err: at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1192) 2022-04-12 10:25:17.612 15654-15654/tw.com.howdesign.pbfapp W/System.err: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6715) 2022-04-12 10:25:17.612 15654-15654/tw.com.howdesign.pbfapp W/System.err: at android.app.ActivityThread.access$1300(ActivityThread.java:237) 2022-04-12 10:25:17.612 15654-15654/tw.com.howdesign.pbfapp W/System.err: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1913) 2022-04-12 10:25:17.612 15654-15654/tw.com.howdesign.pbfapp W/System.err: at android.os.Handler.dispatchMessage(Handler.java:106) 2022-04-12 10:25:17.612 15654-15654/tw.com.howdesign.pbfapp W/System.err: at android.os.Looper.loop(Looper.java:223) 2022-04-12 10:25:17.613 15654-15654/tw.com.howdesign.pbfapp W/System.err: at android.app.ActivityThread.main(ActivityThread.java:7660) 2022-04-12 10:25:17.613 15654-15654/tw.com.howdesign.pbfapp W/System.err: at java.lang.reflect.Method.invoke(Native Method) 2022-04-12 10:25:17.613 15654-15654/tw.com.howdesign.pbfapp W/System.err: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592) 2022-04-12 10:25:17.613 15654-15654/tw.com.howdesign.pbfapp W/System.err: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947) 2022-04-12 10:25:17.613 15654-15654/tw.com.howdesign.pbfapp W/System.err: Caused by: java.lang.ClassNotFoundException: Didn't find class "com.babyapp.ReactNativeFlipper" on path: DexPathList[[zip file "/data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/base.apk"],nativeLibraryDirectories=[/data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64, /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/base.apk!/lib/arm64-v8a, /system/lib64, /system_ext/lib64]] 2022-04-12 10:25:17.613 15654-15654/tw.com.howdesign.pbfapp W/System.err: at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:207) 2022-04-12 10:25:17.613 15654-15654/tw.com.howdesign.pbfapp W/System.err: at java.lang.ClassLoader.loadClass(ClassLoader.java:379) 2022-04-12 10:25:17.613 15654-15654/tw.com.howdesign.pbfapp W/System.err: at java.lang.ClassLoader.loadClass(ClassLoader.java:312) 2022-04-12 10:25:17.613 15654-15654/tw.com.howdesign.pbfapp W/System.err: ... 15 more 2022-04-12 10:25:17.653 15654-15709/tw.com.howdesign.pbfapp W/unknown:InspectorPackagerConnection: Couldn't connect to packager, will silently retry 2022-04-12 10:25:17.653 15654-15708/tw.com.howdesign.pbfapp W/unknown:ReconnectingWebSocket: Couldn't connect to "ws://localhost:8081/message?device=Pixel%204%20-%2011%20-%20API%2030&app=tw.com.howdesign.pbfapp&clientid=BridgeDevSupportManager", will silently retry 2022-04-12 10:25:17.684 15654-15688/tw.com.howdesign.pbfapp I/FA: Tag Manager is not found and thus will not be used 2022-04-12 10:25:17.708 15654-15654/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (greylist, reflection, allowed) 2022-04-12 10:25:17.708 15654-15654/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (greylist, reflection, allowed) 2022-04-12 10:25:17.717 15654-15712/tw.com.howdesign.pbfapp W/unknown:ReactNative: The packager does not seem to be running as we got an IOException requesting its status: CLEARTEXT communication to localhost not permitted by network security policy 2022-04-12 10:25:17.730 15654-15713/tw.com.howdesign.pbfapp D/SoLoader: libfbjni.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:25:17.730 15654-15713/tw.com.howdesign.pbfapp D/SoLoader: libfbjni.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:25:17.730 15654-15713/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libfbjni.so 2022-04-12 10:25:17.730 15654-15654/tw.com.howdesign.pbfapp W/unknown:ReactNative: Packager connection already open, nooping. 2022-04-12 10:25:17.741 15654-15705/tw.com.howdesign.pbfapp I/AdrenoGLES-0: QUALCOMM build : 85da404, I46ff5fc46f Build Date : 11/30/20 OpenGL ES Shader Compiler Version: EV031.31.04.01 Local Branch : promo490_3_Google Remote Branch : Remote Branch : Reconstruct Branch : 2022-04-12 10:25:17.741 15654-15705/tw.com.howdesign.pbfapp I/AdrenoGLES-0: Build Config : S P 10.0.4 AArch64 2022-04-12 10:25:17.741 15654-15705/tw.com.howdesign.pbfapp I/AdrenoGLES-0: Driver Path : /vendor/lib64/egl/libGLESv2_adreno.so 2022-04-12 10:25:17.746 15654-15705/tw.com.howdesign.pbfapp I/AdrenoGLES-0: PFP: 0x016ee189, ME: 0x00000000 2022-04-12 10:25:17.747 15654-15705/tw.com.howdesign.pbfapp W/AdrenoUtils: : Failed to open /sys/class/kgsl/kgsl-3d0/gpu_model 2022-04-12 10:25:17.747 15654-15705/tw.com.howdesign.pbfapp W/AdrenoUtils: : Failed to read chip ID from gpu_model. Fallback to use the GSL path 2022-04-12 10:25:17.784 15654-15713/tw.com.howdesign.pbfapp I/TIME4A: Starting Time4A (v4.8-2021a published on 2021-03-27) 2022-04-12 10:25:17.784 15654-15713/tw.com.howdesign.pbfapp I/TIME4A: Main-Thread consumed in ms: 35 2022-04-12 10:25:17.798 15654-15713/tw.com.howdesign.pbfapp D/SoLoader: libreactnativejni.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:25:17.798 15654-15713/tw.com.howdesign.pbfapp D/SoLoader: libreactnativejni.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:25:17.798 15654-15713/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libreactnativejni.so 2022-04-12 10:25:17.798 15654-15654/tw.com.howdesign.pbfapp D/InstallReferrerState: OK 2022-04-12 10:25:17.808 15654-15713/tw.com.howdesign.pbfapp W/unknown:ReactContext: initializeMessageQueueThreads() is called. 2022-04-12 10:25:17.837 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.drawer.ReactDrawerLayoutManager 2022-04-12 10:25:17.840 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.uimanager.LayoutShadowNode 2022-04-12 10:25:17.842 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollViewManager 2022-04-12 10:25:17.844 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollContainerViewManager 2022-04-12 10:25:17.845 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ReactProgressBarViewManager 2022-04-12 10:25:17.845 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ProgressBarShadowNode 2022-04-12 10:25:17.846 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactScrollViewManager 2022-04-12 10:25:17.847 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager 2022-04-12 10:25:17.849 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager$ReactSliderShadowNode 2022-04-12 10:25:17.849 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager 2022-04-12 10:25:17.850 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager$ReactSwitchShadowNode 2022-04-12 10:25:17.850 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.swiperefresh.SwipeRefreshLayoutManager 2022-04-12 10:25:17.851 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageViewManager 2022-04-12 10:25:17.851 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageShadowNode 2022-04-12 10:25:17.852 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.image.ReactImageManager 2022-04-12 10:25:17.853 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ReactModalHostManager 2022-04-12 10:25:17.854 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ModalHostShadowNode 2022-04-12 10:25:17.854 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextManager 2022-04-12 10:25:17.854 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextShadowNode 2022-04-12 10:25:17.855 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputManager 2022-04-12 10:25:17.857 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputShadowNode 2022-04-12 10:25:17.858 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextViewManager 2022-04-12 10:25:17.859 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextShadowNode 2022-04-12 10:25:17.860 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.view.ReactViewManager 2022-04-12 10:25:17.861 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextViewManager 2022-04-12 10:25:17.861 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextShadowNode 2022-04-12 10:25:17.861 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.unimplementedview.ReactUnimplementedViewManager 2022-04-12 10:25:17.862 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.checkbox.ReactCheckBoxManager 2022-04-12 10:25:17.862 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.picker.ReactDialogPickerManager 2022-04-12 10:25:17.863 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.picker.ReactPickerShadowNode 2022-04-12 10:25:17.863 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.picker.ReactDropdownPickerManager 2022-04-12 10:25:17.863 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.henninghall.date_picker.DatePickerManager 2022-04-12 10:25:17.864 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.gesturehandler.react.RNGestureHandlerRootViewManager 2022-04-12 10:25:17.864 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.gesturehandler.react.RNGestureHandlerButtonViewManager 2022-04-12 10:25:17.865 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.BV.LinearGradient.LinearGradientManager 2022-04-12 10:25:17.865 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaProviderManager 2022-04-12 10:25:17.865 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaViewManager 2022-04-12 10:25:17.866 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaViewShadowNode 2022-04-12 10:25:17.866 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenContainerViewManager 2022-04-12 10:25:17.867 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenViewManager 2022-04-12 10:25:17.867 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackViewManager 2022-04-12 10:25:17.867 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackHeaderConfigViewManager 2022-04-12 10:25:17.868 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackHeaderSubviewManager 2022-04-12 10:25:17.868 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$GroupViewManager 2022-04-12 10:25:17.869 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$RenderableShadowNode 2022-04-12 10:25:17.870 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$PathViewManager 2022-04-12 10:25:17.870 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$CircleViewManager 2022-04-12 10:25:17.871 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$EllipseViewManager 2022-04-12 10:25:17.871 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$LineViewManager 2022-04-12 10:25:17.871 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$RectViewManager 2022-04-12 10:25:17.871 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TextViewManager 2022-04-12 10:25:17.872 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TSpanViewManager 2022-04-12 10:25:17.872 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TextPathViewManager 2022-04-12 10:25:17.872 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ImageViewManager 2022-04-12 10:25:17.873 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ClipPathViewManager 2022-04-12 10:25:17.873 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$DefsViewManager 2022-04-12 10:25:17.873 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$UseViewManager 2022-04-12 10:25:17.874 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$SymbolManager 2022-04-12 10:25:17.874 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$LinearGradientManager 2022-04-12 10:25:17.874 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$RadialGradientManager 2022-04-12 10:25:17.875 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$PatternManager 2022-04-12 10:25:17.876 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$MaskManager 2022-04-12 10:25:17.876 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ForeignObjectManager 2022-04-12 10:25:17.876 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$MarkerManager 2022-04-12 10:25:17.877 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.SvgViewManager 2022-04-12 10:25:17.877 15654-15713/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.webview.RNCWebViewManager 2022-04-12 10:25:17.883 15654-15713/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden field Ljava/lang/reflect/Field;->accessFlags:I (greylist, reflection, allowed) 2022-04-12 10:25:17.887 15654-15713/tw.com.howdesign.pbfapp D/SoLoader: libturbomodulejsijni.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:25:17.887 15654-15713/tw.com.howdesign.pbfapp D/SoLoader: libturbomodulejsijni.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:25:17.887 15654-15713/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libturbomodulejsijni.so 2022-04-12 10:25:17.912 15654-15718/tw.com.howdesign.pbfapp W/unknown:ReactContext: initializeMessageQueueThreads() is called. 2022-04-12 10:25:17.914 15654-15718/tw.com.howdesign.pbfapp D/SoLoader: libyoga.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:25:17.914 15654-15718/tw.com.howdesign.pbfapp D/SoLoader: libyoga.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:25:17.914 15654-15718/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libyoga.so 2022-04-12 10:25:17.922 15654-15654/tw.com.howdesign.pbfapp W/unknown:ReactNative: Packager connection already open, nooping. 2022-04-12 10:25:17.982 15654-15717/tw.com.howdesign.pbfapp D/SoLoader: libreactnativeblob.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:25:17.982 15654-15717/tw.com.howdesign.pbfapp D/SoLoader: libreactnativeblob.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:25:17.982 15654-15717/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libreactnativeblob.so 2022-04-12 10:25:17.993 15654-15717/tw.com.howdesign.pbfapp W/ReactNativeJS: ViewPropTypes will be removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types'. 2022-04-12 10:25:17.993 15654-15717/tw.com.howdesign.pbfapp W/ReactNativeJS: ViewPropTypes will be removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types'. 2022-04-12 10:25:18.045 15654-15717/tw.com.howdesign.pbfapp I/ReactNativeJS: Running "BabyApp 2022-04-12 10:25:18.183 15654-15718/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreensShadowNode 2022-04-12 10:25:18.197 15654-15654/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden field Landroid/widget/ScrollView;->mScroller:Landroid/widget/OverScroller; (greylist, reflection, allowed) 2022-04-12 10:25:18.224 15654-15718/tw.com.howdesign.pbfapp I/WebViewFactory: Loading com.google.android.webview version 99.0.4844.88 (code 484408833) 2022-04-12 10:25:18.239 15654-15718/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/os/Trace;->isTagEnabled(J)Z (greylist, reflection, allowed) 2022-04-12 10:25:18.239 15654-15718/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/os/Trace;->traceBegin(JLjava/lang/String;)V (greylist, reflection, allowed) 2022-04-12 10:25:18.239 15654-15718/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/os/Trace;->traceEnd(J)V (greylist, reflection, allowed) 2022-04-12 10:25:18.239 15654-15718/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/os/Trace;->asyncTraceBegin(JLjava/lang/String;I)V (greylist, reflection, allowed) 2022-04-12 10:25:18.239 15654-15718/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/os/Trace;->asyncTraceEnd(JLjava/lang/String;I)V (greylist, reflection, allowed) 2022-04-12 10:25:18.241 15654-15718/tw.com.howdesign.pbfapp I/cr_WVCFactoryProvider: Loaded version=99.0.4844.88 minSdkVersion=29 isBundle=true multiprocess=true packageId=2 2022-04-12 10:25:18.250 15654-15718/tw.com.howdesign.pbfapp I/cr_LibraryLoader: Successfully loaded native library 2022-04-12 10:25:18.251 15654-15718/tw.com.howdesign.pbfapp I/cr_CachingUmaRecorder: Flushed 8 samples from 8 histograms. 2022-04-12 10:25:18.281 15654-15705/tw.com.howdesign.pbfapp I/Gralloc4: mapper 4.x is not supported 2022-04-12 10:25:18.439 15654-15654/tw.com.howdesign.pbfapp I/ReactNative: [GESTURE HANDLER] Gesture handler is already enabled for a parent view 2022-04-12 10:25:18.462 15654-15654/tw.com.howdesign.pbfapp I/ReactNative: [GESTURE HANDLER] Initialize gesture handler for root view com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView{7afbbe2 V.E...... .......D 0,0-1080,2153 #1} 2022-04-12 10:25:18.467 15654-15755/tw.com.howdesign.pbfapp D/SoLoader: libimagepipeline.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:25:18.467 15654-15755/tw.com.howdesign.pbfapp D/SoLoader: libimagepipeline.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:25:18.467 15654-15755/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libimagepipeline.so 2022-04-12 10:25:18.556 15654-15654/tw.com.howdesign.pbfapp I/AssistStructure: Flattened final assist data: 2904 bytes, containing 1 windows, 15 views 2022-04-12 10:25:20.451 15654-15654/tw.com.howdesign.pbfapp I/ReactNative: [GESTURE HANDLER] Gesture handler is already enabled for a parent view
when app is quit, reveived fcm notification, chick notification when app is.. Active Background messaging().onNotificationOpenedApp Quit not thing โŒ
Click To Expand 2022-04-12 10:27:46.523 15934-15934/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (greylist, reflection, allowed) 2022-04-12 10:27:46.524 15934-15934/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (greylist, reflection, allowed) 2022-04-12 10:27:46.547 15934-15934/tw.com.howdesign.pbfapp W/unknown:ReactNative: Packager connection already open, nooping. 2022-04-12 10:27:46.550 15934-15934/tw.com.howdesign.pbfapp W/unknown:ReactContext: initializeMessageQueueThreads() is called. 2022-04-12 10:27:46.552 15934-15934/tw.com.howdesign.pbfapp D/SoLoader: libyoga.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:27:46.552 15934-15934/tw.com.howdesign.pbfapp D/SoLoader: libyoga.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:27:46.552 15934-15934/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libyoga.so 2022-04-12 10:27:46.555 15934-16000/tw.com.howdesign.pbfapp I/ReactNativeJS: Running "BabyApp 2022-04-12 10:27:46.560 15934-16051/tw.com.howdesign.pbfapp I/AdrenoGLES-0: QUALCOMM build : 85da404, I46ff5fc46f Build Date : 11/30/20 OpenGL ES Shader Compiler Version: EV031.31.04.01 Local Branch : promo490_3_Google Remote Branch : Remote Branch : Reconstruct Branch : 2022-04-12 10:27:46.560 15934-16051/tw.com.howdesign.pbfapp I/AdrenoGLES-0: Build Config : S P 10.0.4 AArch64 2022-04-12 10:27:46.560 15934-16051/tw.com.howdesign.pbfapp I/AdrenoGLES-0: Driver Path : /vendor/lib64/egl/libGLESv2_adreno.so 2022-04-12 10:27:46.564 15934-16051/tw.com.howdesign.pbfapp I/AdrenoGLES-0: PFP: 0x016ee189, ME: 0x00000000 2022-04-12 10:27:46.565 15934-16051/tw.com.howdesign.pbfapp W/AdrenoUtils: : Failed to open /sys/class/kgsl/kgsl-3d0/gpu_model 2022-04-12 10:27:46.565 15934-16051/tw.com.howdesign.pbfapp W/AdrenoUtils: : Failed to read chip ID from gpu_model. Fallback to use the GSL path 2022-04-12 10:27:46.708 15934-15934/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden field Landroid/widget/ScrollView;->mScroller:Landroid/widget/OverScroller; (greylist, reflection, allowed) 2022-04-12 10:27:46.715 15934-16001/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreensShadowNode 2022-04-12 10:27:46.755 15934-16051/tw.com.howdesign.pbfapp I/Gralloc4: mapper 4.x is not supported 2022-04-12 10:27:46.931 15934-15934/tw.com.howdesign.pbfapp I/ReactNative: [GESTURE HANDLER] Gesture handler is already enabled for a parent view 2022-04-12 10:27:46.948 15934-15934/tw.com.howdesign.pbfapp I/ReactNative: [GESTURE HANDLER] Initialize gesture handler for root view com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView{39c1685 V.E...... .......D 0,0-1080,2153 #1} 2022-04-12 10:27:47.008 15934-16075/tw.com.howdesign.pbfapp D/SoLoader: libimagepipeline.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:27:47.009 15934-16075/tw.com.howdesign.pbfapp D/SoLoader: libimagepipeline.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:27:47.009 15934-16075/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libimagepipeline.so 2022-04-12 10:27:47.048 15934-15934/tw.com.howdesign.pbfapp I/AssistStructure: Flattened final assist data: 2904 bytes, containing 1 windows, 15 views 2022-04-12 10:27:48.864 15934-15934/tw.com.howdesign.pbfapp I/ReactNative: [GESTURE HANDLER] Gesture handler is already enabled for a parent view
click notifee notification when Active notifee.onForegroundEvent(type is 1) Background notifee.onBackgroundEvent(type is 1) Quit not thing โŒ
Click To Expand 2022-04-12 10:28:19.023 16149-16149/? I/owdesign.pbfap: Late-enabling -Xcheck:jni 2022-04-12 10:28:19.038 16149-16149/? I/owdesign.pbfap: Unquickening 12 vdex files! 2022-04-12 10:28:19.264 16149-16149/tw.com.howdesign.pbfapp D/NetworkSecurityConfig: No Network Security Config specified, using platform default 2022-04-12 10:28:19.264 16149-16149/tw.com.howdesign.pbfapp D/NetworkSecurityConfig: No Network Security Config specified, using platform default 2022-04-12 10:28:19.278 16149-16149/tw.com.howdesign.pbfapp I/FirebaseApp: Device unlocked: initializing all Firebase APIs for app [DEFAULT] 2022-04-12 10:28:19.307 16149-16149/tw.com.howdesign.pbfapp I/FirebaseInitProvider: FirebaseApp initialization successful 2022-04-12 10:28:19.308 16149-16149/tw.com.howdesign.pbfapp D/ReactNativeFirebaseApp: received application context. 2022-04-12 10:28:19.310 16149-16149/tw.com.howdesign.pbfapp D/WM-WrkMgrInitializer: Initializing WorkManager with default configuration. 2022-04-12 10:28:19.321 16149-16180/tw.com.howdesign.pbfapp I/DynamiteModule: Considering local module com.google.android.gms.measurement.dynamite:64 and remote module com.google.android.gms.measurement.dynamite:67 2022-04-12 10:28:19.321 16149-16180/tw.com.howdesign.pbfapp I/DynamiteModule: Selected remote version of com.google.android.gms.measurement.dynamite, version >= 67 2022-04-12 10:28:19.321 16149-16180/tw.com.howdesign.pbfapp V/DynamiteModule: Dynamite loader version >= 2, using loadModule2NoCrashUtils 2022-04-12 10:28:19.323 16149-16149/tw.com.howdesign.pbfapp I/TetheringManager: registerTetheringEventCallback:tw.com.howdesign.pbfapp 2022-04-12 10:28:19.329 16149-16149/tw.com.howdesign.pbfapp D/NOTIFEE: (context): received application context 2022-04-12 10:28:19.342 16149-16149/tw.com.howdesign.pbfapp V/fb-UnpackingSoSource: locked dso store /data/user/0/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:28:19.342 16149-16149/tw.com.howdesign.pbfapp I/fb-UnpackingSoSource: dso store is up-to-date: /data/user/0/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:28:19.342 16149-16149/tw.com.howdesign.pbfapp V/fb-UnpackingSoSource: releasing dso store lock for /data/user/0/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:28:19.353 16149-16180/tw.com.howdesign.pbfapp I/DynamiteLoaderV2Impl: [71] com.google.android.gms.measurement.dynamite 2022-04-12 10:28:19.355 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libjscexecutor.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:28:19.355 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libjscexecutor.so not found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:28:19.355 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libjscexecutor.so not found on /system/lib64 2022-04-12 10:28:19.355 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libjscexecutor.so not found on /vendor/lib64 2022-04-12 10:28:19.356 16149-16149/tw.com.howdesign.pbfapp E/SoLoader: couldn't find DSO to load: libjscexecutor.so SoSource 0: com.facebook.soloader.ApkSoSource[root = /data/data/tw.com.howdesign.pbfapp/lib-main flags = 1] SoSource 1: com.facebook.soloader.DirectorySoSource[root = /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 flags = 0] SoSource 2: com.facebook.soloader.DirectorySoSource[root = /system/lib64 flags = 2] SoSource 3: com.facebook.soloader.DirectorySoSource[root = /vendor/lib64 flags = 2] Native lib dir: /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 result: 0 2022-04-12 10:28:19.357 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libhermes.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:28:19.357 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libhermes.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:28:19.357 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libhermes.so 2022-04-12 10:28:19.360 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libhermes-executor-debug.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:28:19.360 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libhermes-executor-debug.so not found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:28:19.360 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libhermes-executor-debug.so not found on /system/lib64 2022-04-12 10:28:19.360 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libhermes-executor-debug.so not found on /vendor/lib64 2022-04-12 10:28:19.361 16149-16149/tw.com.howdesign.pbfapp E/SoLoader: couldn't find DSO to load: libhermes-executor-debug.so SoSource 0: com.facebook.soloader.ApkSoSource[root = /data/data/tw.com.howdesign.pbfapp/lib-main flags = 1] SoSource 1: com.facebook.soloader.DirectorySoSource[root = /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 flags = 0] SoSource 2: com.facebook.soloader.DirectorySoSource[root = /system/lib64 flags = 2] SoSource 3: com.facebook.soloader.DirectorySoSource[root = /vendor/lib64 flags = 2] Native lib dir: /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 result: 0 2022-04-12 10:28:19.361 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libhermes-executor-release.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:28:19.361 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libhermes-executor-release.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:28:19.361 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libhermes-executor-release.so 2022-04-12 10:28:19.427 16149-16185/tw.com.howdesign.pbfapp I/FA: App measurement initialized, version: 58022 2022-04-12 10:28:19.427 16149-16185/tw.com.howdesign.pbfapp I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE 2022-04-12 10:28:19.427 16149-16185/tw.com.howdesign.pbfapp I/FA: To enable faster debug mode event logging run: adb shell setprop debug.firebase.analytics.app tw.com.howdesign.pbfapp 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: java.lang.ClassNotFoundException: com.babyapp.ReactNativeFlipper 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at java.lang.Class.classForName(Native Method) 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at java.lang.Class.forName(Class.java:454) 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at java.lang.Class.forName(Class.java:379) 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at com.babyapp.MainApplication.initializeFlipper(MainApplication.java:73) 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at com.babyapp.MainApplication.onCreate(MainApplication.java:55) 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1192) 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6715) 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at android.app.ActivityThread.access$1300(ActivityThread.java:237) 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1913) 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at android.os.Handler.dispatchMessage(Handler.java:106) 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at android.os.Looper.loop(Looper.java:223) 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at android.app.ActivityThread.main(ActivityThread.java:7660) 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at java.lang.reflect.Method.invoke(Native Method) 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592) 2022-04-12 10:28:19.451 16149-16149/tw.com.howdesign.pbfapp W/System.err: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947) 2022-04-12 10:28:19.452 16149-16149/tw.com.howdesign.pbfapp W/System.err: Caused by: java.lang.ClassNotFoundException: Didn't find class "com.babyapp.ReactNativeFlipper" on path: DexPathList[[zip file "/data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/base.apk"],nativeLibraryDirectories=[/data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64, /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/base.apk!/lib/arm64-v8a, /system/lib64, /system_ext/lib64]] 2022-04-12 10:28:19.452 16149-16149/tw.com.howdesign.pbfapp W/System.err: at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:207) 2022-04-12 10:28:19.452 16149-16149/tw.com.howdesign.pbfapp W/System.err: at java.lang.ClassLoader.loadClass(ClassLoader.java:379) 2022-04-12 10:28:19.452 16149-16149/tw.com.howdesign.pbfapp W/System.err: at java.lang.ClassLoader.loadClass(ClassLoader.java:312) 2022-04-12 10:28:19.452 16149-16149/tw.com.howdesign.pbfapp W/System.err: ... 15 more 2022-04-12 10:28:19.456 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libreactnativejni.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:28:19.456 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libreactnativejni.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:28:19.456 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libreactnativejni.so 2022-04-12 10:28:19.457 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libfbjni.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:28:19.458 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: libfbjni.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:28:19.458 16149-16149/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libfbjni.so 2022-04-12 10:28:19.477 16149-16149/tw.com.howdesign.pbfapp D/EventBus: No subscribers registered for event class n.o.t.i.f.e.e.g 2022-04-12 10:28:19.477 16149-16149/tw.com.howdesign.pbfapp D/EventBus: No subscribers registered for event class org.greenrobot.eventbus.NoSubscriberEvent 2022-04-12 10:28:19.478 16149-16203/tw.com.howdesign.pbfapp W/unknown:ReconnectingWebSocket: Couldn't connect to "ws://localhost:8081/message?device=Pixel%204%20-%2011%20-%20API%2030&app=tw.com.howdesign.pbfapp&clientid=BridgeDevSupportManager", will silently retry 2022-04-12 10:28:19.478 16149-16202/tw.com.howdesign.pbfapp W/unknown:ReactNative: The packager does not seem to be running as we got an IOException requesting its status: CLEARTEXT communication to localhost not permitted by network security policy 2022-04-12 10:28:19.480 16149-16204/tw.com.howdesign.pbfapp W/unknown:InspectorPackagerConnection: Couldn't connect to packager, will silently retry 2022-04-12 10:28:19.543 16149-16208/tw.com.howdesign.pbfapp I/TIME4A: Starting Time4A (v4.8-2021a published on 2021-03-27) 2022-04-12 10:28:19.543 16149-16208/tw.com.howdesign.pbfapp I/TIME4A: Main-Thread consumed in ms: 37 2022-04-12 10:28:19.558 16149-16149/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (greylist, reflection, allowed) 2022-04-12 10:28:19.558 16149-16149/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (greylist, reflection, allowed) 2022-04-12 10:28:19.566 16149-16208/tw.com.howdesign.pbfapp W/unknown:ReactContext: initializeMessageQueueThreads() is called. 2022-04-12 10:28:19.572 16149-16185/tw.com.howdesign.pbfapp I/FA: Tag Manager is not found and thus will not be used 2022-04-12 10:28:19.578 16149-16149/tw.com.howdesign.pbfapp D/InstallReferrerState: OK 2022-04-12 10:28:19.589 16149-16149/tw.com.howdesign.pbfapp W/unknown:ReactNative: Packager connection already open, nooping. 2022-04-12 10:28:19.601 16149-16209/tw.com.howdesign.pbfapp I/AdrenoGLES-0: QUALCOMM build : 85da404, I46ff5fc46f Build Date : 11/30/20 OpenGL ES Shader Compiler Version: EV031.31.04.01 Local Branch : promo490_3_Google Remote Branch : Remote Branch : Reconstruct Branch : 2022-04-12 10:28:19.601 16149-16209/tw.com.howdesign.pbfapp I/AdrenoGLES-0: Build Config : S P 10.0.4 AArch64 2022-04-12 10:28:19.601 16149-16209/tw.com.howdesign.pbfapp I/AdrenoGLES-0: Driver Path : /vendor/lib64/egl/libGLESv2_adreno.so 2022-04-12 10:28:19.605 16149-16209/tw.com.howdesign.pbfapp I/AdrenoGLES-0: PFP: 0x016ee189, ME: 0x00000000 2022-04-12 10:28:19.606 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.drawer.ReactDrawerLayoutManager 2022-04-12 10:28:19.606 16149-16209/tw.com.howdesign.pbfapp W/AdrenoUtils: : Failed to open /sys/class/kgsl/kgsl-3d0/gpu_model 2022-04-12 10:28:19.606 16149-16209/tw.com.howdesign.pbfapp W/AdrenoUtils: : Failed to read chip ID from gpu_model. Fallback to use the GSL path 2022-04-12 10:28:19.618 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.uimanager.LayoutShadowNode 2022-04-12 10:28:19.621 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollViewManager 2022-04-12 10:28:19.622 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollContainerViewManager 2022-04-12 10:28:19.623 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ReactProgressBarViewManager 2022-04-12 10:28:19.624 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ProgressBarShadowNode 2022-04-12 10:28:19.625 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactScrollViewManager 2022-04-12 10:28:19.627 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager 2022-04-12 10:28:19.628 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager$ReactSliderShadowNode 2022-04-12 10:28:19.628 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager 2022-04-12 10:28:19.630 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager$ReactSwitchShadowNode 2022-04-12 10:28:19.630 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.swiperefresh.SwipeRefreshLayoutManager 2022-04-12 10:28:19.631 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageViewManager 2022-04-12 10:28:19.631 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageShadowNode 2022-04-12 10:28:19.632 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.image.ReactImageManager 2022-04-12 10:28:19.633 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ReactModalHostManager 2022-04-12 10:28:19.634 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ModalHostShadowNode 2022-04-12 10:28:19.634 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextManager 2022-04-12 10:28:19.634 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextShadowNode 2022-04-12 10:28:19.635 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputManager 2022-04-12 10:28:19.637 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputShadowNode 2022-04-12 10:28:19.638 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextViewManager 2022-04-12 10:28:19.639 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextShadowNode 2022-04-12 10:28:19.640 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.view.ReactViewManager 2022-04-12 10:28:19.641 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextViewManager 2022-04-12 10:28:19.642 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextShadowNode 2022-04-12 10:28:19.642 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.unimplementedview.ReactUnimplementedViewManager 2022-04-12 10:28:19.642 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.checkbox.ReactCheckBoxManager 2022-04-12 10:28:19.643 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.picker.ReactDialogPickerManager 2022-04-12 10:28:19.643 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.picker.ReactPickerShadowNode 2022-04-12 10:28:19.643 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.picker.ReactDropdownPickerManager 2022-04-12 10:28:19.644 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.henninghall.date_picker.DatePickerManager 2022-04-12 10:28:19.644 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.gesturehandler.react.RNGestureHandlerRootViewManager 2022-04-12 10:28:19.644 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.gesturehandler.react.RNGestureHandlerButtonViewManager 2022-04-12 10:28:19.645 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.BV.LinearGradient.LinearGradientManager 2022-04-12 10:28:19.645 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaProviderManager 2022-04-12 10:28:19.645 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaViewManager 2022-04-12 10:28:19.646 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.th3rdwave.safeareacontext.SafeAreaViewShadowNode 2022-04-12 10:28:19.646 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenContainerViewManager 2022-04-12 10:28:19.646 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenViewManager 2022-04-12 10:28:19.647 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackViewManager 2022-04-12 10:28:19.647 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackHeaderConfigViewManager 2022-04-12 10:28:19.648 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreenStackHeaderSubviewManager 2022-04-12 10:28:19.648 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$GroupViewManager 2022-04-12 10:28:19.650 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$RenderableShadowNode 2022-04-12 10:28:19.650 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$PathViewManager 2022-04-12 10:28:19.650 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$CircleViewManager 2022-04-12 10:28:19.651 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$EllipseViewManager 2022-04-12 10:28:19.651 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$LineViewManager 2022-04-12 10:28:19.652 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$RectViewManager 2022-04-12 10:28:19.652 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TextViewManager 2022-04-12 10:28:19.652 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TSpanViewManager 2022-04-12 10:28:19.653 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$TextPathViewManager 2022-04-12 10:28:19.653 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ImageViewManager 2022-04-12 10:28:19.653 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ClipPathViewManager 2022-04-12 10:28:19.653 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$DefsViewManager 2022-04-12 10:28:19.654 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$UseViewManager 2022-04-12 10:28:19.654 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$SymbolManager 2022-04-12 10:28:19.654 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$LinearGradientManager 2022-04-12 10:28:19.655 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$RadialGradientManager 2022-04-12 10:28:19.655 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$PatternManager 2022-04-12 10:28:19.656 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$MaskManager 2022-04-12 10:28:19.656 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$ForeignObjectManager 2022-04-12 10:28:19.656 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.RenderableViewManager$MarkerManager 2022-04-12 10:28:19.657 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.horcrux.svg.SvgViewManager 2022-04-12 10:28:19.657 16149-16208/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativecommunity.webview.RNCWebViewManager 2022-04-12 10:28:19.664 16149-16208/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden field Ljava/lang/reflect/Field;->accessFlags:I (greylist, reflection, allowed) 2022-04-12 10:28:19.667 16149-16208/tw.com.howdesign.pbfapp D/SoLoader: libturbomodulejsijni.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:28:19.667 16149-16208/tw.com.howdesign.pbfapp D/SoLoader: libturbomodulejsijni.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:28:19.667 16149-16208/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libturbomodulejsijni.so 2022-04-12 10:28:19.690 16149-16215/tw.com.howdesign.pbfapp W/unknown:ReactContext: initializeMessageQueueThreads() is called. 2022-04-12 10:28:19.692 16149-16215/tw.com.howdesign.pbfapp D/SoLoader: libyoga.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:28:19.693 16149-16215/tw.com.howdesign.pbfapp D/SoLoader: libyoga.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:28:19.693 16149-16215/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libyoga.so 2022-04-12 10:28:19.697 16149-16149/tw.com.howdesign.pbfapp W/unknown:ReactNative: Packager connection already open, nooping. 2022-04-12 10:28:19.776 16149-16214/tw.com.howdesign.pbfapp D/SoLoader: libreactnativeblob.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:28:19.776 16149-16214/tw.com.howdesign.pbfapp D/SoLoader: libreactnativeblob.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:28:19.776 16149-16214/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libreactnativeblob.so 2022-04-12 10:28:19.790 16149-16214/tw.com.howdesign.pbfapp W/ReactNativeJS: ViewPropTypes will be removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types'. 2022-04-12 10:28:19.790 16149-16214/tw.com.howdesign.pbfapp W/ReactNativeJS: ViewPropTypes will be removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types'. 2022-04-12 10:28:19.846 16149-16214/tw.com.howdesign.pbfapp I/ReactNativeJS: Running "BabyApp 2022-04-12 10:28:19.853 16149-16214/tw.com.howdesign.pbfapp W/ReactNativeJS: [notifee] no background event handler has been set. Set a handler via the "onBackgroundEvent" method. 2022-04-12 10:28:19.990 16149-16215/tw.com.howdesign.pbfapp W/unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.swmansion.rnscreens.ScreensShadowNode 2022-04-12 10:28:20.008 16149-16149/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden field Landroid/widget/ScrollView;->mScroller:Landroid/widget/OverScroller; (greylist, reflection, allowed) 2022-04-12 10:28:20.026 16149-16215/tw.com.howdesign.pbfapp I/WebViewFactory: Loading com.google.android.webview version 99.0.4844.88 (code 484408833) 2022-04-12 10:28:20.042 16149-16215/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/os/Trace;->isTagEnabled(J)Z (greylist, reflection, allowed) 2022-04-12 10:28:20.042 16149-16215/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/os/Trace;->traceBegin(JLjava/lang/String;)V (greylist, reflection, allowed) 2022-04-12 10:28:20.042 16149-16215/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/os/Trace;->traceEnd(J)V (greylist, reflection, allowed) 2022-04-12 10:28:20.042 16149-16215/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/os/Trace;->asyncTraceBegin(JLjava/lang/String;I)V (greylist, reflection, allowed) 2022-04-12 10:28:20.042 16149-16215/tw.com.howdesign.pbfapp W/owdesign.pbfap: Accessing hidden method Landroid/os/Trace;->asyncTraceEnd(JLjava/lang/String;I)V (greylist, reflection, allowed) 2022-04-12 10:28:20.045 16149-16215/tw.com.howdesign.pbfapp I/cr_WVCFactoryProvider: Loaded version=99.0.4844.88 minSdkVersion=29 isBundle=true multiprocess=true packageId=2 2022-04-12 10:28:20.053 16149-16215/tw.com.howdesign.pbfapp I/cr_LibraryLoader: Successfully loaded native library 2022-04-12 10:28:20.054 16149-16215/tw.com.howdesign.pbfapp I/cr_CachingUmaRecorder: Flushed 8 samples from 8 histograms. 2022-04-12 10:28:20.078 16149-16209/tw.com.howdesign.pbfapp I/Gralloc4: mapper 4.x is not supported 2022-04-12 10:28:20.218 16149-16149/tw.com.howdesign.pbfapp I/ReactNative: [GESTURE HANDLER] Gesture handler is already enabled for a parent view 2022-04-12 10:28:20.232 16149-16149/tw.com.howdesign.pbfapp I/ReactNative: [GESTURE HANDLER] Initialize gesture handler for root view com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView{85f73a7 V.E...... .......D 0,0-1080,2153 #1} 2022-04-12 10:28:20.237 16149-16249/tw.com.howdesign.pbfapp D/SoLoader: libimagepipeline.so not found on /data/data/tw.com.howdesign.pbfapp/lib-main 2022-04-12 10:28:20.237 16149-16249/tw.com.howdesign.pbfapp D/SoLoader: libimagepipeline.so found on /data/app/~~60eNbjXtx1HE4b1Prf3_Mg==/tw.com.howdesign.pbfapp-tTYXq3g4B60tVHodJjO_uQ==/lib/arm64 2022-04-12 10:28:20.238 16149-16249/tw.com.howdesign.pbfapp D/SoLoader: Not resolving dependencies for libimagepipeline.so 2022-04-12 10:28:20.334 16149-16149/tw.com.howdesign.pbfapp I/AssistStructure: Flattened final assist data: 2904 bytes, containing 1 windows, 15 views 2022-04-12 10:28:21.815 16149-16149/tw.com.howdesign.pbfapp I/ReactNative: [GESTURE HANDLER] Gesture handler is already enabled for a parent view
iOS Active send fcm, what be trigger messaging().onMessage notifee.onForegroundEvent(type is 3) Background messaging().setBackgroundMessageHandler ๐ŸŸ Quit messaging().setBackgroundMessageHandler ๐ŸŒˆ when app is background, reveived fcm notification, chick notification when app is.. Active Background messaging().onNotificationOpenedApp Quit not thing โŒ
Click To Expand Error 10:35:41.391462+0800 kernel Sandbox: BabyApp(414) deny(1) sysctl-read kern.bootargs Default 10:35:41.398439+0800 SpringBoard [FBSSystemService][0x6b08] Request successful: Default 10:35:41.401724+0800 kernel memorystatus: set assertion priority(10) target BabyApp:414 Error 10:35:41.425651+0800 kernel Sandbox: BabyApp(414) deny(2) file-test-existence /private/etc/.mdns_debug Default 10:35:41.438268+0800 BabyApp Initializing connection Default 10:35:41.439312+0800 backboardd Connection added: IOHIDEventSystemConnection uuid:1755C4C8-A090-466C-8580-ED7B7C229F91 pid:414 process:BabyApp type:Passive entitlements:0x0 caller:BackBoardServices: + 364 attributes:{ HighFrequency = 1; bundleID = "tw.com.howdesign.pbfapp"; pid = 414; } state:0x0 events:0 mask:0x0 Default 10:35:41.439654+0800 BabyApp Removing all cached process handles Default 10:35:41.453318+0800 BabyApp FBSWorkspace connecting to endpoint : Default 10:35:41.453515+0800 BabyApp FBSWorkspace registering source: Default 10:35:41.463344+0800 BabyApp FBSWorkspace connected to endpoint : Default 10:35:41.463392+0800 BabyApp Added observer for process assertions expiration warning: <_RBSExpirationWarningAssertion: 0x28273c900; identifier: com.apple.runningboardservices.processExpirationWarningForHandle; reason: observation; valid: YES> Default 10:35:41.463543+0800 BabyApp Sending handshake request attempt #1 to server Default 10:35:41.476610+0800 BabyApp Creating connection to com.apple.runningboard Default 10:35:41.485719+0800 BabyApp Retrieving resting unlock: 0 Default 10:35:41.537193+0800 BabyApp Handshake succeeded Default 10:35:41.537420+0800 BabyApp Identity resolved as application Default 10:35:41.540924+0800 BabyApp Registering for test daemon availability notify post. Default 10:35:41.541456+0800 BabyApp notify_get_state check indicated test daemon not ready. Default 10:35:41.550265+0800 BabyApp Adding securityd connection to pool, total now 1 Default 10:35:41.557039+0800 BabyApp nw_path_evaluator_start [25706EAF-B4C6-46D7-A3B0-95650E3F5CDF Hostname#4e15c291:0 generic, indefinite] path: satisfied (Path is satisfied), interface: en0, ipv4, dns Default 10:35:41.557343+0800 mDNSResponder [R1231] DNSServiceCreateConnection START PID[414](BabyApp) Default 10:35:41.557846+0800 mDNSResponder [R1232] DNSServiceGetAddrInfo(C000D000, 0, 0, ) START PID[414](BabyApp) Default 10:35:41.562058+0800 mDNSResponder [R1231] DNSServiceCreateConnection STOP PID[414](BabyApp) Default 10:35:41.562205+0800 mDNSResponder [R1232] DNSServiceGetAddrInfo() STOP PID[414](BabyApp) Default 10:35:41.648212+0800 BabyApp 8.14.0 - [Firebase/Messaging][I-FCM001000] FIRMessaging Remote Notifications proxy enabled, will swizzle remote notification receiver handlers. If you'd prefer to manually integrate Firebase Messaging, add "FirebaseAppDelegateProxyEnabled" to your Info.plist, and set it to NO. Follow the instructions at: https://firebase.google.com/docs/cloud-messaging/ios/client#method_swizzling_in_firebase_messaging to ensure proper integration. Default 10:35:41.744383+0800 mediaserverd AudioSessionServerImp.cpp:4312:AudioSessionCreateForPID: { "action":"create_session", "session":{"ID":"0x2026e","PID":414,"name":"BabyApp"}, "details":{"client_PID":414,"client_mach_port":168315,"session_type":"Primary"} } Error 10:35:41.804106+0800 BabyApp nehelper sent invalid result code [1] for Wi-Fi information request Error 10:35:41.806052+0800 BabyApp nehelper sent invalid result code [1] for Wi-Fi information request Error 10:35:41.807820+0800 BabyApp nehelper sent invalid result code [1] for Wi-Fi information request Error 10:35:41.809612+0800 BabyApp nehelper sent invalid result code [1] for Wi-Fi information request Error 10:35:41.811738+0800 BabyApp nehelper sent invalid result code [1] for Wi-Fi information request Error 10:35:41.813683+0800 BabyApp nehelper sent invalid result code [1] for Wi-Fi information request Default 10:35:41.923041+0800 BabyApp Faulting in NSHTTPCookieStorage singleton Default 10:35:41.923094+0800 BabyApp Faulting in CFHTTPCookieStorage singleton Default 10:35:41.923130+0800 BabyApp Creating default cookie storage with default identifier Default 10:35:41.925724+0800 BabyApp Task <061A1049-5811-4097-ACCE-E0301484ACEC>.<1> resuming, QOS(0x19) Voucher (null) Default 10:35:41.926502+0800 BabyApp Task <1F2108C9-52D1-4EA1-A8BE-0AC3AD60054B>.<2> resuming, QOS(0x19) Voucher (null) Default 10:35:41.926621+0800 BabyApp Task <3D4ECACC-D425-47D8-8E92-B221D0CA3573>.<3> resuming, QOS(0x19) Voucher (null) Default 10:35:41.927524+0800 BabyApp -[SOConfigurationClient init] on Default 10:35:41.928503+0800 BabyApp : new XPC connection Default 10:35:41.942801+0800 BabyApp nw_path_evaluator_start [16310493-3D79-4EDB-A85C-8B5A7AC3DD0C generic, indefinite] path: satisfied (Path is satisfied), interface: en0, ipv4, dns Default 10:35:41.944493+0800 BabyApp HTHangEventCreate: HangTracing is disabled. Not creating a new event. Default 10:35:41.946971+0800 BabyApp Task <061A1049-5811-4097-ACCE-E0301484ACEC>.<1> {strength 1, tls 8, ct 0, sub 0, sig 0, ciphers 1, bundle 0, builtin 0} Default 10:35:41.947295+0800 BabyApp Task <1F2108C9-52D1-4EA1-A8BE-0AC3AD60054B>.<2> {strength 1, tls 8, ct 0, sub 0, sig 0, ciphers 1, bundle 0, builtin 0} Default 10:35:41.947444+0800 BabyApp Task <3D4ECACC-D425-47D8-8E92-B221D0CA3573>.<3> {strength 1, tls 8, ct 0, sub 0, sig 0, ciphers 1, bundle 0, builtin 0} Default 10:35:41.951535+0800 BabyApp Task <1F2108C9-52D1-4EA1-A8BE-0AC3AD60054B>.<2> waiting for setup of Connection 1 Default 10:35:41.951782+0800 BabyApp Task <3D4ECACC-D425-47D8-8E92-B221D0CA3573>.<3> waiting for setup of Connection 1 Default 10:35:41.951832+0800 BabyApp Connection 1: enabling TLS Default 10:35:41.951960+0800 BabyApp Connection 1: starting, TC(0x0) Default 10:35:41.952025+0800 BabyApp [C1 02D6A396-2CB0-4710-8B3F-9A3B1C8B64FD Hostname#5bf582ef:443 tcp, url hash: b797e697, tls] start Default 10:35:41.952951+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C1] reporting state preparing Default 10:35:41.953324+0800 mDNSResponder [R1233] DNSServiceCreateConnection START PID[414](BabyApp) Default 10:35:41.953593+0800 mDNSResponder [R1234] DNSServiceGetAddrInfo(C000D000, 0, 0, ) START PID[414](BabyApp) Default 10:35:41.954380+0800 BabyApp Task <061A1049-5811-4097-ACCE-E0301484ACEC>.<1> setting up Connection 1 Default 10:35:41.955492+0800 mDNSResponder [R1233] DNSServiceCreateConnection STOP PID[414](BabyApp) Default 10:35:41.955590+0800 mDNSResponder [R1234] DNSServiceGetAddrInfo() STOP PID[414](BabyApp) Default 10:35:41.957933+0800 BabyApp tcp_output [C1.1:3] flags=[S] seq=4161280923, ack=0, win=65535 state=SYN_SENT rcv_nxt=0, snd_una=4161280923 Default 10:35:41.965826+0800 BabyApp tcp_input [C1.1:3] flags=[S.] seq=134829663, ack=4161280924, win=65535 state=SYN_SENT rcv_nxt=0, snd_una=4161280923 Default 10:35:41.966023+0800 BabyApp nw_flow_connected [C1.1 IPv4#12b15cf6:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Transport protocol connected Default 10:35:41.968671+0800 BabyApp boringssl_context_set_handshake_config(1471) [0x106622ce0] set tls_handshake_config_standard Default 10:35:41.968733+0800 BabyApp boringssl_context_set_min_version(324) [0x106622ce0] set 0x0301 Default 10:35:41.968784+0800 BabyApp boringssl_context_set_max_version(308) [0x106622ce0] set 0x0304 Default 10:35:41.968833+0800 BabyApp boringssl_context_set_cipher_suites(843) [0x106622ce0] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:AES256-SHA:AES128-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:DES-CBC3-SHA Default 10:35:41.968885+0800 BabyApp boringssl_context_set_remote_address(2555) [0x106622ce0] Saving remote IPv4 address Default 10:35:41.968938+0800 BabyApp boringssl_session_install_association_state(1262) [0x106622ce0] Client session cache miss Default 10:35:41.968987+0800 BabyApp boringssl_session_set_peer_hostname(1154) [0x106622ce0] SNI Default 10:35:41.969230+0800 BabyApp boringssl_context_set_min_version(324) [C1.1:2][0x106622ce0] set 0x0303 Default 10:35:41.969296+0800 BabyApp boringssl_context_set_fallback(374) [C1.1:2][0x106622ce0] set false Default 10:35:41.969387+0800 BabyApp boringssl_context_set_session_ticket_enabled(440) [C1.1:2][0x106622ce0] set false Default 10:35:41.969446+0800 BabyApp boringssl_context_set_false_start(410) [C1.1:2][0x106622ce0] set false Default 10:35:41.969558+0800 BabyApp boringssl_context_set_enforce_ev(400) [C1.1:2][0x106622ce0] set false Default 10:35:41.969611+0800 BabyApp boringssl_context_set_ats_enforced(1285) [C1.1:2][0x106622ce0] set false Default 10:35:41.969716+0800 BabyApp boringssl_context_set_ats_minimum_rsa_key_size(1294) [C1.1:2][0x106622ce0] set 0 Default 10:35:41.969768+0800 BabyApp boringssl_context_set_ats_minimum_ecdsa_key_size(1303) [C1.1:2][0x106622ce0] set 0 Default 10:35:41.969819+0800 BabyApp boringssl_context_set_ats_minimum_signature_algorithm(1313) [C1.1:2][0x106622ce0] set 0 Default 10:35:41.969922+0800 BabyApp boringssl_session_set_peer_hostname(1154) [C1.1:2][0x106622ce0] SNI Default 10:35:41.969974+0800 BabyApp boringssl_context_set_cipher_suites(843) [C1.1:2][0x106622ce0] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305 Default 10:35:41.970077+0800 BabyApp nw_protocol_boringssl_begin_connection(497) [C1.1:2][0x106622ce0] early data disabled Default 10:35:41.970180+0800 BabyApp boringssl_context_info_handler(1970) [C1.1:2][0x106622ce0] Client handshake started Default 10:35:41.970283+0800 BabyApp boringssl_context_message_handler(2258) [C1.1:2][0x106622ce0] Writing SSL3_RT_HANDSHAKE 512 bytes Default 10:35:41.970335+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS client enter_early_data Default 10:35:41.970386+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C1.1:2][0x106622ce0] Adding message(1) Default 10:35:41.970592+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS client read_server_hello Default 10:35:41.970645+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C1.1:2][0x106622ce0] Adding message(2) Default 10:35:41.970758+0800 BabyApp boringssl_session_handshake_incomplete(170) [C1.1:2][0x106622ce0] Handshake incomplete: waiting for data to read [2] Default 10:35:41.970860+0800 BabyApp boringssl_session_handshake_incomplete(170) [C1.1:2][0x106622ce0] Handshake incomplete: waiting for data to read [2] Default 10:35:41.971005+0800 BabyApp boringssl_session_handshake_incomplete(170) [C1.1:2][0x106622ce0] Handshake incomplete: waiting for data to read [2] Default 10:35:41.971112+0800 BabyApp boringssl_session_handshake_incomplete(170) [C1.1:2][0x106622ce0] Handshake incomplete: waiting for data to read [2] Default 10:35:41.973532+0800 BabyApp boringssl_session_handshake_incomplete(170) [C1.1:2][0x106622ce0] Handshake incomplete: waiting for data to read [2] Default 10:35:41.973583+0800 BabyApp boringssl_session_handshake_incomplete(170) [C1.1:2][0x106622ce0] Handshake incomplete: waiting for data to read [2] Default 10:35:41.976234+0800 BabyApp boringssl_context_message_handler(2258) [C1.1:2][0x106622ce0] Reading SSL3_RT_HANDSHAKE 122 bytes Default 10:35:41.976377+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS 1.3 client read_hello_retry_request Default 10:35:41.976478+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C1.1:2][0x106622ce0] Adding message(2) Default 10:35:41.976578+0800 BabyApp boringssl_context_message_handler(2258) [C1.1:2][0x106622ce0] Writing SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:41.976681+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS 1.3 client read_server_hello Default 10:35:41.976733+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS 1.3 client read_encrypted_extensions Default 10:35:41.978249+0800 BabyApp boringssl_context_message_handler(2258) [C1.1:2][0x106622ce0] Reading SSL3_RT_HANDSHAKE 15 bytes Default 10:35:41.978511+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS 1.3 client read_certificate_request Default 10:35:41.978621+0800 BabyApp boringssl_context_message_handler(2258) [C1.1:2][0x106622ce0] Reading SSL3_RT_HANDSHAKE 6387 bytes Default 10:35:41.978812+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS 1.3 client read_server_certificate Default 10:35:41.978935+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS 1.3 client read_server_certificate_verify Default 10:35:41.979068+0800 BabyApp boringssl_context_message_handler(2258) [C1.1:2][0x106622ce0] Reading SSL3_RT_HANDSHAKE 79 bytes Default 10:35:41.979207+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C1.1:2][0x106622ce0] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:41.981544+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C1.1:2][0x106622ce0] SecTrustCreateWithCertificates result: 0 Default 10:35:41.981971+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C1.1:2][0x106622ce0] No TLS-provided OCSP response Default 10:35:41.982033+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C1.1:2][0x106622ce0] No TLS-provided SCTs Default 10:35:41.982294+0800 BabyApp boringssl_context_certificate_verify_callback(2071) [C1.1:2][0x106622ce0] Asyncing for verify block Default 10:35:41.982537+0800 BabyApp boringssl_session_handshake_incomplete(170) [C1.1:2][0x106622ce0] Handshake incomplete: certificate evaluation result pending [16] Default 10:35:41.982753+0800 BabyApp Connection 1: asked to evaluate TLS Trust Default 10:35:41.984271+0800 BabyApp Task <061A1049-5811-4097-ACCE-E0301484ACEC>.<1> auth completion disp=1 cred=0x0 Default 10:35:41.990832+0800 BabyApp System Trust Evaluation yielded status(0) Default 10:35:41.991796+0800 BabyApp Connection 1: TLS Trust result 0 Default 10:35:41.991847+0800 BabyApp boringssl_context_certificate_verify_callback_block_invoke_3(2080) [C1.1:2][0x106622ce0] Returning from verify block Default 10:35:41.991946+0800 BabyApp boringssl_context_certificate_verify_callback(2047) [C1.1:2][0x106622ce0] Setting trust result to ssl_verify_ok Default 10:35:41.991998+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS 1.3 client read_server_finished Default 10:35:41.992053+0800 BabyApp boringssl_context_message_handler(2258) [C1.1:2][0x106622ce0] Reading SSL3_RT_HANDSHAKE 36 bytes Default 10:35:41.992103+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS 1.3 client send_end_of_early_data Default 10:35:41.992151+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS 1.3 client send_client_certificate Default 10:35:41.992199+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS 1.3 client complete_second_flight Default 10:35:41.992249+0800 BabyApp boringssl_context_message_handler(2258) [C1.1:2][0x106622ce0] Writing SSL3_RT_HANDSHAKE 36 bytes Default 10:35:41.992297+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS 1.3 client done Default 10:35:41.992347+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS client finish_client_handshake Default 10:35:41.992396+0800 BabyApp boringssl_context_info_handler(1983) [C1.1:2][0x106622ce0] Client handshake state: TLS client done Default 10:35:41.992443+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C1.1:2][0x106622ce0] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:41.992535+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C1.1:2][0x106622ce0] SecTrustCreateWithCertificates result: 0 Default 10:35:41.992584+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C1.1:2][0x106622ce0] No TLS-provided OCSP response Default 10:35:41.992635+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C1.1:2][0x106622ce0] No TLS-provided SCTs Default 10:35:41.992739+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C1.1:2][0x106622ce0] Adding message(20) Default 10:35:41.992788+0800 BabyApp boringssl_context_info_handler(1974) [C1.1:2][0x106622ce0] Client handshake done Default 10:35:41.992881+0800 BabyApp nw_protocol_boringssl_signal_connected(701) [C1.1:2][0x106622ce0] TLS connected [version(0x0304) ciphersuite(0x1301) group(0x001d) peer_key(0x0403) alpn(h2) resumed(0) offered_ticket(0) false_started(0) ocsp(0) sct(0)] Default 10:35:41.993040+0800 BabyApp nw_flow_connected [C1.1 IPv4#12b15cf6:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Output protocol connected Default 10:35:41.993386+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C1] reporting state ready Default 10:35:41.993839+0800 BabyApp Connection 1: connected successfully Default 10:35:41.993887+0800 BabyApp Connection 1: TLS handshake complete Default 10:35:41.993936+0800 BabyApp Connection 1: ready C(N) E(N) Default 10:35:41.994045+0800 BabyApp new connection to config 0x28321b8c0 Default 10:35:41.994795+0800 BabyApp Task <061A1049-5811-4097-ACCE-E0301484ACEC>.<1> now using Connection 1 Default 10:35:41.994841+0800 BabyApp Task <1F2108C9-52D1-4EA1-A8BE-0AC3AD60054B>.<2> now using Connection 1 Default 10:35:41.994911+0800 BabyApp Task <3D4ECACC-D425-47D8-8E92-B221D0CA3573>.<3> now using Connection 1 Default 10:35:41.994961+0800 BabyApp Connection 1: received viability advisory(Y) Default 10:35:41.995399+0800 BabyApp Task <061A1049-5811-4097-ACCE-E0301484ACEC>.<1> sent request, body N 0 Default 10:35:41.995476+0800 BabyApp Task <1F2108C9-52D1-4EA1-A8BE-0AC3AD60054B>.<2> sent request, body N 0 Default 10:35:41.995532+0800 BabyApp Task <3D4ECACC-D425-47D8-8E92-B221D0CA3573>.<3> sent request, body N 0 Default 10:35:41.995592+0800 BabyApp boringssl_context_message_handler(2258) [C1.1:2][0x106622ce0] Reading SSL3_RT_HANDSHAKE 262 bytes Default 10:35:41.995651+0800 BabyApp boringssl_context_new_session_handler(1117) [C1.1:2][0x106622ce0] New session available Default 10:35:41.995734+0800 BabyApp boringssl_context_message_handler(2258) [C1.1:2][0x106622ce0] Reading SSL3_RT_HANDSHAKE 262 bytes Default 10:35:41.995831+0800 BabyApp boringssl_context_new_session_handler(1117) [C1.1:2][0x106622ce0] New session available Default 10:35:42.001873+0800 BabyApp Task <061A1049-5811-4097-ACCE-E0301484ACEC>.<1> received response, status 204 content U Default 10:35:42.001966+0800 BabyApp Task <061A1049-5811-4097-ACCE-E0301484ACEC>.<1> done using Connection 1 Default 10:35:42.002019+0800 BabyApp Task <1F2108C9-52D1-4EA1-A8BE-0AC3AD60054B>.<2> received response, status 204 content U Default 10:35:42.002067+0800 BabyApp Task <1F2108C9-52D1-4EA1-A8BE-0AC3AD60054B>.<2> done using Connection 1 Default 10:35:42.002118+0800 BabyApp Task <3D4ECACC-D425-47D8-8E92-B221D0CA3573>.<3> received response, status 204 content U Default 10:35:42.002165+0800 BabyApp Task <3D4ECACC-D425-47D8-8E92-B221D0CA3573>.<3> done using Connection 1 Default 10:35:42.002223+0800 BabyApp Task <061A1049-5811-4097-ACCE-E0301484ACEC>.<1> response ended Default 10:35:42.002269+0800 BabyApp Task <1F2108C9-52D1-4EA1-A8BE-0AC3AD60054B>.<2> response ended Default 10:35:42.002345+0800 BabyApp Task <061A1049-5811-4097-ACCE-E0301484ACEC>.<1> summary for task success {transaction_duration_ms=70, response_status=204, connection=1, protocol="h2", domain_lookup_duration_ms=2, connect_duration_ms=49, secure_connection_duration_ms=33, request_start_ms=63, request_duration_ms=0, response_start_ms=69, response_duration_ms=0, request_bytes=115, response_bytes=175, cache_hit=0} Default 10:35:42.002399+0800 BabyApp Task <3D4ECACC-D425-47D8-8E92-B221D0CA3573>.<3> response ended Default 10:35:42.002703+0800 BabyApp Task <1F2108C9-52D1-4EA1-A8BE-0AC3AD60054B>.<2> summary for task success {transaction_duration_ms=70, response_status=204, connection=1, reused=1, request_start_ms=63, request_duration_ms=0, response_start_ms=69, response_duration_ms=0, request_bytes=43, response_bytes=37, cache_hit=0} Default 10:35:42.002774+0800 BabyApp Task <3D4ECACC-D425-47D8-8E92-B221D0CA3573>.<3> summary for task success {transaction_duration_ms=70, response_status=204, connection=1, reused=1, request_start_ms=62, request_duration_ms=0, response_start_ms=69, response_duration_ms=0, request_bytes=43, response_bytes=37, cache_hit=0} Default 10:35:42.002984+0800 BabyApp Task <061A1049-5811-4097-ACCE-E0301484ACEC>.<1> finished successfully Default 10:35:42.006858+0800 BabyApp Task <1F2108C9-52D1-4EA1-A8BE-0AC3AD60054B>.<2> finished successfully Default 10:35:42.006917+0800 BabyApp Task <3D4ECACC-D425-47D8-8E92-B221D0CA3573>.<3> finished successfully Default 10:35:42.100625+0800 BabyApp kExcludedFromBackupXattrName set on path: Default 10:35:42.120944+0800 BabyApp [tw.com.howdesign.pbfapp] Requesting authorization with options 143 Default 10:35:42.135387+0800 BabyApp [tw.com.howdesign.pbfapp] Requested authorization [ didGrant: 1 hasError: 0 hasCompletionHandler: 1 ] Default 10:35:42.135494+0800 BabyApp [tw.com.howdesign.pbfapp] Getting notification settings (async) Default 10:35:42.135943+0800 BabyApp TCP Conn [2:0x28072e1c0] using empty proxy configuration Default 10:35:42.136015+0800 BabyApp Stream client bypassing proxies on TCP Conn [2:0x28072e1c0] Default 10:35:42.136075+0800 BabyApp TCP Conn 0x28072e1c0 started Default 10:35:42.136302+0800 BabyApp [C2 3673B900-5407-47CE-8175-F25A6E5C213D Hostname#b5c0917b:443 tcp, legacy-socket] start Default 10:35:42.136764+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C2] reporting state preparing Default 10:35:42.136863+0800 mDNSResponder [R1235] DNSServiceCreateConnection START PID[414](BabyApp) Default 10:35:42.136961+0800 mDNSResponder [R1236] DNSServiceGetAddrInfo(C000D000, 0, 0, ) START PID[414](BabyApp) Default 10:35:42.138448+0800 BabyApp [tw.com.howdesign.pbfapp] Got notification settings [ hasResult: 1 hasCompletionHandler: 1 ] Default 10:35:42.140904+0800 BabyApp Task <91FABE28-91A7-4EE9-B807-01DEBB74B105>.<1> resuming, QOS(0x9) Voucher (null) Default 10:35:42.141583+0800 BabyApp Task <91FABE28-91A7-4EE9-B807-01DEBB74B105>.<1> {strength 1, tls 8, ct 0, sub 0, sig 0, ciphers 1, bundle 0, builtin 0} Default 10:35:42.141746+0800 BabyApp Connection 3: enabling TLS Default 10:35:42.141798+0800 BabyApp Connection 3: starting, TC(0x0) Default 10:35:42.141854+0800 BabyApp [C3 31396BBA-C002-40D1-B594-E4CC0BC097FF Hostname#2bf7c84b:443 tcp, url hash: 71548174, tls] start Default 10:35:42.142366+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C3] reporting state preparing Default 10:35:42.142489+0800 mDNSResponder [R1237] DNSServiceCreateConnection START PID[414](BabyApp) Default 10:35:42.142591+0800 mDNSResponder [R1238] DNSServiceGetAddrInfo(C000D000, 0, 0, ) START PID[414](BabyApp) Default 10:35:42.143282+0800 BabyApp Task <91FABE28-91A7-4EE9-B807-01DEBB74B105>.<1> setting up Connection 3 Default 10:35:42.143457+0800 mDNSResponder [R1237] DNSServiceCreateConnection STOP PID[414](BabyApp) Default 10:35:42.143745+0800 mDNSResponder [R1238] DNSServiceGetAddrInfo() STOP PID[414](BabyApp) Default 10:35:42.146778+0800 BabyApp tcp_output [C3.1:3] flags=[S] seq=3783840007, ack=0, win=65535 state=SYN_SENT rcv_nxt=0, snd_una=3783840007 Default 10:35:42.147365+0800 mDNSResponder [R1235] DNSServiceCreateConnection STOP PID[414](BabyApp) Default 10:35:42.147469+0800 mDNSResponder [R1236] DNSServiceGetAddrInfo() STOP PID[414](BabyApp) Default 10:35:42.148812+0800 BabyApp tcp_input [C3.1:3] flags=[S.] seq=655193887, ack=3783840008, win=65535 state=SYN_SENT rcv_nxt=0, snd_una=3783840007 Default 10:35:42.148963+0800 BabyApp nw_flow_connected [C3.1 IPv4#8fdef323:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Transport protocol connected Default 10:35:42.149260+0800 BabyApp boringssl_context_set_handshake_config(1471) [0x10673c9f0] set tls_handshake_config_standard Default 10:35:42.149313+0800 BabyApp boringssl_context_set_min_version(324) [0x10673c9f0] set 0x0301 Default 10:35:42.149365+0800 BabyApp boringssl_context_set_max_version(308) [0x10673c9f0] set 0x0304 Default 10:35:42.149415+0800 BabyApp boringssl_context_set_cipher_suites(843) [0x10673c9f0] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:AES256-SHA:AES128-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:DES-CBC3-SHA Default 10:35:42.149472+0800 BabyApp boringssl_context_set_remote_address(2555) [0x10673c9f0] Saving remote IPv4 address Default 10:35:42.149523+0800 BabyApp boringssl_session_install_association_state(1262) [0x10673c9f0] Client session cache miss Default 10:35:42.149574+0800 BabyApp boringssl_session_set_peer_hostname(1154) [0x10673c9f0] SNI Default 10:35:42.149625+0800 BabyApp boringssl_context_set_min_version(324) [C3.1:2][0x10673c9f0] set 0x0303 Default 10:35:42.149672+0800 BabyApp boringssl_context_set_fallback(374) [C3.1:2][0x10673c9f0] set false Default 10:35:42.149776+0800 BabyApp boringssl_context_set_session_ticket_enabled(440) [C3.1:2][0x10673c9f0] set false Default 10:35:42.149842+0800 BabyApp boringssl_context_set_false_start(410) [C3.1:2][0x10673c9f0] set false Default 10:35:42.149894+0800 BabyApp boringssl_context_set_enforce_ev(400) [C3.1:2][0x10673c9f0] set false Default 10:35:42.149945+0800 BabyApp boringssl_context_set_ats_enforced(1285) [C3.1:2][0x10673c9f0] set false Default 10:35:42.149998+0800 BabyApp boringssl_context_set_ats_minimum_rsa_key_size(1294) [C3.1:2][0x10673c9f0] set 0 Default 10:35:42.150199+0800 BabyApp boringssl_context_set_ats_minimum_ecdsa_key_size(1303) [C3.1:2][0x10673c9f0] set 0 Default 10:35:42.150260+0800 BabyApp boringssl_context_set_ats_minimum_signature_algorithm(1313) [C3.1:2][0x10673c9f0] set 0 Default 10:35:42.150331+0800 BabyApp boringssl_session_set_peer_hostname(1154) [C3.1:2][0x10673c9f0] SNI Default 10:35:42.150383+0800 BabyApp boringssl_context_set_cipher_suites(843) [C3.1:2][0x10673c9f0] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305 Default 10:35:42.150434+0800 BabyApp nw_protocol_boringssl_begin_connection(497) [C3.1:2][0x10673c9f0] early data disabled Default 10:35:42.150497+0800 BabyApp boringssl_context_info_handler(1970) [C3.1:2][0x10673c9f0] Client handshake started Default 10:35:42.150547+0800 BabyApp boringssl_context_message_handler(2258) [C3.1:2][0x10673c9f0] Writing SSL3_RT_HANDSHAKE 512 bytes Default 10:35:42.150608+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS client enter_early_data Default 10:35:42.150676+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C3.1:2][0x10673c9f0] Adding message(1) Default 10:35:42.150737+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS client read_server_hello Default 10:35:42.150798+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C3.1:2][0x10673c9f0] Adding message(2) Default 10:35:42.150851+0800 BabyApp boringssl_session_handshake_incomplete(170) [C3.1:2][0x10673c9f0] Handshake incomplete: waiting for data to read [2] Default 10:35:42.150919+0800 BabyApp boringssl_session_handshake_incomplete(170) [C3.1:2][0x10673c9f0] Handshake incomplete: waiting for data to read [2] Default 10:35:42.150969+0800 BabyApp boringssl_session_handshake_incomplete(170) [C3.1:2][0x10673c9f0] Handshake incomplete: waiting for data to read [2] Default 10:35:42.151017+0800 BabyApp boringssl_session_handshake_incomplete(170) [C3.1:2][0x10673c9f0] Handshake incomplete: waiting for data to read [2] Default 10:35:42.157336+0800 BabyApp boringssl_session_handshake_incomplete(170) [C3.1:2][0x10673c9f0] Handshake incomplete: waiting for data to read [2] Default 10:35:42.157392+0800 BabyApp boringssl_session_handshake_incomplete(170) [C3.1:2][0x10673c9f0] Handshake incomplete: waiting for data to read [2] Default 10:35:42.162527+0800 BabyApp boringssl_context_message_handler(2258) [C3.1:2][0x10673c9f0] Reading SSL3_RT_HANDSHAKE 122 bytes Default 10:35:42.162630+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS 1.3 client read_hello_retry_request Default 10:35:42.162683+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C3.1:2][0x10673c9f0] Adding message(2) Default 10:35:42.162736+0800 BabyApp boringssl_context_message_handler(2258) [C3.1:2][0x10673c9f0] Writing SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:42.162786+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS 1.3 client read_server_hello Default 10:35:42.162837+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS 1.3 client read_encrypted_extensions Default 10:35:42.162903+0800 BabyApp boringssl_context_message_handler(2258) [C3.1:2][0x10673c9f0] Reading SSL3_RT_HANDSHAKE 15 bytes Default 10:35:42.162961+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS 1.3 client read_certificate_request Default 10:35:42.163012+0800 BabyApp boringssl_context_message_handler(2258) [C3.1:2][0x10673c9f0] Reading SSL3_RT_HANDSHAKE 4396 bytes Default 10:35:42.163084+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS 1.3 client read_server_certificate Default 10:35:42.163136+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS 1.3 client read_server_certificate_verify Default 10:35:42.163189+0800 BabyApp boringssl_context_message_handler(2258) [C3.1:2][0x10673c9f0] Reading SSL3_RT_HANDSHAKE 79 bytes Default 10:35:42.163239+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C3.1:2][0x10673c9f0] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:42.163338+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C3.1:2][0x10673c9f0] SecTrustCreateWithCertificates result: 0 Default 10:35:42.163388+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C3.1:2][0x10673c9f0] No TLS-provided OCSP response Default 10:35:42.163439+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C3.1:2][0x10673c9f0] No TLS-provided SCTs Default 10:35:42.163610+0800 BabyApp boringssl_context_certificate_verify_callback(2071) [C3.1:2][0x10673c9f0] Asyncing for verify block Default 10:35:42.163746+0800 BabyApp boringssl_session_handshake_incomplete(170) [C3.1:2][0x10673c9f0] Handshake incomplete: certificate evaluation result pending [16] Default 10:35:42.163814+0800 BabyApp Connection 3: asked to evaluate TLS Trust Default 10:35:42.164064+0800 BabyApp Task <91FABE28-91A7-4EE9-B807-01DEBB74B105>.<1> auth completion disp=1 cred=0x0 Default 10:35:42.170669+0800 BabyApp Task .<4> resuming, QOS(0x19) Voucher (null) Default 10:35:42.171832+0800 BabyApp Task <3967796F-4013-4E7B-BC40-EC6AF1E6DEE0>.<5> resuming, QOS(0x19) Voucher (null) Default 10:35:42.172079+0800 BabyApp System Trust Evaluation yielded status(0) Default 10:35:42.172868+0800 BabyApp nw_socket_handle_socket_event [C2.1:1] Socket received CONNECTED event Default 10:35:42.172995+0800 BabyApp nw_flow_connected [C2.1 IPv4#661b3a0b:443 in_progress socket-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Output protocol connected Default 10:35:42.173677+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C2] reporting state ready Default 10:35:42.174460+0800 BabyApp TCP Conn 0x28072e1c0 event 1. err: 0 Default 10:35:42.174566+0800 BabyApp TCP Conn 0x28072e1c0 complete. fd: 9, err: 0 Default 10:35:42.174875+0800 BabyApp TCP Conn 0x28072e1c0 starting SSL negotiation Default 10:35:42.174984+0800 BabyApp Task .<4> {strength 1, tls 8, ct 0, sub 0, sig 0, ciphers 1, bundle 0, builtin 0} Default 10:35:42.175035+0800 BabyApp Task <3967796F-4013-4E7B-BC40-EC6AF1E6DEE0>.<5> {strength 1, tls 8, ct 0, sub 0, sig 0, ciphers 1, bundle 0, builtin 0} Default 10:35:42.175132+0800 BabyApp Task <3967796F-4013-4E7B-BC40-EC6AF1E6DEE0>.<5> waiting for setup of Connection 4 Default 10:35:42.175179+0800 BabyApp Connection 4: enabling TLS Default 10:35:42.175249+0800 BabyApp Connection 4: starting, TC(0x0) Default 10:35:42.175448+0800 BabyApp [C4 FCB58A45-5CDA-4C65-9D03-8B45A01BAB67 Hostname#c459f881:443 tcp, url hash: ad55bca3, tls] start Default 10:35:42.176211+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C4] reporting state preparing Default 10:35:42.176305+0800 mDNSResponder [R1239] DNSServiceCreateConnection START PID[414](BabyApp) Default 10:35:42.176403+0800 mDNSResponder [R1240] DNSServiceGetAddrInfo(C000D000, 0, 0, ) START PID[414](BabyApp) Default 10:35:42.176914+0800 BabyApp Task .<4> setting up Connection 4 Default 10:35:42.177305+0800 mDNSResponder [R1239] DNSServiceCreateConnection STOP PID[414](BabyApp) Default 10:35:42.177356+0800 mDNSResponder [R1240] DNSServiceGetAddrInfo() STOP PID[414](BabyApp) Default 10:35:42.180166+0800 BabyApp tcp_output [C4.1:3] flags=[S] seq=2610773576, ack=0, win=65535 state=SYN_SENT rcv_nxt=0, snd_una=2610773576 Default 10:35:42.180607+0800 BabyApp Connection 3: TLS Trust result 0 Default 10:35:42.180670+0800 BabyApp boringssl_context_certificate_verify_callback_block_invoke_3(2080) [C3.1:2][0x10673c9f0] Returning from verify block Default 10:35:42.180774+0800 BabyApp boringssl_context_certificate_verify_callback(2047) [C3.1:2][0x10673c9f0] Setting trust result to ssl_verify_ok Default 10:35:42.180828+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS 1.3 client read_server_finished Default 10:35:42.180944+0800 BabyApp boringssl_context_message_handler(2258) [C3.1:2][0x10673c9f0] Reading SSL3_RT_HANDSHAKE 36 bytes Default 10:35:42.181035+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS 1.3 client send_end_of_early_data Default 10:35:42.181093+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS 1.3 client send_client_certificate Default 10:35:42.181204+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS 1.3 client complete_second_flight Default 10:35:42.181267+0800 BabyApp boringssl_context_message_handler(2258) [C3.1:2][0x10673c9f0] Writing SSL3_RT_HANDSHAKE 36 bytes Default 10:35:42.181320+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS 1.3 client done Default 10:35:42.181371+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS client finish_client_handshake Default 10:35:42.181423+0800 BabyApp boringssl_context_info_handler(1983) [C3.1:2][0x10673c9f0] Client handshake state: TLS client done Default 10:35:42.181473+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C3.1:2][0x10673c9f0] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:42.181574+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C3.1:2][0x10673c9f0] SecTrustCreateWithCertificates result: 0 Default 10:35:42.181623+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C3.1:2][0x10673c9f0] No TLS-provided OCSP response Default 10:35:42.181673+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C3.1:2][0x10673c9f0] No TLS-provided SCTs Default 10:35:42.181771+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C3.1:2][0x10673c9f0] Adding message(20) Default 10:35:42.181859+0800 BabyApp boringssl_context_info_handler(1974) [C3.1:2][0x10673c9f0] Client handshake done Default 10:35:42.181915+0800 BabyApp nw_protocol_boringssl_signal_connected(701) [C3.1:2][0x10673c9f0] TLS connected [version(0x0304) ciphersuite(0x1301) group(0x001d) peer_key(0x0403) alpn(h2) resumed(0) offered_ticket(0) false_started(0) ocsp(0) sct(0)] Default 10:35:42.182070+0800 BabyApp nw_flow_connected [C3.1 IPv4#8fdef323:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Output protocol connected Default 10:35:42.182483+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C3] reporting state ready Default 10:35:42.182742+0800 BabyApp Connection 3: connected successfully Default 10:35:42.182786+0800 BabyApp Connection 3: TLS handshake complete Default 10:35:42.182852+0800 BabyApp Connection 3: ready C(N) E(N) Default 10:35:42.182948+0800 BabyApp new connection to config 0x2832277c0 Default 10:35:42.182995+0800 BabyApp Task <91FABE28-91A7-4EE9-B807-01DEBB74B105>.<1> now using Connection 3 Default 10:35:42.183043+0800 BabyApp Connection 3: received viability advisory(Y) Default 10:35:42.183707+0800 BabyApp Task <91FABE28-91A7-4EE9-B807-01DEBB74B105>.<1> sent request, body S 293 Default 10:35:42.183859+0800 BabyApp tcp_input [C4.1:3] flags=[S.] seq=3368546571, ack=2610773577, win=28960 state=SYN_SENT rcv_nxt=0, snd_una=2610773576 Default 10:35:42.183917+0800 BabyApp nw_flow_connected [C4.1 IPv4#1078b35a:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Transport protocol connected Default 10:35:42.184144+0800 BabyApp boringssl_context_set_handshake_config(1471) [0x106740e90] set tls_handshake_config_standard Default 10:35:42.184192+0800 BabyApp boringssl_context_set_min_version(324) [0x106740e90] set 0x0301 Default 10:35:42.184242+0800 BabyApp boringssl_context_set_max_version(308) [0x106740e90] set 0x0304 Default 10:35:42.184292+0800 BabyApp boringssl_context_set_cipher_suites(843) [0x106740e90] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:AES256-SHA:AES128-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:DES-CBC3-SHA Default 10:35:42.184344+0800 BabyApp boringssl_context_set_remote_address(2555) [0x106740e90] Saving remote IPv4 address Default 10:35:42.184391+0800 BabyApp boringssl_session_install_association_state(1262) [0x106740e90] Client session cache miss Default 10:35:42.184441+0800 BabyApp boringssl_session_set_peer_hostname(1154) [0x106740e90] SNI Default 10:35:42.184489+0800 BabyApp boringssl_context_set_min_version(324) [C4.1:2][0x106740e90] set 0x0303 Default 10:35:42.184536+0800 BabyApp boringssl_context_set_fallback(374) [C4.1:2][0x106740e90] set false Default 10:35:42.184583+0800 BabyApp boringssl_context_set_session_ticket_enabled(440) [C4.1:2][0x106740e90] set false Default 10:35:42.184633+0800 BabyApp boringssl_context_set_false_start(410) [C4.1:2][0x106740e90] set false Default 10:35:42.184741+0800 BabyApp boringssl_context_set_enforce_ev(400) [C4.1:2][0x106740e90] set false Default 10:35:42.184838+0800 BabyApp boringssl_context_set_ats_enforced(1285) [C4.1:2][0x106740e90] set false Default 10:35:42.184890+0800 BabyApp boringssl_context_set_ats_minimum_rsa_key_size(1294) [C4.1:2][0x106740e90] set 0 Default 10:35:42.184940+0800 BabyApp boringssl_context_set_ats_minimum_ecdsa_key_size(1303) [C4.1:2][0x106740e90] set 0 Default 10:35:42.184989+0800 BabyApp boringssl_context_set_ats_minimum_signature_algorithm(1313) [C4.1:2][0x106740e90] set 0 Default 10:35:42.185036+0800 BabyApp boringssl_session_set_peer_hostname(1154) [C4.1:2][0x106740e90] SNI Default 10:35:42.185086+0800 BabyApp boringssl_context_set_cipher_suites(843) [C4.1:2][0x106740e90] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305 Default 10:35:42.185137+0800 BabyApp nw_protocol_boringssl_begin_connection(497) [C4.1:2][0x106740e90] early data disabled Default 10:35:42.185185+0800 BabyApp boringssl_context_info_handler(1970) [C4.1:2][0x106740e90] Client handshake started Default 10:35:42.185267+0800 BabyApp boringssl_context_message_handler(2258) [C4.1:2][0x106740e90] Writing SSL3_RT_HANDSHAKE 512 bytes Default 10:35:42.185327+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client enter_early_data Default 10:35:42.185376+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C4.1:2][0x106740e90] Adding message(1) Default 10:35:42.185426+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client read_server_hello Default 10:35:42.185476+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C4.1:2][0x106740e90] Adding message(2) Default 10:35:42.185535+0800 BabyApp boringssl_session_handshake_incomplete(170) [C4.1:2][0x106740e90] Handshake incomplete: waiting for data to read [2] Default 10:35:42.185585+0800 BabyApp boringssl_session_handshake_incomplete(170) [C4.1:2][0x106740e90] Handshake incomplete: waiting for data to read [2] Default 10:35:42.185632+0800 BabyApp boringssl_session_handshake_incomplete(170) [C4.1:2][0x106740e90] Handshake incomplete: waiting for data to read [2] Default 10:35:42.185682+0800 BabyApp boringssl_session_handshake_incomplete(170) [C4.1:2][0x106740e90] Handshake incomplete: waiting for data to read [2] Default 10:35:42.185731+0800 BabyApp boringssl_context_message_handler(2258) [C3.1:2][0x10673c9f0] Reading SSL3_RT_HANDSHAKE 262 bytes Default 10:35:42.185784+0800 BabyApp boringssl_context_new_session_handler(1117) [C3.1:2][0x10673c9f0] New session available Default 10:35:42.185832+0800 BabyApp boringssl_context_message_handler(2258) [C3.1:2][0x10673c9f0] Reading SSL3_RT_HANDSHAKE 262 bytes Default 10:35:42.185883+0800 BabyApp boringssl_context_new_session_handler(1117) [C3.1:2][0x10673c9f0] New session available Default 10:35:42.195405+0800 BabyApp boringssl_context_message_handler(2258) [C4.1:2][0x106740e90] Reading SSL3_RT_HANDSHAKE 93 bytes Default 10:35:42.195477+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client read_server_certificate Default 10:35:42.195530+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C4.1:2][0x106740e90] Adding message(2) Default 10:35:42.195584+0800 BabyApp boringssl_context_message_handler(2258) [C4.1:2][0x106740e90] Reading SSL3_RT_HANDSHAKE 4381 bytes Default 10:35:42.195635+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client read_certificate_status Default 10:35:42.195687+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client verify_server_certificate Default 10:35:42.195738+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C4.1:2][0x106740e90] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:42.195864+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C4.1:2][0x106740e90] SecTrustCreateWithCertificates result: 0 Default 10:35:42.195916+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C4.1:2][0x106740e90] No TLS-provided OCSP response Default 10:35:42.195966+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C4.1:2][0x106740e90] No TLS-provided SCTs Default 10:35:42.196141+0800 BabyApp boringssl_context_certificate_verify_callback(2071) [C4.1:2][0x106740e90] Asyncing for verify block Default 10:35:42.196197+0800 BabyApp boringssl_session_handshake_incomplete(170) [C4.1:2][0x106740e90] Handshake incomplete: certificate evaluation result pending [16] Default 10:35:42.196248+0800 BabyApp boringssl_context_certificate_verify_callback(2040) [C4.1:2][0x106740e90] Verification already in progress. Default 10:35:42.196300+0800 BabyApp boringssl_session_handshake_incomplete(170) [C4.1:2][0x106740e90] Handshake incomplete: certificate evaluation result pending [16] Default 10:35:42.196351+0800 BabyApp boringssl_context_certificate_verify_callback(2040) [C4.1:2][0x106740e90] Verification already in progress. Default 10:35:42.196402+0800 BabyApp boringssl_session_handshake_incomplete(170) [C4.1:2][0x106740e90] Handshake incomplete: certificate evaluation result pending [16] Default 10:35:42.196449+0800 BabyApp Connection 4: asked to evaluate TLS Trust Default 10:35:42.196815+0800 BabyApp Task .<4> auth completion disp=1 cred=0x0 Default 10:35:42.205027+0800 BabyApp System Trust Evaluation yielded status(0) Default 10:35:42.212583+0800 BabyApp Connection 4: TLS Trust result 0 Default 10:35:42.212677+0800 BabyApp boringssl_context_certificate_verify_callback_block_invoke_3(2080) [C4.1:2][0x106740e90] Returning from verify block Default 10:35:42.212836+0800 BabyApp boringssl_context_certificate_verify_callback(2047) [C4.1:2][0x106740e90] Setting trust result to ssl_verify_ok Default 10:35:42.212899+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client read_server_key_exchange Default 10:35:42.212975+0800 BabyApp boringssl_context_message_handler(2258) [C4.1:2][0x106740e90] Reading SSL3_RT_HANDSHAKE 333 bytes Default 10:35:42.213238+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client read_certificate_request Default 10:35:42.213538+0800 BabyApp boringssl_context_message_handler(2258) [C4.1:2][0x106740e90] Reading SSL3_RT_HANDSHAKE 4 bytes Default 10:35:42.213601+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client read_server_hello_done Default 10:35:42.213655+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client send_client_certificate Default 10:35:42.213706+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C4.1:2][0x106740e90] Adding message(14) Default 10:35:42.213813+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client send_client_key_exchange Default 10:35:42.214298+0800 BabyApp boringssl_context_message_handler(2258) [C4.1:2][0x106740e90] Writing SSL3_RT_HANDSHAKE 70 bytes Default 10:35:42.214484+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client send_client_certificate_verify Default 10:35:42.214550+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client send_client_finished Default 10:35:42.214612+0800 BabyApp boringssl_context_message_handler(2258) [C4.1:2][0x106740e90] Writing SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:42.214672+0800 BabyApp boringssl_context_message_handler(2258) [C4.1:2][0x106740e90] Writing SSL3_RT_HANDSHAKE 16 bytes Default 10:35:42.214721+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client finish_flight Default 10:35:42.214771+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client read_session_ticket Default 10:35:42.214821+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client process_change_cipher_spec Default 10:35:42.214869+0800 BabyApp boringssl_session_handshake_incomplete(170) [C4.1:2][0x106740e90] Handshake incomplete: waiting for data to read [2] Default 10:35:42.214921+0800 BabyApp boringssl_session_handshake_incomplete(170) [C4.1:2][0x106740e90] Handshake incomplete: waiting for data to read [2] Default 10:35:42.219599+0800 BabyApp Task .<6> resuming, QOS(0x19) Voucher (null) Default 10:35:42.219647+0800 BabyApp Task .<7> resuming, QOS(0x19) Voucher (null) Default 10:35:42.220132+0800 BabyApp boringssl_context_message_handler(2258) [C4.1:2][0x106740e90] Reading SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:42.220191+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client read_server_finished Default 10:35:42.220243+0800 BabyApp boringssl_context_message_handler(2258) [C4.1:2][0x106740e90] Reading SSL3_RT_HANDSHAKE 16 bytes Default 10:35:42.220294+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client finish_client_handshake Default 10:35:42.220344+0800 BabyApp boringssl_context_new_session_handler(1117) [C4.1:2][0x106740e90] New session available Default 10:35:42.220452+0800 BabyApp boringssl_context_info_handler(1983) [C4.1:2][0x106740e90] Client handshake state: TLS client done Default 10:35:42.220988+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C4.1:2][0x106740e90] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:42.221716+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C4.1:2][0x106740e90] SecTrustCreateWithCertificates result: 0 Default 10:35:42.221834+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C4.1:2][0x106740e90] No TLS-provided OCSP response Default 10:35:42.221956+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C4.1:2][0x106740e90] No TLS-provided SCTs Default 10:35:42.222083+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C4.1:2][0x106740e90] Adding message(20) Default 10:35:42.222192+0800 BabyApp boringssl_context_info_handler(1974) [C4.1:2][0x106740e90] Client handshake done Default 10:35:42.222255+0800 BabyApp nw_protocol_boringssl_signal_connected(701) [C4.1:2][0x106740e90] TLS connected [version(0x0303) ciphersuite(0xc02f) group(0x0017) peer_key(0x0601) alpn() resumed(0) offered_ticket(0) false_started(0) ocsp(0) sct(0)] Default 10:35:42.222436+0800 BabyApp nw_flow_connected [C4.1 IPv4#1078b35a:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Output protocol connected Default 10:35:42.223157+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C4] reporting state ready Default 10:35:42.224107+0800 BabyApp Task .<6> {strength 1, tls 8, ct 0, sub 0, sig 0, ciphers 1, bundle 0, builtin 0} Default 10:35:42.224170+0800 BabyApp Task .<6> waiting for setup of Connection 4 Default 10:35:42.224231+0800 BabyApp Task .<7> {strength 1, tls 8, ct 0, sub 0, sig 0, ciphers 1, bundle 0, builtin 0} Default 10:35:42.224288+0800 BabyApp Task .<7> waiting for setup of Connection 4 Default 10:35:42.224334+0800 BabyApp Connection 4: connected successfully Default 10:35:42.224379+0800 BabyApp Connection 4: TLS handshake complete Default 10:35:42.224447+0800 BabyApp Connection 4: ready C(N) E(N) Default 10:35:42.224556+0800 BabyApp Task .<4> now using Connection 4 Default 10:35:42.224605+0800 BabyApp Connection 4: received viability advisory(Y) Default 10:35:42.224937+0800 BabyApp Task .<4> sent request, body N 0 Default 10:35:42.225430+0800 BabyApp Connection 5: enabling TLS Default 10:35:42.225481+0800 BabyApp Connection 5: starting, TC(0x0) Default 10:35:42.225538+0800 BabyApp [C5 01CEF2BA-FBE0-4F58-89A9-5A64ACAB19EE Hostname#c459f881:443 tcp, url hash: d9b6b180, tls] start Default 10:35:42.225963+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C5] reporting state preparing Default 10:35:42.226166+0800 BabyApp Task <3967796F-4013-4E7B-BC40-EC6AF1E6DEE0>.<5> setting up Connection 5 Default 10:35:42.226488+0800 BabyApp Connection 6: enabling TLS Default 10:35:42.226623+0800 BabyApp Connection 6: starting, TC(0x0) Default 10:35:42.226675+0800 BabyApp [C6 B25EF189-E348-4FC2-826C-FF01D68552CE Hostname#c459f881:443 tcp, url hash: 425116fb, tls] start Default 10:35:42.227824+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C6] reporting state preparing Default 10:35:42.228061+0800 BabyApp Task .<6> setting up Connection 6 Default 10:35:42.228344+0800 BabyApp Connection 7: enabling TLS Default 10:35:42.228439+0800 BabyApp Connection 7: starting, TC(0x0) Default 10:35:42.228487+0800 BabyApp [C7 E82D6B52-92A9-408E-BF50-2E148B1F442F Hostname#c459f881:443 tcp, url hash: dc2ac923, tls] start Default 10:35:42.229235+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C7] reporting state preparing Default 10:35:42.229579+0800 BabyApp Task .<7> setting up Connection 7 Default 10:35:42.234190+0800 BabyApp tcp_output [C5.1:3] flags=[S] seq=3837231957, ack=0, win=65535 state=SYN_SENT rcv_nxt=0, snd_una=3837231957 Default 10:35:42.238131+0800 BabyApp tcp_output [C6.1:3] flags=[S] seq=831545321, ack=0, win=65535 state=SYN_SENT rcv_nxt=0, snd_una=831545321 Default 10:35:42.243117+0800 BabyApp tcp_output [C7.1:3] flags=[S] seq=1834829406, ack=0, win=65535 state=SYN_SENT rcv_nxt=0, snd_una=1834829406 Default 10:35:42.243722+0800 BabyApp tcp_input [C5.1:3] flags=[S.] seq=3247310626, ack=3837231958, win=28960 state=SYN_SENT rcv_nxt=0, snd_una=3837231957 Default 10:35:42.243781+0800 BabyApp nw_flow_connected [C5.1 IPv4#1078b35a:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Transport protocol connected Default 10:35:42.243998+0800 BabyApp boringssl_context_set_handshake_config(1471) [0x10600b1d0] set tls_handshake_config_standard Default 10:35:42.244050+0800 BabyApp boringssl_context_set_min_version(324) [0x10600b1d0] set 0x0301 Default 10:35:42.244100+0800 BabyApp boringssl_context_set_max_version(308) [0x10600b1d0] set 0x0304 Default 10:35:42.244153+0800 BabyApp boringssl_context_set_cipher_suites(843) [0x10600b1d0] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:AES256-SHA:AES128-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:DES-CBC3-SHA Default 10:35:42.244215+0800 BabyApp boringssl_context_set_remote_address(2555) [0x10600b1d0] Saving remote IPv4 address Default 10:35:42.244302+0800 BabyApp boringssl_session_install_association_state(1258) [0x10600b1d0] Client session cache hit Default 10:35:42.244488+0800 BabyApp boringssl_session_set_peer_hostname(1154) [0x10600b1d0] SNI Default 10:35:42.244617+0800 BabyApp boringssl_context_set_min_version(324) [C5.1:2][0x10600b1d0] set 0x0303 Default 10:35:42.244671+0800 BabyApp boringssl_context_set_fallback(374) [C5.1:2][0x10600b1d0] set false Default 10:35:42.244740+0800 BabyApp boringssl_context_set_session_ticket_enabled(440) [C5.1:2][0x10600b1d0] set false Default 10:35:42.244802+0800 BabyApp boringssl_context_set_false_start(410) [C5.1:2][0x10600b1d0] set false Default 10:35:42.244867+0800 BabyApp boringssl_context_set_enforce_ev(400) [C5.1:2][0x10600b1d0] set false Default 10:35:42.244916+0800 BabyApp boringssl_context_set_ats_enforced(1285) [C5.1:2][0x10600b1d0] set false Default 10:35:42.244977+0800 BabyApp boringssl_context_set_ats_minimum_rsa_key_size(1294) [C5.1:2][0x10600b1d0] set 0 Default 10:35:42.245040+0800 BabyApp boringssl_context_set_ats_minimum_ecdsa_key_size(1303) [C5.1:2][0x10600b1d0] set 0 Default 10:35:42.245100+0800 BabyApp boringssl_context_set_ats_minimum_signature_algorithm(1313) [C5.1:2][0x10600b1d0] set 0 Default 10:35:42.245152+0800 BabyApp boringssl_session_set_peer_hostname(1154) [C5.1:2][0x10600b1d0] SNI Default 10:35:42.245213+0800 BabyApp boringssl_context_set_cipher_suites(843) [C5.1:2][0x10600b1d0] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305 Default 10:35:42.245273+0800 BabyApp nw_protocol_boringssl_begin_connection(497) [C5.1:2][0x10600b1d0] early data disabled Default 10:35:42.245320+0800 BabyApp boringssl_context_info_handler(1970) [C5.1:2][0x10600b1d0] Client handshake started Default 10:35:42.245439+0800 BabyApp boringssl_context_message_handler(2258) [C5.1:2][0x10600b1d0] Writing SSL3_RT_HANDSHAKE 512 bytes Default 10:35:42.245501+0800 BabyApp boringssl_context_info_handler(1983) [C5.1:2][0x10600b1d0] Client handshake state: TLS client enter_early_data Default 10:35:42.245560+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C5.1:2][0x10600b1d0] Adding message(1) Default 10:35:42.245610+0800 BabyApp boringssl_context_info_handler(1983) [C5.1:2][0x10600b1d0] Client handshake state: TLS client read_server_hello Default 10:35:42.245682+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C5.1:2][0x10600b1d0] Adding message(2) Default 10:35:42.245745+0800 BabyApp boringssl_session_handshake_incomplete(170) [C5.1:2][0x10600b1d0] Handshake incomplete: waiting for data to read [2] Default 10:35:42.245805+0800 BabyApp boringssl_session_handshake_incomplete(170) [C5.1:2][0x10600b1d0] Handshake incomplete: waiting for data to read [2] Default 10:35:42.245856+0800 BabyApp boringssl_session_handshake_incomplete(170) [C5.1:2][0x10600b1d0] Handshake incomplete: waiting for data to read [2] Default 10:35:42.245914+0800 BabyApp boringssl_session_handshake_incomplete(170) [C5.1:2][0x10600b1d0] Handshake incomplete: waiting for data to read [2] Default 10:35:42.247288+0800 BabyApp tcp_input [C6.1:3] flags=[S.] seq=1593997566, ack=831545322, win=28960 state=SYN_SENT rcv_nxt=0, snd_una=831545321 Default 10:35:42.247364+0800 BabyApp nw_flow_connected [C6.1 IPv4#1078b35a:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Transport protocol connected Default 10:35:42.247601+0800 BabyApp boringssl_context_set_handshake_config(1471) [0x106753e40] set tls_handshake_config_standard Default 10:35:42.247664+0800 BabyApp boringssl_context_set_min_version(324) [0x106753e40] set 0x0301 Default 10:35:42.247730+0800 BabyApp boringssl_context_set_max_version(308) [0x106753e40] set 0x0304 Default 10:35:42.247845+0800 BabyApp boringssl_context_set_cipher_suites(843) [0x106753e40] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:AES256-SHA:AES128-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:DES-CBC3-SHA Default 10:35:42.248073+0800 BabyApp boringssl_context_set_remote_address(2555) [0x106753e40] Saving remote IPv4 address Default 10:35:42.248198+0800 BabyApp boringssl_session_install_association_state(1262) [0x106753e40] Client session cache miss Default 10:35:42.248348+0800 BabyApp boringssl_session_set_peer_hostname(1154) [0x106753e40] SNI Default 10:35:42.248410+0800 BabyApp boringssl_context_set_min_version(324) [C6.1:2][0x106753e40] set 0x0303 Default 10:35:42.248481+0800 BabyApp boringssl_context_set_fallback(374) [C6.1:2][0x106753e40] set false Default 10:35:42.248539+0800 BabyApp boringssl_context_set_session_ticket_enabled(440) [C6.1:2][0x106753e40] set false Default 10:35:42.248600+0800 BabyApp boringssl_context_set_false_start(410) [C6.1:2][0x106753e40] set false Default 10:35:42.248660+0800 BabyApp boringssl_context_set_enforce_ev(400) [C6.1:2][0x106753e40] set false Default 10:35:42.248720+0800 BabyApp boringssl_context_set_ats_enforced(1285) [C6.1:2][0x106753e40] set false Default 10:35:42.248780+0800 BabyApp boringssl_context_set_ats_minimum_rsa_key_size(1294) [C6.1:2][0x106753e40] set 0 Default 10:35:42.248888+0800 BabyApp boringssl_context_set_ats_minimum_ecdsa_key_size(1303) [C6.1:2][0x106753e40] set 0 Default 10:35:42.249017+0800 BabyApp boringssl_context_set_ats_minimum_signature_algorithm(1313) [C6.1:2][0x106753e40] set 0 Default 10:35:42.249078+0800 BabyApp boringssl_session_set_peer_hostname(1154) [C6.1:2][0x106753e40] SNI Default 10:35:42.249201+0800 BabyApp boringssl_context_set_cipher_suites(843) [C6.1:2][0x106753e40] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305 Default 10:35:42.249250+0800 BabyApp nw_protocol_boringssl_begin_connection(497) [C6.1:2][0x106753e40] early data disabled Default 10:35:42.249327+0800 BabyApp boringssl_context_info_handler(1970) [C6.1:2][0x106753e40] Client handshake started Default 10:35:42.249406+0800 BabyApp boringssl_context_message_handler(2258) [C6.1:2][0x106753e40] Writing SSL3_RT_HANDSHAKE 512 bytes Default 10:35:42.249475+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client enter_early_data Default 10:35:42.249535+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C6.1:2][0x106753e40] Adding message(1) Default 10:35:42.249593+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client read_server_hello Default 10:35:42.249654+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C6.1:2][0x106753e40] Adding message(2) Default 10:35:42.249711+0800 BabyApp boringssl_session_handshake_incomplete(170) [C6.1:2][0x106753e40] Handshake incomplete: waiting for data to read [2] Default 10:35:42.249773+0800 BabyApp boringssl_session_handshake_incomplete(170) [C6.1:2][0x106753e40] Handshake incomplete: waiting for data to read [2] Default 10:35:42.249871+0800 BabyApp tcp_input [C7.1:3] flags=[S.] seq=2528894102, ack=1834829407, win=28960 state=SYN_SENT rcv_nxt=0, snd_una=1834829406 Default 10:35:42.249938+0800 BabyApp nw_flow_connected [C7.1 IPv4#1078b35a:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Transport protocol connected Default 10:35:42.250200+0800 BabyApp boringssl_context_set_handshake_config(1471) [0x104f0f140] set tls_handshake_config_standard Default 10:35:42.250308+0800 BabyApp boringssl_context_set_min_version(324) [0x104f0f140] set 0x0301 Default 10:35:42.250366+0800 BabyApp boringssl_context_set_max_version(308) [0x104f0f140] set 0x0304 Default 10:35:42.250422+0800 BabyApp boringssl_context_set_cipher_suites(843) [0x104f0f140] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:AES256-SHA:AES128-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:DES-CBC3-SHA Default 10:35:42.250468+0800 BabyApp boringssl_context_set_remote_address(2555) [0x104f0f140] Saving remote IPv4 address Default 10:35:42.250545+0800 BabyApp boringssl_session_install_association_state(1262) [0x104f0f140] Client session cache miss Default 10:35:42.250592+0800 BabyApp boringssl_session_set_peer_hostname(1154) [0x104f0f140] SNI Default 10:35:42.250659+0800 BabyApp boringssl_context_set_min_version(324) [C7.1:2][0x104f0f140] set 0x0303 Default 10:35:42.250713+0800 BabyApp boringssl_context_set_fallback(374) [C7.1:2][0x104f0f140] set false Default 10:35:42.250777+0800 BabyApp boringssl_context_set_session_ticket_enabled(440) [C7.1:2][0x104f0f140] set false Default 10:35:42.250848+0800 BabyApp boringssl_context_set_false_start(410) [C7.1:2][0x104f0f140] set false Default 10:35:42.250909+0800 BabyApp boringssl_context_set_enforce_ev(400) [C7.1:2][0x104f0f140] set false Default 10:35:42.250967+0800 BabyApp boringssl_context_set_ats_enforced(1285) [C7.1:2][0x104f0f140] set false Default 10:35:42.251030+0800 BabyApp boringssl_context_set_ats_minimum_rsa_key_size(1294) [C7.1:2][0x104f0f140] set 0 Default 10:35:42.251091+0800 BabyApp boringssl_context_set_ats_minimum_ecdsa_key_size(1303) [C7.1:2][0x104f0f140] set 0 Default 10:35:42.251161+0800 BabyApp boringssl_context_set_ats_minimum_signature_algorithm(1313) [C7.1:2][0x104f0f140] set 0 Default 10:35:42.251218+0800 BabyApp boringssl_session_set_peer_hostname(1154) [C7.1:2][0x104f0f140] SNI Default 10:35:42.251280+0800 BabyApp boringssl_context_set_cipher_suites(843) [C7.1:2][0x104f0f140] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305 Default 10:35:42.251405+0800 BabyApp nw_protocol_boringssl_begin_connection(497) [C7.1:2][0x104f0f140] early data disabled Default 10:35:42.251468+0800 BabyApp boringssl_context_info_handler(1970) [C7.1:2][0x104f0f140] Client handshake started Default 10:35:42.251542+0800 BabyApp boringssl_context_message_handler(2258) [C7.1:2][0x104f0f140] Writing SSL3_RT_HANDSHAKE 512 bytes Default 10:35:42.251602+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client enter_early_data Default 10:35:42.251663+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C7.1:2][0x104f0f140] Adding message(1) Default 10:35:42.251724+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client read_server_hello Default 10:35:42.251784+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C7.1:2][0x104f0f140] Adding message(2) Default 10:35:42.251841+0800 BabyApp boringssl_session_handshake_incomplete(170) [C7.1:2][0x104f0f140] Handshake incomplete: waiting for data to read [2] Default 10:35:42.251892+0800 BabyApp boringssl_session_handshake_incomplete(170) [C7.1:2][0x104f0f140] Handshake incomplete: waiting for data to read [2] Default 10:35:42.251957+0800 BabyApp boringssl_session_handshake_incomplete(170) [C6.1:2][0x106753e40] Handshake incomplete: waiting for data to read [2] Default 10:35:42.252017+0800 BabyApp boringssl_session_handshake_incomplete(170) [C6.1:2][0x106753e40] Handshake incomplete: waiting for data to read [2] Default 10:35:42.252084+0800 BabyApp boringssl_session_handshake_incomplete(170) [C7.1:2][0x104f0f140] Handshake incomplete: waiting for data to read [2] Default 10:35:42.252140+0800 BabyApp boringssl_session_handshake_incomplete(170) [C7.1:2][0x104f0f140] Handshake incomplete: waiting for data to read [2] Default 10:35:42.252202+0800 BabyApp boringssl_context_message_handler(2258) [C5.1:2][0x10600b1d0] Reading SSL3_RT_HANDSHAKE 81 bytes Default 10:35:42.252260+0800 BabyApp boringssl_context_info_handler(1983) [C5.1:2][0x10600b1d0] Client handshake state: TLS client read_session_ticket Default 10:35:42.252316+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C5.1:2][0x10600b1d0] Adding message(2) Default 10:35:42.252374+0800 BabyApp boringssl_context_info_handler(1983) [C5.1:2][0x10600b1d0] Client handshake state: TLS client process_change_cipher_spec Default 10:35:42.252424+0800 BabyApp boringssl_context_message_handler(2258) [C5.1:2][0x10600b1d0] Reading SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:42.252485+0800 BabyApp boringssl_context_info_handler(1983) [C5.1:2][0x10600b1d0] Client handshake state: TLS client read_server_finished Default 10:35:42.252542+0800 BabyApp boringssl_context_message_handler(2258) [C5.1:2][0x10600b1d0] Reading SSL3_RT_HANDSHAKE 16 bytes Default 10:35:42.252603+0800 BabyApp boringssl_context_info_handler(1983) [C5.1:2][0x10600b1d0] Client handshake state: TLS client send_client_finished Default 10:35:42.252650+0800 BabyApp boringssl_context_message_handler(2258) [C5.1:2][0x10600b1d0] Writing SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:42.252707+0800 BabyApp boringssl_context_message_handler(2258) [C5.1:2][0x10600b1d0] Writing SSL3_RT_HANDSHAKE 16 bytes Default 10:35:42.252765+0800 BabyApp boringssl_context_info_handler(1983) [C5.1:2][0x10600b1d0] Client handshake state: TLS client finish_flight Default 10:35:42.252811+0800 BabyApp boringssl_context_info_handler(1983) [C5.1:2][0x10600b1d0] Client handshake state: TLS client finish_client_handshake Default 10:35:42.252871+0800 BabyApp boringssl_context_info_handler(1983) [C5.1:2][0x10600b1d0] Client handshake state: TLS client done Default 10:35:42.252932+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C5.1:2][0x10600b1d0] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:42.253046+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C5.1:2][0x10600b1d0] SecTrustCreateWithCertificates result: 0 Default 10:35:42.253093+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C5.1:2][0x10600b1d0] No TLS-provided OCSP response Default 10:35:42.253154+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C5.1:2][0x10600b1d0] No TLS-provided SCTs Default 10:35:42.253320+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C5.1:2][0x10600b1d0] Adding message(20) Default 10:35:42.253375+0800 BabyApp boringssl_context_info_handler(1974) [C5.1:2][0x10600b1d0] Client handshake done Default 10:35:42.253427+0800 BabyApp nw_protocol_boringssl_signal_connected(701) [C5.1:2][0x10600b1d0] TLS connected [version(0x0303) ciphersuite(0xc02f) group(0x0017) peer_key(0x0601) alpn() resumed(1) offered_ticket(0) false_started(0) ocsp(0) sct(0)] Default 10:35:42.253578+0800 BabyApp nw_flow_connected [C5.1 IPv4#1078b35a:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Output protocol connected Default 10:35:42.253998+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C5] reporting state ready Default 10:35:42.254292+0800 BabyApp Connection 5: connected successfully Default 10:35:42.254358+0800 BabyApp Connection 5: TLS handshake complete Default 10:35:42.254422+0800 BabyApp Connection 5: ready C(N) E(N) Default 10:35:42.254662+0800 BabyApp Task <3967796F-4013-4E7B-BC40-EC6AF1E6DEE0>.<5> now using Connection 5 Default 10:35:42.254734+0800 BabyApp Connection 5: received viability advisory(Y) Default 10:35:42.254795+0800 BabyApp Task <3967796F-4013-4E7B-BC40-EC6AF1E6DEE0>.<5> sent request, body N 0 Default 10:35:42.256572+0800 BabyApp boringssl_context_message_handler(2258) [C6.1:2][0x106753e40] Reading SSL3_RT_HANDSHAKE 93 bytes Default 10:35:42.256680+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client read_server_certificate Default 10:35:42.256728+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C6.1:2][0x106753e40] Adding message(2) Default 10:35:42.256772+0800 BabyApp boringssl_context_message_handler(2258) [C6.1:2][0x106753e40] Reading SSL3_RT_HANDSHAKE 4381 bytes Default 10:35:42.256896+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client read_certificate_status Default 10:35:42.256997+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client verify_server_certificate Default 10:35:42.257287+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C6.1:2][0x106753e40] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:42.257386+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C6.1:2][0x106753e40] SecTrustCreateWithCertificates result: 0 Default 10:35:42.257435+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C6.1:2][0x106753e40] No TLS-provided OCSP response Default 10:35:42.257534+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C6.1:2][0x106753e40] No TLS-provided SCTs Default 10:35:42.257633+0800 BabyApp boringssl_context_certificate_verify_callback(2071) [C6.1:2][0x106753e40] Asyncing for verify block Default 10:35:42.257683+0800 BabyApp boringssl_session_handshake_incomplete(170) [C6.1:2][0x106753e40] Handshake incomplete: certificate evaluation result pending [16] Default 10:35:42.257733+0800 BabyApp boringssl_context_certificate_verify_callback(2040) [C6.1:2][0x106753e40] Verification already in progress. Default 10:35:42.257781+0800 BabyApp boringssl_session_handshake_incomplete(170) [C6.1:2][0x106753e40] Handshake incomplete: certificate evaluation result pending [16] Default 10:35:42.257842+0800 BabyApp boringssl_context_certificate_verify_callback(2040) [C6.1:2][0x106753e40] Verification already in progress. Default 10:35:42.257891+0800 BabyApp boringssl_session_handshake_incomplete(170) [C6.1:2][0x106753e40] Handshake incomplete: certificate evaluation result pending [16] Default 10:35:42.257936+0800 BabyApp Connection 6: asked to evaluate TLS Trust Default 10:35:42.258388+0800 BabyApp Task .<6> auth completion disp=1 cred=0x0 Default 10:35:42.259351+0800 BabyApp boringssl_context_message_handler(2258) [C7.1:2][0x104f0f140] Reading SSL3_RT_HANDSHAKE 93 bytes Default 10:35:42.259404+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client read_server_certificate Default 10:35:42.259459+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C7.1:2][0x104f0f140] Adding message(2) Default 10:35:42.259512+0800 BabyApp boringssl_session_handshake_incomplete(170) [C7.1:2][0x104f0f140] Handshake incomplete: waiting for data to read [2] Default 10:35:42.259566+0800 BabyApp boringssl_session_handshake_incomplete(170) [C7.1:2][0x104f0f140] Handshake incomplete: waiting for data to read [2] Default 10:35:42.259617+0800 BabyApp boringssl_session_handshake_incomplete(170) [C7.1:2][0x104f0f140] Handshake incomplete: waiting for data to read [2] Default 10:35:42.260292+0800 BabyApp boringssl_context_message_handler(2258) [C7.1:2][0x104f0f140] Reading SSL3_RT_HANDSHAKE 4381 bytes Default 10:35:42.260364+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client read_certificate_status Default 10:35:42.260482+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client verify_server_certificate Default 10:35:42.262698+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C7.1:2][0x104f0f140] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:42.262950+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C7.1:2][0x104f0f140] SecTrustCreateWithCertificates result: 0 Default 10:35:42.263070+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C7.1:2][0x104f0f140] No TLS-provided OCSP response Default 10:35:42.263199+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C7.1:2][0x104f0f140] No TLS-provided SCTs Default 10:35:42.263725+0800 BabyApp boringssl_context_certificate_verify_callback(2071) [C7.1:2][0x104f0f140] Asyncing for verify block Default 10:35:42.263782+0800 BabyApp boringssl_session_handshake_incomplete(170) [C7.1:2][0x104f0f140] Handshake incomplete: certificate evaluation result pending [16] Default 10:35:42.263832+0800 BabyApp Connection 7: asked to evaluate TLS Trust Default 10:35:42.263926+0800 BabyApp Task .<7> auth completion disp=1 cred=0x0 Default 10:35:42.265954+0800 BabyApp System Trust Evaluation yielded status(0) Default 10:35:42.272095+0800 BabyApp System Trust Evaluation yielded status(0) Default 10:35:42.278779+0800 BabyApp Connection 6: TLS Trust result 0 Default 10:35:42.278857+0800 BabyApp boringssl_context_certificate_verify_callback_block_invoke_3(2080) [C6.1:2][0x106753e40] Returning from verify block Default 10:35:42.278985+0800 BabyApp boringssl_context_certificate_verify_callback(2047) [C6.1:2][0x106753e40] Setting trust result to ssl_verify_ok Default 10:35:42.279047+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client read_server_key_exchange Default 10:35:42.279109+0800 BabyApp boringssl_context_message_handler(2258) [C6.1:2][0x106753e40] Reading SSL3_RT_HANDSHAKE 333 bytes Default 10:35:42.279444+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client read_certificate_request Default 10:35:42.279517+0800 BabyApp boringssl_context_message_handler(2258) [C6.1:2][0x106753e40] Reading SSL3_RT_HANDSHAKE 4 bytes Default 10:35:42.279577+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client read_server_hello_done Default 10:35:42.279635+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client send_client_certificate Default 10:35:42.279706+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C6.1:2][0x106753e40] Adding message(14) Default 10:35:42.279781+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client send_client_key_exchange Default 10:35:42.280517+0800 BabyApp boringssl_context_message_handler(2258) [C6.1:2][0x106753e40] Writing SSL3_RT_HANDSHAKE 70 bytes Default 10:35:42.280587+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client send_client_certificate_verify Default 10:35:42.280644+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client send_client_finished Default 10:35:42.280700+0800 BabyApp boringssl_context_message_handler(2258) [C6.1:2][0x106753e40] Writing SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:42.280810+0800 BabyApp boringssl_context_message_handler(2258) [C6.1:2][0x106753e40] Writing SSL3_RT_HANDSHAKE 16 bytes Default 10:35:42.280864+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client finish_flight Default 10:35:42.281070+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client read_session_ticket Default 10:35:42.281243+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client process_change_cipher_spec Default 10:35:42.281404+0800 BabyApp boringssl_session_handshake_incomplete(170) [C6.1:2][0x106753e40] Handshake incomplete: waiting for data to read [2] Default 10:35:42.281474+0800 BabyApp boringssl_session_handshake_incomplete(170) [C6.1:2][0x106753e40] Handshake incomplete: waiting for data to read [2] Default 10:35:42.284893+0800 BabyApp Connection 7: TLS Trust result 0 Default 10:35:42.284985+0800 BabyApp boringssl_context_certificate_verify_callback_block_invoke_3(2080) [C7.1:2][0x104f0f140] Returning from verify block Default 10:35:42.285128+0800 BabyApp boringssl_context_certificate_verify_callback(2047) [C7.1:2][0x104f0f140] Setting trust result to ssl_verify_ok Default 10:35:42.285186+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client read_server_key_exchange Default 10:35:42.285270+0800 BabyApp boringssl_context_message_handler(2258) [C7.1:2][0x104f0f140] Reading SSL3_RT_HANDSHAKE 333 bytes Default 10:35:42.285559+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client read_certificate_request Default 10:35:42.285636+0800 BabyApp boringssl_context_message_handler(2258) [C7.1:2][0x104f0f140] Reading SSL3_RT_HANDSHAKE 4 bytes Default 10:35:42.285691+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client read_server_hello_done Default 10:35:42.285749+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client send_client_certificate Default 10:35:42.285806+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C7.1:2][0x104f0f140] Adding message(14) Default 10:35:42.285878+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client send_client_key_exchange Default 10:35:42.286242+0800 BabyApp boringssl_context_message_handler(2258) [C7.1:2][0x104f0f140] Writing SSL3_RT_HANDSHAKE 70 bytes Default 10:35:42.286303+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client send_client_certificate_verify Default 10:35:42.286365+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client send_client_finished Default 10:35:42.286416+0800 BabyApp boringssl_context_message_handler(2258) [C7.1:2][0x104f0f140] Writing SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:42.286468+0800 BabyApp boringssl_context_message_handler(2258) [C7.1:2][0x104f0f140] Writing SSL3_RT_HANDSHAKE 16 bytes Default 10:35:42.286519+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client finish_flight Default 10:35:42.286567+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client read_session_ticket Default 10:35:42.286617+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client process_change_cipher_spec Default 10:35:42.286668+0800 BabyApp boringssl_session_handshake_incomplete(170) [C7.1:2][0x104f0f140] Handshake incomplete: waiting for data to read [2] Default 10:35:42.286719+0800 BabyApp boringssl_session_handshake_incomplete(170) [C7.1:2][0x104f0f140] Handshake incomplete: waiting for data to read [2] Default 10:35:42.286932+0800 BabyApp boringssl_context_message_handler(2258) [C6.1:2][0x106753e40] Reading SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:42.287003+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client read_server_finished Default 10:35:42.287082+0800 BabyApp boringssl_context_message_handler(2258) [C6.1:2][0x106753e40] Reading SSL3_RT_HANDSHAKE 16 bytes Default 10:35:42.287142+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client finish_client_handshake Default 10:35:42.287235+0800 BabyApp boringssl_context_new_session_handler(1117) [C6.1:2][0x106753e40] New session available Default 10:35:42.287296+0800 BabyApp boringssl_context_info_handler(1983) [C6.1:2][0x106753e40] Client handshake state: TLS client done Default 10:35:42.287410+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C6.1:2][0x106753e40] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:42.287636+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C6.1:2][0x106753e40] SecTrustCreateWithCertificates result: 0 Default 10:35:42.287760+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C6.1:2][0x106753e40] No TLS-provided OCSP response Default 10:35:42.287816+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C6.1:2][0x106753e40] No TLS-provided SCTs Default 10:35:42.288031+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C6.1:2][0x106753e40] Adding message(20) Default 10:35:42.288084+0800 BabyApp boringssl_context_info_handler(1974) [C6.1:2][0x106753e40] Client handshake done Default 10:35:42.288140+0800 BabyApp nw_protocol_boringssl_signal_connected(701) [C6.1:2][0x106753e40] TLS connected [version(0x0303) ciphersuite(0xc02f) group(0x0017) peer_key(0x0601) alpn() resumed(0) offered_ticket(0) false_started(0) ocsp(0) sct(0)] Default 10:35:42.288327+0800 BabyApp nw_flow_connected [C6.1 IPv4#1078b35a:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Output protocol connected Default 10:35:42.288822+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C6] reporting state ready Default 10:35:42.289109+0800 BabyApp Connection 6: connected successfully Default 10:35:42.289166+0800 BabyApp Connection 6: TLS handshake complete Default 10:35:42.289621+0800 BabyApp Connection 6: ready C(N) E(N) Default 10:35:42.289738+0800 BabyApp Task .<6> now using Connection 6 Default 10:35:42.289787+0800 BabyApp Connection 6: received viability advisory(Y) Default 10:35:42.289984+0800 BabyApp Task .<6> sent request, body N 0 Default 10:35:42.290847+0800 BabyApp boringssl_context_message_handler(2258) [C7.1:2][0x104f0f140] Reading SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:42.290925+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client read_server_finished Default 10:35:42.290987+0800 BabyApp boringssl_context_message_handler(2258) [C7.1:2][0x104f0f140] Reading SSL3_RT_HANDSHAKE 16 bytes Default 10:35:42.291047+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client finish_client_handshake Default 10:35:42.291105+0800 BabyApp boringssl_context_new_session_handler(1117) [C7.1:2][0x104f0f140] New session available Default 10:35:42.291167+0800 BabyApp boringssl_context_info_handler(1983) [C7.1:2][0x104f0f140] Client handshake state: TLS client done Default 10:35:42.291235+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C7.1:2][0x104f0f140] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:42.291414+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C7.1:2][0x104f0f140] SecTrustCreateWithCertificates result: 0 Default 10:35:42.291481+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C7.1:2][0x104f0f140] No TLS-provided OCSP response Default 10:35:42.291533+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C7.1:2][0x104f0f140] No TLS-provided SCTs Default 10:35:42.291635+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C7.1:2][0x104f0f140] Adding message(20) Default 10:35:42.291683+0800 BabyApp boringssl_context_info_handler(1974) [C7.1:2][0x104f0f140] Client handshake done Default 10:35:42.291779+0800 BabyApp nw_protocol_boringssl_signal_connected(701) [C7.1:2][0x104f0f140] TLS connected [version(0x0303) ciphersuite(0xc02f) group(0x0017) peer_key(0x0601) alpn() resumed(0) offered_ticket(0) false_started(0) ocsp(0) sct(0)] Default 10:35:42.292067+0800 BabyApp nw_flow_connected [C7.1 IPv4#1078b35a:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Output protocol connected Default 10:35:42.292444+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C7] reporting state ready Default 10:35:42.292788+0800 BabyApp Connection 7: connected successfully Default 10:35:42.292833+0800 BabyApp Connection 7: TLS handshake complete Default 10:35:42.292901+0800 BabyApp Connection 7: ready C(N) E(N) Default 10:35:42.293164+0800 BabyApp Task .<7> now using Connection 7 Default 10:35:42.293220+0800 BabyApp Connection 7: received viability advisory(Y) Default 10:35:42.293333+0800 BabyApp Task .<7> sent request, body N 0 Default 10:35:42.298024+0800 BabyApp Task .<8> resuming, QOS(0x19) Voucher (null) Default 10:35:42.298216+0800 BabyApp Task <820BE701-5090-41C5-A56D-0F91DF5D5B91>.<9> resuming, QOS(0x19) Voucher (null) Default 10:35:42.299422+0800 BabyApp Task .<8> {strength 1, tls 8, ct 0, sub 0, sig 0, ciphers 1, bundle 0, builtin 0} Default 10:35:42.299772+0800 BabyApp Task <820BE701-5090-41C5-A56D-0F91DF5D5B91>.<9> {strength 1, tls 8, ct 0, sub 0, sig 0, ciphers 1, bundle 0, builtin 0} Default 10:35:42.300029+0800 BabyApp Task <820BE701-5090-41C5-A56D-0F91DF5D5B91>.<9> waiting for setup of Connection 8 Default 10:35:42.300087+0800 BabyApp Connection 8: enabling TLS Default 10:35:42.300127+0800 BabyApp Connection 8: starting, TC(0x0) Default 10:35:42.300173+0800 BabyApp [C8 646B7F48-D053-47C8-B1C8-8FD8E4A13DE0 Hostname#2f786aa7:443 tcp, url hash: 2109b921, tls] start Default 10:35:42.300976+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C8] reporting state preparing Default 10:35:42.301239+0800 mDNSResponder [R1241] DNSServiceCreateConnection START PID[414](BabyApp) Default 10:35:42.301456+0800 mDNSResponder [R1242] DNSServiceGetAddrInfo(C000D000, 0, 0, ) START PID[414](BabyApp) Default 10:35:42.302099+0800 BabyApp Task .<8> setting up Connection 8 Default 10:35:42.303574+0800 mDNSResponder [R1241] DNSServiceCreateConnection STOP PID[414](BabyApp) Default 10:35:42.303622+0800 mDNSResponder [R1242] DNSServiceGetAddrInfo() STOP PID[414](BabyApp) Default 10:35:42.305841+0800 BabyApp tcp_output [C8.1:3] flags=[S] seq=1473586561, ack=0, win=65535 state=SYN_SENT rcv_nxt=0, snd_una=1473586561 Default 10:35:42.338864+0800 BabyApp TCP Conn 0x28072e1c0 SSL Handshake DONE Default 10:35:42.344161+0800 BabyApp tcp_input [C8.1:3] flags=[S.] seq=2699252733, ack=1473586562, win=32200 state=SYN_SENT rcv_nxt=0, snd_una=1473586561 Default 10:35:42.344244+0800 BabyApp nw_flow_connected [C8.1 IPv4#67ae7c2c:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Transport protocol connected Default 10:35:42.344618+0800 BabyApp boringssl_context_set_handshake_config(1471) [0x1067684e0] set tls_handshake_config_standard Default 10:35:42.344671+0800 BabyApp boringssl_context_set_min_version(324) [0x1067684e0] set 0x0301 Default 10:35:42.344723+0800 BabyApp boringssl_context_set_max_version(308) [0x1067684e0] set 0x0304 Default 10:35:42.344774+0800 BabyApp boringssl_context_set_cipher_suites(843) [0x1067684e0] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:AES256-SHA:AES128-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:DES-CBC3-SHA Default 10:35:42.344827+0800 BabyApp boringssl_context_set_remote_address(2555) [0x1067684e0] Saving remote IPv4 address Default 10:35:42.344877+0800 BabyApp boringssl_session_install_association_state(1262) [0x1067684e0] Client session cache miss Default 10:35:42.344930+0800 BabyApp boringssl_session_set_peer_hostname(1154) [0x1067684e0] SNI Default 10:35:42.344984+0800 BabyApp boringssl_context_set_min_version(324) [C8.1:2][0x1067684e0] set 0x0303 Default 10:35:42.345036+0800 BabyApp boringssl_context_set_fallback(374) [C8.1:2][0x1067684e0] set false Default 10:35:42.345088+0800 BabyApp boringssl_context_set_session_ticket_enabled(440) [C8.1:2][0x1067684e0] set false Default 10:35:42.345143+0800 BabyApp boringssl_context_set_false_start(410) [C8.1:2][0x1067684e0] set false Default 10:35:42.345196+0800 BabyApp boringssl_context_set_enforce_ev(400) [C8.1:2][0x1067684e0] set false Default 10:35:42.345248+0800 BabyApp boringssl_context_set_ats_enforced(1285) [C8.1:2][0x1067684e0] set false Default 10:35:42.345299+0800 BabyApp boringssl_context_set_ats_minimum_rsa_key_size(1294) [C8.1:2][0x1067684e0] set 0 Default 10:35:42.345349+0800 BabyApp boringssl_context_set_ats_minimum_ecdsa_key_size(1303) [C8.1:2][0x1067684e0] set 0 Default 10:35:42.345397+0800 BabyApp boringssl_context_set_ats_minimum_signature_algorithm(1313) [C8.1:2][0x1067684e0] set 0 Default 10:35:42.345448+0800 BabyApp boringssl_session_set_peer_hostname(1154) [C8.1:2][0x1067684e0] SNI Default 10:35:42.345499+0800 BabyApp boringssl_context_set_cipher_suites(843) [C8.1:2][0x1067684e0] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305 Default 10:35:42.345551+0800 BabyApp nw_protocol_boringssl_begin_connection(497) [C8.1:2][0x1067684e0] early data disabled Default 10:35:42.345602+0800 BabyApp boringssl_context_info_handler(1970) [C8.1:2][0x1067684e0] Client handshake started Default 10:35:42.345654+0800 BabyApp boringssl_context_message_handler(2258) [C8.1:2][0x1067684e0] Writing SSL3_RT_HANDSHAKE 512 bytes Default 10:35:42.345705+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS client enter_early_data Default 10:35:42.345757+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C8.1:2][0x1067684e0] Adding message(1) Default 10:35:42.345808+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS client read_server_hello Default 10:35:42.345874+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C8.1:2][0x1067684e0] Adding message(2) Default 10:35:42.345927+0800 BabyApp boringssl_session_handshake_incomplete(170) [C8.1:2][0x1067684e0] Handshake incomplete: waiting for data to read [2] Default 10:35:42.345988+0800 BabyApp boringssl_session_handshake_incomplete(170) [C8.1:2][0x1067684e0] Handshake incomplete: waiting for data to read [2] Default 10:35:42.346267+0800 BabyApp boringssl_session_handshake_incomplete(170) [C8.1:2][0x1067684e0] Handshake incomplete: waiting for data to read [2] Default 10:35:42.346318+0800 BabyApp boringssl_session_handshake_incomplete(170) [C8.1:2][0x1067684e0] Handshake incomplete: waiting for data to read [2] Default 10:35:42.412874+0800 BabyApp Task <3967796F-4013-4E7B-BC40-EC6AF1E6DEE0>.<5> received response, status 200 content C Default 10:35:42.412950+0800 BabyApp Connection 5: is being canceled Default 10:35:42.413009+0800 BabyApp [C5 01CEF2BA-FBE0-4F58-89A9-5A64ACAB19EE Hostname#c459f881:443 tcp, url hash: d9b6b180, tls] cancel Default 10:35:42.413105+0800 BabyApp [C5 01CEF2BA-FBE0-4F58-89A9-5A64ACAB19EE Hostname#c459f881:443 tcp, url hash: d9b6b180, tls] cancelled [C5.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57743<->IPv4#1078b35a:443] Connected Path: satisfied (Path is satisfied), interface: en0, ipv4, dns Duration: 0.187s, DNS @0.000s took 0.002s, TCP @0.006s took 0.007s, TLS took 0.008s bytes in/out: 2873/843, packets in/out: 4/3, rtt: 0.029s, retransmitted packets: 0, out-of-order packets: 0 Default 10:35:42.413172+0800 BabyApp 0.000s [C5 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:start Default 10:35:42.413233+0800 BabyApp 0.000s [C5 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:satisfied Default 10:35:42.413296+0800 BabyApp 0.000s [C5 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] resolver:start_dns Default 10:35:42.413465+0800 BabyApp 0.002s [C5 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] resolver:receive_dns Default 10:35:42.413587+0800 BabyApp 0.004s [C5.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57743<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:start Default 10:35:42.413642+0800 BabyApp 0.004s [C5.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57743<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:satisfied Default 10:35:42.413697+0800 BabyApp 0.004s [C5.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57743<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:start_nexus Default 10:35:42.413754+0800 BabyApp 0.005s [C5.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57743<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:receive_nexus Default 10:35:42.413808+0800 BabyApp 0.006s [C5.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57743<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:start_connect Default 10:35:42.413861+0800 BabyApp 0.013s [C5.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57743<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_transport Default 10:35:42.413916+0800 BabyApp 0.013s [C5 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_transport Default 10:35:42.413969+0800 BabyApp 0.021s [C5.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57743<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_connect Default 10:35:42.414031+0800 BabyApp 0.022s [C5 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_connect Default 10:35:42.414084+0800 BabyApp 0.022s [C5.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57743<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:changed_viability Default 10:35:42.414140+0800 BabyApp 0.022s [C5 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:changed_viability Default 10:35:42.414191+0800 BabyApp 0.187s [C5] path:cancel Default 10:35:42.414385+0800 BabyApp boringssl_context_message_handler(2258) [C5.1:2][0x10600b1d0] Writing SSL3_RT_ALERT 2 bytes Default 10:35:42.414436+0800 BabyApp boringssl_context_handle_warning_alert(1893) [C5.1:2][0x10600b1d0] write alert, level: warning, description: close notify Default 10:35:42.414486+0800 BabyApp boringssl_session_disconnect(504) [C5.1:2][0x10600b1d0] SSL_shutdown 0 Default 10:35:42.414650+0800 BabyApp nw_protocol_tcp_log_summary [C5.1:3] [2246AA22-795E-47CB-A651-A6D707A06CD8 :57743<->:443] Init: 1, Conn_Time: 6.123ms, Syn's: 1, WR_T: 0/0, RD_T: 0/0, TFO: 0/0/0, ECN: 0/0/0, TS: 1 RTT_Cache: process, rtt_upd: 3, rtt: 29.843ms, rtt_var: 34.312ms rtt_nc: 6.406ms, rtt_var_nc: 3.375ms Default 10:35:42.414752+0800 BabyApp nw_flow_disconnected [C5.1 IPv4#1078b35a:443 cancelled channel-flow ((null))] Output protocol disconnected Default 10:35:42.414858+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C5] reporting state cancelled Default 10:35:42.414906+0800 BabyApp Task <3967796F-4013-4E7B-BC40-EC6AF1E6DEE0>.<5> response ended Default 10:35:42.414956+0800 BabyApp Task <3967796F-4013-4E7B-BC40-EC6AF1E6DEE0>.<5> done using Connection 5 Default 10:35:42.415011+0800 BabyApp Task <3967796F-4013-4E7B-BC40-EC6AF1E6DEE0>.<5> summary for task success {transaction_duration_ms=242, response_status=200, connection=5, protocol="http/1.1", domain_lookup_duration_ms=2, connect_duration_ms=15, secure_connection_duration_ms=7, request_start_ms=76, request_duration_ms=0, response_start_ms=240, response_duration_ms=2, request_bytes=246, response_bytes=2676, cache_hit=1} Default 10:35:42.415128+0800 BabyApp tcp_output [C5.1:3] flags=[F.] seq=3837232832, ack=3247313500, win=1024 state=FIN_WAIT_1 rcv_nxt=3247313500, snd_una=3837232801 Default 10:35:42.415177+0800 BabyApp Task <3967796F-4013-4E7B-BC40-EC6AF1E6DEE0>.<5> finished successfully Default 10:35:42.415227+0800 BabyApp nw_protocol_boringssl_remove_input_handler(1012) [C5.1:2][0x10600b1d0] nw_protocol_boringssl_remove_input_handler forced true Default 10:35:42.415308+0800 BabyApp nw_protocol_boringssl_remove_input_handler(1030) [C5.1:2][0x10600b1d0] Transferring nw_protocol_boringssl_t handle back into ARC for autorelease Default 10:35:42.419338+0800 BabyApp Task <0FA64C60-D725-446E-9AD2-CE4391B67E25>.<10> resuming, QOS(0x19) Voucher (null) Default 10:35:42.420605+0800 BabyApp Task <0FA64C60-D725-446E-9AD2-CE4391B67E25>.<10> {strength 1, tls 8, ct 0, sub 0, sig 0, ciphers 1, bundle 0, builtin 0} Default 10:35:42.421127+0800 BabyApp Connection 9: enabling TLS Default 10:35:42.421175+0800 BabyApp Connection 9: starting, TC(0x0) Default 10:35:42.421227+0800 BabyApp [C9 DF37EB88-4C21-4465-8BC0-1358E8A76C5E Hostname#c459f881:443 tcp, url hash: b78c715f, tls] start Default 10:35:42.421654+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C9] reporting state preparing Default 10:35:42.421752+0800 BabyApp Task <0FA64C60-D725-446E-9AD2-CE4391B67E25>.<10> setting up Connection 9 Default 10:35:42.425398+0800 BabyApp tcp_output [C9.1:3] flags=[S] seq=2639995562, ack=0, win=65535 state=SYN_SENT rcv_nxt=0, snd_una=2639995562 Default 10:35:42.429122+0800 BabyApp Task .<4> received response, status 200 content C Default 10:35:42.451829+0800 BabyApp tcp_input [C5.1:3] flags=[FP.] seq=3247313500, ack=3837232801, win=243 state=FIN_WAIT_1 rcv_nxt=3247313500, snd_una=3837232801 Default 10:35:42.451920+0800 BabyApp tcp_close [C5.1:3] TCP Packets: Error 10:35:42.452016+0800 BabyApp tcp_input [C5.1:3] flags=[R] seq=3247313500, ack=0, win=0 state=CLOSED rcv_nxt=3247313500, snd_una=3837232801 Default 10:35:42.452069+0800 BabyApp boringssl_context_message_handler(2258) [C8.1:2][0x1067684e0] Reading SSL3_RT_HANDSHAKE 122 bytes Default 10:35:42.452131+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS 1.3 client read_hello_retry_request Default 10:35:42.452186+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C8.1:2][0x1067684e0] Adding message(2) Default 10:35:42.452250+0800 BabyApp boringssl_context_message_handler(2258) [C8.1:2][0x1067684e0] Writing SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:42.452301+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS 1.3 client read_server_hello Default 10:35:42.452364+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS 1.3 client read_encrypted_extensions Default 10:35:42.452419+0800 BabyApp boringssl_context_message_handler(2258) [C8.1:2][0x1067684e0] Reading SSL3_RT_HANDSHAKE 15 bytes Default 10:35:42.452470+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS 1.3 client read_certificate_request Default 10:35:42.452522+0800 BabyApp boringssl_context_message_handler(2258) [C8.1:2][0x1067684e0] Reading SSL3_RT_HANDSHAKE 2972 bytes Default 10:35:42.452581+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS 1.3 client read_server_certificate Default 10:35:42.452642+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS 1.3 client read_server_certificate_verify Default 10:35:42.452702+0800 BabyApp boringssl_context_message_handler(2258) [C8.1:2][0x1067684e0] Reading SSL3_RT_HANDSHAKE 264 bytes Default 10:35:42.452811+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C8.1:2][0x1067684e0] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:42.453006+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C8.1:2][0x1067684e0] SecTrustCreateWithCertificates result: 0 Default 10:35:42.453059+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C8.1:2][0x1067684e0] No TLS-provided OCSP response Default 10:35:42.453111+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C8.1:2][0x1067684e0] No TLS-provided SCTs Default 10:35:42.453233+0800 BabyApp boringssl_context_certificate_verify_callback(2071) [C8.1:2][0x1067684e0] Asyncing for verify block Default 10:35:42.453285+0800 BabyApp boringssl_session_handshake_incomplete(170) [C8.1:2][0x1067684e0] Handshake incomplete: certificate evaluation result pending [16] Default 10:35:42.453336+0800 BabyApp boringssl_context_certificate_verify_callback(2040) [C8.1:2][0x1067684e0] Verification already in progress. Default 10:35:42.453388+0800 BabyApp boringssl_session_handshake_incomplete(170) [C8.1:2][0x1067684e0] Handshake incomplete: certificate evaluation result pending [16] Default 10:35:42.453438+0800 BabyApp boringssl_context_certificate_verify_callback(2040) [C8.1:2][0x1067684e0] Verification already in progress. Default 10:35:42.453490+0800 BabyApp boringssl_session_handshake_incomplete(170) [C8.1:2][0x1067684e0] Handshake incomplete: certificate evaluation result pending [16] Default 10:35:42.453540+0800 BabyApp Connection 8: asked to evaluate TLS Trust Default 10:35:42.453850+0800 BabyApp Task .<8> auth completion disp=1 cred=0x0 Default 10:35:42.454324+0800 BabyApp tcp_input [C9.1:3] flags=[S.] seq=1119269817, ack=2639995563, win=28960 state=SYN_SENT rcv_nxt=0, snd_una=2639995562 Default 10:35:42.454384+0800 BabyApp nw_flow_connected [C9.1 IPv4#1078b35a:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Transport protocol connected Default 10:35:42.454659+0800 BabyApp boringssl_context_set_handshake_config(1471) [0x10675f410] set tls_handshake_config_standard Default 10:35:42.454721+0800 BabyApp boringssl_context_set_min_version(324) [0x10675f410] set 0x0301 Default 10:35:42.454782+0800 BabyApp boringssl_context_set_max_version(308) [0x10675f410] set 0x0304 Default 10:35:42.454843+0800 BabyApp boringssl_context_set_cipher_suites(843) [0x10675f410] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:AES256-SHA:AES128-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:DES-CBC3-SHA Default 10:35:42.454982+0800 BabyApp boringssl_context_set_remote_address(2555) [0x10675f410] Saving remote IPv4 address Default 10:35:42.455049+0800 BabyApp boringssl_session_install_association_state(1258) [0x10675f410] Client session cache hit Default 10:35:42.455113+0800 BabyApp boringssl_session_set_peer_hostname(1154) [0x10675f410] SNI Default 10:35:42.455164+0800 BabyApp boringssl_context_set_min_version(324) [C9.1:2][0x10675f410] set 0x0303 Default 10:35:42.455223+0800 BabyApp boringssl_context_set_fallback(374) [C9.1:2][0x10675f410] set false Default 10:35:42.455281+0800 BabyApp boringssl_context_set_session_ticket_enabled(440) [C9.1:2][0x10675f410] set false Default 10:35:42.455341+0800 BabyApp boringssl_context_set_false_start(410) [C9.1:2][0x10675f410] set false Default 10:35:42.455401+0800 BabyApp boringssl_context_set_enforce_ev(400) [C9.1:2][0x10675f410] set false Default 10:35:42.455482+0800 BabyApp boringssl_context_set_ats_enforced(1285) [C9.1:2][0x10675f410] set false Default 10:35:42.455534+0800 BabyApp boringssl_context_set_ats_minimum_rsa_key_size(1294) [C9.1:2][0x10675f410] set 0 Default 10:35:42.455605+0800 BabyApp boringssl_context_set_ats_minimum_ecdsa_key_size(1303) [C9.1:2][0x10675f410] set 0 Default 10:35:42.455667+0800 BabyApp boringssl_context_set_ats_minimum_signature_algorithm(1313) [C9.1:2][0x10675f410] set 0 Default 10:35:42.455728+0800 BabyApp boringssl_session_set_peer_hostname(1154) [C9.1:2][0x10675f410] SNI Default 10:35:42.455777+0800 BabyApp boringssl_context_set_cipher_suites(843) [C9.1:2][0x10675f410] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305 Default 10:35:42.455838+0800 BabyApp nw_protocol_boringssl_begin_connection(497) [C9.1:2][0x10675f410] early data disabled Default 10:35:42.455898+0800 BabyApp boringssl_context_info_handler(1970) [C9.1:2][0x10675f410] Client handshake started Default 10:35:42.455966+0800 BabyApp boringssl_context_message_handler(2258) [C9.1:2][0x10675f410] Writing SSL3_RT_HANDSHAKE 512 bytes Default 10:35:42.456017+0800 BabyApp boringssl_context_info_handler(1983) [C9.1:2][0x10675f410] Client handshake state: TLS client enter_early_data Default 10:35:42.456078+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C9.1:2][0x10675f410] Adding message(1) Default 10:35:42.456204+0800 BabyApp boringssl_context_info_handler(1983) [C9.1:2][0x10675f410] Client handshake state: TLS client read_server_hello Default 10:35:42.456254+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C9.1:2][0x10675f410] Adding message(2) Default 10:35:42.456320+0800 BabyApp boringssl_session_handshake_incomplete(170) [C9.1:2][0x10675f410] Handshake incomplete: waiting for data to read [2] Default 10:35:42.456382+0800 BabyApp boringssl_session_handshake_incomplete(170) [C9.1:2][0x10675f410] Handshake incomplete: waiting for data to read [2] Error 10:35:42.456460+0800 BabyApp tcp_input [C5.1:3] flags=[R] seq=3247313500, ack=0, win=0 state=CLOSED rcv_nxt=3247313500, snd_una=3837232801 Default 10:35:42.456511+0800 BabyApp boringssl_session_handshake_incomplete(170) [C9.1:2][0x10675f410] Handshake incomplete: waiting for data to read [2] Default 10:35:42.456573+0800 BabyApp boringssl_session_handshake_incomplete(170) [C9.1:2][0x10675f410] Handshake incomplete: waiting for data to read [2] Default 10:35:42.460835+0800 BabyApp System Trust Evaluation yielded status(0) Default 10:35:42.462555+0800 BabyApp boringssl_context_message_handler(2258) [C9.1:2][0x10675f410] Reading SSL3_RT_HANDSHAKE 81 bytes Default 10:35:42.462651+0800 BabyApp boringssl_context_info_handler(1983) [C9.1:2][0x10675f410] Client handshake state: TLS client read_session_ticket Default 10:35:42.462706+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C9.1:2][0x10675f410] Adding message(2) Default 10:35:42.462758+0800 BabyApp boringssl_context_info_handler(1983) [C9.1:2][0x10675f410] Client handshake state: TLS client process_change_cipher_spec Default 10:35:42.462816+0800 BabyApp boringssl_context_message_handler(2258) [C9.1:2][0x10675f410] Reading SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:42.462869+0800 BabyApp boringssl_context_info_handler(1983) [C9.1:2][0x10675f410] Client handshake state: TLS client read_server_finished Default 10:35:42.462934+0800 BabyApp boringssl_context_message_handler(2258) [C9.1:2][0x10675f410] Reading SSL3_RT_HANDSHAKE 16 bytes Default 10:35:42.463007+0800 BabyApp boringssl_context_info_handler(1983) [C9.1:2][0x10675f410] Client handshake state: TLS client send_client_finished Default 10:35:42.463058+0800 BabyApp boringssl_context_message_handler(2258) [C9.1:2][0x10675f410] Writing SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:42.463129+0800 BabyApp boringssl_context_message_handler(2258) [C9.1:2][0x10675f410] Writing SSL3_RT_HANDSHAKE 16 bytes Default 10:35:42.463176+0800 BabyApp boringssl_context_info_handler(1983) [C9.1:2][0x10675f410] Client handshake state: TLS client finish_flight Default 10:35:42.463237+0800 BabyApp boringssl_context_info_handler(1983) [C9.1:2][0x10675f410] Client handshake state: TLS client finish_client_handshake Default 10:35:42.463289+0800 BabyApp boringssl_context_info_handler(1983) [C9.1:2][0x10675f410] Client handshake state: TLS client done Default 10:35:42.463340+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C9.1:2][0x10675f410] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:42.463632+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C9.1:2][0x10675f410] SecTrustCreateWithCertificates result: 0 Default 10:35:42.463685+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C9.1:2][0x10675f410] No TLS-provided OCSP response Default 10:35:42.463736+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C9.1:2][0x10675f410] No TLS-provided SCTs Default 10:35:42.463848+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C9.1:2][0x10675f410] Adding message(20) Default 10:35:42.463900+0800 BabyApp boringssl_context_info_handler(1974) [C9.1:2][0x10675f410] Client handshake done Default 10:35:42.463995+0800 BabyApp nw_protocol_boringssl_signal_connected(701) [C9.1:2][0x10675f410] TLS connected [version(0x0303) ciphersuite(0xc02f) group(0x0017) peer_key(0x0601) alpn() resumed(1) offered_ticket(0) false_started(0) ocsp(0) sct(0)] Default 10:35:42.464301+0800 BabyApp nw_flow_connected [C9.1 IPv4#1078b35a:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Output protocol connected Default 10:35:42.464657+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C9] reporting state ready Default 10:35:42.464929+0800 BabyApp Connection 9: connected successfully Default 10:35:42.464973+0800 BabyApp Connection 9: TLS handshake complete Default 10:35:42.465255+0800 BabyApp Connection 9: ready C(N) E(N) Default 10:35:42.465516+0800 BabyApp Task <0FA64C60-D725-446E-9AD2-CE4391B67E25>.<10> now using Connection 9 Default 10:35:42.465637+0800 BabyApp Connection 9: received viability advisory(Y) Default 10:35:42.465837+0800 BabyApp Task <0FA64C60-D725-446E-9AD2-CE4391B67E25>.<10> sent request, body N 0 Default 10:35:42.467117+0800 BabyApp Connection 8: TLS Trust result 0 Default 10:35:42.467174+0800 BabyApp boringssl_context_certificate_verify_callback_block_invoke_3(2080) [C8.1:2][0x1067684e0] Returning from verify block Default 10:35:42.467278+0800 BabyApp boringssl_context_certificate_verify_callback(2047) [C8.1:2][0x1067684e0] Setting trust result to ssl_verify_ok Default 10:35:42.467381+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS 1.3 client read_server_finished Default 10:35:42.467432+0800 BabyApp boringssl_context_message_handler(2258) [C8.1:2][0x1067684e0] Reading SSL3_RT_HANDSHAKE 36 bytes Default 10:35:42.467562+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS 1.3 client send_end_of_early_data Default 10:35:42.467612+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS 1.3 client send_client_certificate Default 10:35:42.467670+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS 1.3 client complete_second_flight Default 10:35:42.467721+0800 BabyApp boringssl_context_message_handler(2258) [C8.1:2][0x1067684e0] Writing SSL3_RT_HANDSHAKE 36 bytes Default 10:35:42.467772+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS 1.3 client done Default 10:35:42.467833+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS client finish_client_handshake Default 10:35:42.467891+0800 BabyApp boringssl_context_info_handler(1983) [C8.1:2][0x1067684e0] Client handshake state: TLS client done Default 10:35:42.468010+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C8.1:2][0x1067684e0] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:42.468183+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C8.1:2][0x1067684e0] SecTrustCreateWithCertificates result: 0 Default 10:35:42.468255+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C8.1:2][0x1067684e0] No TLS-provided OCSP response Default 10:35:42.468303+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C8.1:2][0x1067684e0] No TLS-provided SCTs Default 10:35:42.468441+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C8.1:2][0x1067684e0] Adding message(20) Default 10:35:42.468492+0800 BabyApp boringssl_context_info_handler(1974) [C8.1:2][0x1067684e0] Client handshake done Default 10:35:42.468683+0800 BabyApp nw_protocol_boringssl_signal_connected(701) [C8.1:2][0x1067684e0] TLS connected [version(0x0304) ciphersuite(0x1301) group(0x001d) peer_key(0x0804) alpn(h2) resumed(0) offered_ticket(0) false_started(0) ocsp(0) sct(0)] Default 10:35:42.468849+0800 BabyApp nw_flow_connected [C8.1 IPv4#67ae7c2c:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Output protocol connected Default 10:35:42.469289+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C8] reporting state ready Default 10:35:42.469571+0800 BabyApp Connection 8: connected successfully Default 10:35:42.469616+0800 BabyApp Connection 8: TLS handshake complete Default 10:35:42.469685+0800 BabyApp Connection 8: ready C(N) E(N) Default 10:35:42.469789+0800 BabyApp new connection to config 0x28321b8c0 Default 10:35:42.469917+0800 BabyApp Task .<8> now using Connection 8 Default 10:35:42.470136+0800 BabyApp Task <820BE701-5090-41C5-A56D-0F91DF5D5B91>.<9> now using Connection 8 Default 10:35:42.470206+0800 BabyApp Connection 8: received viability advisory(Y) Default 10:35:42.470719+0800 BabyApp Task .<8> sent request, body S 26 Default 10:35:42.470779+0800 BabyApp Task <820BE701-5090-41C5-A56D-0F91DF5D5B91>.<9> sent request, body S 190 Default 10:35:42.488584+0800 BabyApp tcp_input [C6.1:3] flags=[FP.] seq=1594006697, ack=831546864, win=249 state=ESTABLISHED rcv_nxt=1594006697, snd_una=831546864 Default 10:35:42.488667+0800 BabyApp nw_protocol_tcp_log_summary [C6.1:3] [CF23B3E4-6BD7-4AF2-AAAF-87B09D882E71 :57744<->:443] Init: 1, Conn_Time: 7.321ms, Syn's: 1, WR_T: 0/0, RD_T: 0/0, TFO: 0/0/0, ECN: 0/0/0, TS: 1 RTT_Cache: process, rtt_upd: 4, rtt: 32.625ms, rtt_var: 31.312ms rtt_nc: 12.687ms, rtt_var_nc: 13.562ms Default 10:35:42.488745+0800 BabyApp boringssl_context_message_handler(2258) [C6.1:2][0x106753e40] Reading SSL3_RT_ALERT 2 bytes Default 10:35:42.488797+0800 BabyApp boringssl_context_handle_warning_alert(1893) [C6.1:2][0x106753e40] read alert, level: warning, description: close notify Default 10:35:42.488854+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C6.1:2][0x106753e40] state: 2 Default 10:35:42.488917+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C6.1:2][0x106753e40] state: 2 Default 10:35:42.489049+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C6.1:2][0x106753e40] state: 2 Default 10:35:42.489100+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C6.1:2][0x106753e40] state: 2 Default 10:35:42.489176+0800 BabyApp Connection 6: read-side closed Default 10:35:42.489223+0800 BabyApp Connection 6: read-side closed Default 10:35:42.489288+0800 BabyApp Connection 6: read-side closed Default 10:35:42.489342+0800 BabyApp Connection 6: read-side closed Default 10:35:42.489411+0800 BabyApp Task .<6> received response, status 200 content C Default 10:35:42.489459+0800 BabyApp Connection 6: is being canceled Default 10:35:42.489531+0800 BabyApp [C6 B25EF189-E348-4FC2-826C-FF01D68552CE Hostname#c459f881:443 tcp, url hash: 425116fb, tls] cancel Default 10:35:42.489598+0800 BabyApp [C6 B25EF189-E348-4FC2-826C-FF01D68552CE Hostname#c459f881:443 tcp, url hash: 425116fb, tls] cancelled [C6.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57744<->IPv4#1078b35a:443] Connected Path: satisfied (Path is satisfied), interface: en0, ipv4, dns Duration: 0.262s, DNS @0.000s took 0.002s, TCP @0.007s took 0.008s, TLS took 0.047s bytes in/out: 9673/1542, packets in/out: 9/3, rtt: 0.032s, retransmitted packets: 0, out-of-order packets: 0 Default 10:35:42.489687+0800 BabyApp 0.000s [C6 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:start Default 10:35:42.489753+0800 BabyApp 0.000s [C6 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:satisfied Default 10:35:42.490031+0800 BabyApp 0.000s [C6 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] resolver:start_dns Default 10:35:42.490094+0800 BabyApp 0.002s [C6 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] resolver:receive_dns Default 10:35:42.490175+0800 BabyApp 0.006s [C6.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57744<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:start Default 10:35:42.490236+0800 BabyApp 0.006s [C6.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57744<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:satisfied Default 10:35:42.490291+0800 BabyApp 0.006s [C6.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57744<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:start_nexus Default 10:35:42.490350+0800 BabyApp 0.007s [C6.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57744<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:receive_nexus Default 10:35:42.490413+0800 BabyApp 0.007s [C6.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57744<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:start_connect Default 10:35:42.490469+0800 BabyApp 0.015s [C6.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57744<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_transport Default 10:35:42.490525+0800 BabyApp 0.015s [C6 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_transport Default 10:35:42.490578+0800 BabyApp 0.062s [C6.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57744<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_connect Default 10:35:42.490643+0800 BabyApp 0.062s [C6 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_connect Default 10:35:42.490706+0800 BabyApp 0.062s [C6.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57744<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:changed_viability Default 10:35:42.490761+0800 BabyApp 0.062s [C6 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:changed_viability Default 10:35:42.490813+0800 BabyApp 0.262s [C6] path:cancel Default 10:35:42.490971+0800 BabyApp boringssl_context_message_handler(2258) [C6.1:2][0x106753e40] Writing SSL3_RT_ALERT 2 bytes Default 10:35:42.491022+0800 BabyApp boringssl_context_handle_warning_alert(1893) [C6.1:2][0x106753e40] write alert, level: warning, description: close notify Default 10:35:42.491074+0800 BabyApp boringssl_session_disconnect(504) [C6.1:2][0x106753e40] SSL_shutdown 1 Default 10:35:42.491388+0800 BabyApp nw_flow_disconnected [C6.1 IPv4#1078b35a:443 cancelled channel-flow ((null))] Output protocol disconnected Default 10:35:42.491486+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C6] reporting state cancelled Default 10:35:42.491533+0800 BabyApp Task .<6> response ended Default 10:35:42.491583+0800 BabyApp Task .<6> done using Connection 6 Default 10:35:42.491640+0800 BabyApp Task .<6> summary for task success {transaction_duration_ms=271, response_status=200, connection=6, protocol="http/1.1", domain_lookup_duration_ms=2, connect_duration_ms=55, secure_connection_duration_ms=45, request_start_ms=69, request_duration_ms=0, response_start_ms=268, response_duration_ms=2, request_bytes=870, response_bytes=4700, cache_hit=1} Default 10:35:42.491755+0800 BabyApp tcp_output [C6.1:3] flags=[F.] seq=831546895, ack=1594007241, win=1024 state=LAST_ACK rcv_nxt=1594007241, snd_una=831546864 Default 10:35:42.491805+0800 BabyApp Task .<6> finished successfully Default 10:35:42.491858+0800 BabyApp nw_protocol_boringssl_remove_input_handler(1012) [C6.1:2][0x106753e40] nw_protocol_boringssl_remove_input_handler forced true Default 10:35:42.491909+0800 BabyApp nw_protocol_boringssl_remove_input_handler(1030) [C6.1:2][0x106753e40] Transferring nw_protocol_boringssl_t handle back into ARC for autorelease Default 10:35:42.495382+0800 BabyApp Task <62BDC6FB-3371-47BF-B5BB-8039BAA82A94>.<11> resuming, QOS(0x19) Voucher (null) Default 10:35:42.496606+0800 BabyApp Task <62BDC6FB-3371-47BF-B5BB-8039BAA82A94>.<11> {strength 1, tls 8, ct 0, sub 0, sig 0, ciphers 1, bundle 0, builtin 0} Default 10:35:42.497092+0800 BabyApp Connection 10: enabling TLS Default 10:35:42.497142+0800 BabyApp Connection 10: starting, TC(0x0) Default 10:35:42.497206+0800 BabyApp [C10 372EA56B-184E-4B35-ACA0-77856D0FE360 Hostname#c459f881:443 tcp, url hash: c8a92a6a, tls] start Default 10:35:42.497672+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C10] reporting state preparing Default 10:35:42.497776+0800 BabyApp Task <62BDC6FB-3371-47BF-B5BB-8039BAA82A94>.<11> setting up Connection 10 Default 10:35:42.501374+0800 BabyApp tcp_output [C10.1:3] flags=[S] seq=742989924, ack=0, win=65535 state=SYN_SENT rcv_nxt=0, snd_una=742989924 Error 10:35:42.501924+0800 BabyApp tcp_input [C6.1:3] flags=[R] seq=1594007241, ack=0, win=0 state=LAST_ACK rcv_nxt=1594007241, snd_una=831546864 Default 10:35:42.501979+0800 BabyApp tcp_close [C6.1:3] TCP Packets: Error 10:35:42.502378+0800 BabyApp tcp_input [C6.1:3] flags=[R] seq=1594007241, ack=0, win=0 state=CLOSED rcv_nxt=1594007241, snd_una=831546864 Default 10:35:42.508013+0800 BabyApp tcp_input [C10.1:3] flags=[S.] seq=3347167121, ack=742989925, win=28960 state=SYN_SENT rcv_nxt=0, snd_una=742989924 Default 10:35:42.508081+0800 BabyApp nw_flow_connected [C10.1 IPv4#1078b35a:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Transport protocol connected Default 10:35:42.508402+0800 BabyApp boringssl_context_set_handshake_config(1471) [0x106674f90] set tls_handshake_config_standard Default 10:35:42.508456+0800 BabyApp boringssl_context_set_min_version(324) [0x106674f90] set 0x0301 Default 10:35:42.508519+0800 BabyApp boringssl_context_set_max_version(308) [0x106674f90] set 0x0304 Default 10:35:42.508589+0800 BabyApp boringssl_context_set_cipher_suites(843) [0x106674f90] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:AES256-SHA:AES128-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:DES-CBC3-SHA Default 10:35:42.508661+0800 BabyApp boringssl_context_set_remote_address(2555) [0x106674f90] Saving remote IPv4 address Default 10:35:42.508744+0800 BabyApp boringssl_session_install_association_state(1262) [0x106674f90] Client session cache miss Default 10:35:42.508796+0800 BabyApp boringssl_session_set_peer_hostname(1154) [0x106674f90] SNI Default 10:35:42.508861+0800 BabyApp boringssl_context_set_min_version(324) [C10.1:2][0x106674f90] set 0x0303 Default 10:35:42.508902+0800 BabyApp boringssl_context_set_fallback(374) [C10.1:2][0x106674f90] set false Default 10:35:42.508972+0800 BabyApp boringssl_context_set_session_ticket_enabled(440) [C10.1:2][0x106674f90] set false Default 10:35:42.509038+0800 BabyApp boringssl_context_set_false_start(410) [C10.1:2][0x106674f90] set false Default 10:35:42.509100+0800 BabyApp boringssl_context_set_enforce_ev(400) [C10.1:2][0x106674f90] set false Default 10:35:42.509151+0800 BabyApp boringssl_context_set_ats_enforced(1285) [C10.1:2][0x106674f90] set false Default 10:35:42.509222+0800 BabyApp boringssl_context_set_ats_minimum_rsa_key_size(1294) [C10.1:2][0x106674f90] set 0 Default 10:35:42.509279+0800 BabyApp boringssl_context_set_ats_minimum_ecdsa_key_size(1303) [C10.1:2][0x106674f90] set 0 Default 10:35:42.509337+0800 BabyApp boringssl_context_set_ats_minimum_signature_algorithm(1313) [C10.1:2][0x106674f90] set 0 Default 10:35:42.509414+0800 BabyApp boringssl_session_set_peer_hostname(1154) [C10.1:2][0x106674f90] SNI Default 10:35:42.509485+0800 BabyApp boringssl_context_set_cipher_suites(843) [C10.1:2][0x106674f90] Ciphersuite string: TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-CHACHA20-POLY1305 Default 10:35:42.509557+0800 BabyApp nw_protocol_boringssl_begin_connection(497) [C10.1:2][0x106674f90] early data disabled Default 10:35:42.509639+0800 BabyApp boringssl_context_info_handler(1970) [C10.1:2][0x106674f90] Client handshake started Default 10:35:42.509689+0800 BabyApp boringssl_context_message_handler(2258) [C10.1:2][0x106674f90] Writing SSL3_RT_HANDSHAKE 512 bytes Default 10:35:42.509758+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client enter_early_data Default 10:35:42.509815+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C10.1:2][0x106674f90] Adding message(1) Default 10:35:42.509876+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client read_server_hello Default 10:35:42.509933+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C10.1:2][0x106674f90] Adding message(2) Default 10:35:42.510015+0800 BabyApp boringssl_session_handshake_incomplete(170) [C10.1:2][0x106674f90] Handshake incomplete: waiting for data to read [2] Default 10:35:42.510083+0800 BabyApp boringssl_session_handshake_incomplete(170) [C10.1:2][0x106674f90] Handshake incomplete: waiting for data to read [2] Default 10:35:42.510145+0800 BabyApp boringssl_session_handshake_incomplete(170) [C10.1:2][0x106674f90] Handshake incomplete: waiting for data to read [2] Default 10:35:42.510205+0800 BabyApp boringssl_session_handshake_incomplete(170) [C10.1:2][0x106674f90] Handshake incomplete: waiting for data to read [2] Default 10:35:42.510674+0800 BabyApp boringssl_context_message_handler(2258) [C8.1:2][0x1067684e0] Reading SSL3_RT_HANDSHAKE 214 bytes Default 10:35:42.510751+0800 BabyApp boringssl_context_new_session_handler(1117) [C8.1:2][0x1067684e0] New session available Default 10:35:42.510803+0800 BabyApp boringssl_context_message_handler(2258) [C8.1:2][0x1067684e0] Reading SSL3_RT_HANDSHAKE 214 bytes Default 10:35:42.510951+0800 BabyApp boringssl_context_new_session_handler(1117) [C8.1:2][0x1067684e0] New session available Default 10:35:42.516525+0800 BabyApp tcp_input [C4.1:3] flags=[FP.] seq=3368871134, ack=2610774496, win=243 state=ESTABLISHED rcv_nxt=3368871134, snd_una=2610774496 Default 10:35:42.516603+0800 BabyApp nw_protocol_tcp_log_summary [C4.1:3] [1A9CB595-8E20-4764-B3FB-F94EBE544B76 :57742<->:443] Init: 1, Conn_Time: 5.661ms, Syn's: 1, WR_T: 0/0, RD_T: 0/0, TFO: 0/0/0, ECN: 0/0/0, TS: 1 RTT_Cache: kernel, rtt_upd: 221, rtt: 4.531ms, rtt_var: 0.625ms rtt_nc: 4.531ms, rtt_var_nc: 0.625ms Default 10:35:42.516695+0800 BabyApp boringssl_context_message_handler(2258) [C4.1:2][0x106740e90] Reading SSL3_RT_ALERT 2 bytes Default 10:35:42.516748+0800 BabyApp boringssl_context_handle_warning_alert(1893) [C4.1:2][0x106740e90] read alert, level: warning, description: close notify Default 10:35:42.516799+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C4.1:2][0x106740e90] state: 2 Default 10:35:42.516859+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C4.1:2][0x106740e90] state: 2 Default 10:35:42.516982+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C4.1:2][0x106740e90] state: 2 Default 10:35:42.517033+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C4.1:2][0x106740e90] state: 2 Default 10:35:42.517080+0800 BabyApp Connection 4: read-side closed Default 10:35:42.517127+0800 BabyApp Connection 4: read-side closed Default 10:35:42.517179+0800 BabyApp Connection 4: read-side closed Default 10:35:42.517226+0800 BabyApp Connection 4: read-side closed Default 10:35:42.517272+0800 BabyApp Connection 4: is being canceled Default 10:35:42.517326+0800 BabyApp [C4 FCB58A45-5CDA-4C65-9D03-8B45A01BAB67 Hostname#c459f881:443 tcp, url hash: ad55bca3, tls] cancel Default 10:35:42.517390+0800 BabyApp [C4 FCB58A45-5CDA-4C65-9D03-8B45A01BAB67 Hostname#c459f881:443 tcp, url hash: ad55bca3, tls] cancelled [C4.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57742<->IPv4#1078b35a:443] Connected Path: satisfied (Path is satisfied), interface: en0, ipv4, dns Duration: 0.343s, DNS @0.000s took 0.002s, TCP @0.004s took 0.005s, TLS took 0.039s bytes in/out: 325848/919, packets in/out: 228/3, rtt: 0.004s, retransmitted packets: 0, out-of-order packets: 0 Default 10:35:42.517456+0800 BabyApp 0.000s [C4 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:start Default 10:35:42.517508+0800 BabyApp 0.000s [C4 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:satisfied Default 10:35:42.517561+0800 BabyApp 0.000s [C4 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] resolver:start_dns Default 10:35:42.517616+0800 BabyApp 0.002s [C4 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] resolver:receive_dns Default 10:35:42.517672+0800 BabyApp 0.002s [C4.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57742<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:start Default 10:35:42.517725+0800 BabyApp 0.002s [C4.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57742<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:satisfied Default 10:35:42.517779+0800 BabyApp 0.002s [C4.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57742<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:start_nexus Default 10:35:42.517832+0800 BabyApp 0.003s [C4.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57742<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:receive_nexus Default 10:35:42.517884+0800 BabyApp 0.004s [C4.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57742<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:start_connect Default 10:35:42.517939+0800 BabyApp 0.009s [C4.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57742<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_transport Default 10:35:42.517993+0800 BabyApp 0.009s [C4 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_transport Default 10:35:42.518045+0800 BabyApp 0.048s [C4.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57742<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_connect Default 10:35:42.518095+0800 BabyApp 0.048s [C4 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_connect Default 10:35:42.518150+0800 BabyApp 0.048s [C4.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57742<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:changed_viability Default 10:35:42.518203+0800 BabyApp 0.048s [C4 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:changed_viability Default 10:35:42.518253+0800 BabyApp 0.343s [C4] path:cancel Default 10:35:42.518409+0800 BabyApp boringssl_context_message_handler(2258) [C4.1:2][0x106740e90] Writing SSL3_RT_ALERT 2 bytes Default 10:35:42.518460+0800 BabyApp boringssl_context_handle_warning_alert(1893) [C4.1:2][0x106740e90] write alert, level: warning, description: close notify Default 10:35:42.518512+0800 BabyApp boringssl_session_disconnect(504) [C4.1:2][0x106740e90] SSL_shutdown 1 Default 10:35:42.518703+0800 BabyApp nw_flow_disconnected [C4.1 IPv4#1078b35a:443 cancelled channel-flow ((null))] Output protocol disconnected Default 10:35:42.518805+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C4] reporting state cancelled Default 10:35:42.518852+0800 BabyApp Task .<4> response ended Default 10:35:42.518912+0800 BabyApp Task .<4> done using Connection 4 Default 10:35:42.518994+0800 BabyApp tcp_output [C4.1:3] flags=[F.] seq=2610774527, ack=3368872421, win=1024 state=LAST_ACK rcv_nxt=3368872421, snd_una=2610774496 Default 10:35:42.519052+0800 BabyApp Task .<4> summary for task success {transaction_duration_ms=347, response_status=200, connection=4, protocol="http/1.1", domain_lookup_duration_ms=2, connect_duration_ms=44, secure_connection_duration_ms=36, request_start_ms=53, request_duration_ms=0, response_start_ms=258, response_duration_ms=89, request_bytes=247, response_bytes=319483, cache_hit=1} Default 10:35:42.519104+0800 BabyApp nw_protocol_boringssl_remove_input_handler(1012) [C4.1:2][0x106740e90] nw_protocol_boringssl_remove_input_handler forced true Default 10:35:42.519151+0800 BabyApp Task .<4> finished successfully Default 10:35:42.519192+0800 BabyApp nw_protocol_boringssl_remove_input_handler(1030) [C4.1:2][0x106740e90] Transferring nw_protocol_boringssl_t handle back into ARC for autorelease Default 10:35:42.519817+0800 BabyApp boringssl_context_message_handler(2258) [C10.1:2][0x106674f90] Reading SSL3_RT_HANDSHAKE 93 bytes Default 10:35:42.519874+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client read_server_certificate Default 10:35:42.519937+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C10.1:2][0x106674f90] Adding message(2) Default 10:35:42.520013+0800 BabyApp boringssl_session_handshake_incomplete(170) [C10.1:2][0x106674f90] Handshake incomplete: waiting for data to read [2] Default 10:35:42.520075+0800 BabyApp boringssl_session_handshake_incomplete(170) [C10.1:2][0x106674f90] Handshake incomplete: waiting for data to read [2] Default 10:35:42.520194+0800 BabyApp boringssl_session_handshake_incomplete(170) [C10.1:2][0x106674f90] Handshake incomplete: waiting for data to read [2] Error 10:35:42.525017+0800 BabyApp tcp_input [C4.1:3] flags=[R] seq=3368872421, ack=0, win=0 state=LAST_ACK rcv_nxt=3368872421, snd_una=2610774496 Default 10:35:42.525094+0800 BabyApp tcp_close [C4.1:3] TCP Packets: Error 10:35:42.525191+0800 BabyApp tcp_input [C4.1:3] flags=[R] seq=3368872421, ack=0, win=0 state=CLOSED rcv_nxt=3368872421, snd_una=2610774496 Default 10:35:42.525253+0800 BabyApp boringssl_context_message_handler(2258) [C10.1:2][0x106674f90] Reading SSL3_RT_HANDSHAKE 4381 bytes Default 10:35:42.525310+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client read_certificate_status Default 10:35:42.525369+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client verify_server_certificate Default 10:35:42.525481+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C10.1:2][0x106674f90] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:42.525758+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C10.1:2][0x106674f90] SecTrustCreateWithCertificates result: 0 Default 10:35:42.525818+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C10.1:2][0x106674f90] No TLS-provided OCSP response Default 10:35:42.525870+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C10.1:2][0x106674f90] No TLS-provided SCTs Default 10:35:42.526001+0800 BabyApp boringssl_context_certificate_verify_callback(2071) [C10.1:2][0x106674f90] Asyncing for verify block Default 10:35:42.526053+0800 BabyApp boringssl_session_handshake_incomplete(170) [C10.1:2][0x106674f90] Handshake incomplete: certificate evaluation result pending [16] Default 10:35:42.526190+0800 BabyApp Connection 10: asked to evaluate TLS Trust Default 10:35:42.526571+0800 BabyApp Task <62BDC6FB-3371-47BF-B5BB-8039BAA82A94>.<11> auth completion disp=1 cred=0x0 Default 10:35:42.535705+0800 BabyApp System Trust Evaluation yielded status(0) Default 10:35:42.543131+0800 BabyApp Connection 10: TLS Trust result 0 Default 10:35:42.543215+0800 BabyApp boringssl_context_certificate_verify_callback_block_invoke_3(2080) [C10.1:2][0x106674f90] Returning from verify block Default 10:35:42.543339+0800 BabyApp boringssl_context_certificate_verify_callback(2047) [C10.1:2][0x106674f90] Setting trust result to ssl_verify_ok Default 10:35:42.543432+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client read_server_key_exchange Default 10:35:42.543493+0800 BabyApp boringssl_context_message_handler(2258) [C10.1:2][0x106674f90] Reading SSL3_RT_HANDSHAKE 333 bytes Default 10:35:42.543548+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client read_certificate_request Default 10:35:42.543600+0800 BabyApp boringssl_context_message_handler(2258) [C10.1:2][0x106674f90] Reading SSL3_RT_HANDSHAKE 4 bytes Default 10:35:42.543689+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client read_server_hello_done Default 10:35:42.543768+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client send_client_certificate Default 10:35:42.543827+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C10.1:2][0x106674f90] Adding message(14) Default 10:35:42.543879+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client send_client_key_exchange Default 10:35:42.544425+0800 BabyApp boringssl_context_message_handler(2258) [C10.1:2][0x106674f90] Writing SSL3_RT_HANDSHAKE 70 bytes Default 10:35:42.544491+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client send_client_certificate_verify Default 10:35:42.544543+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client send_client_finished Default 10:35:42.544595+0800 BabyApp boringssl_context_message_handler(2258) [C10.1:2][0x106674f90] Writing SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:42.544647+0800 BabyApp boringssl_context_message_handler(2258) [C10.1:2][0x106674f90] Writing SSL3_RT_HANDSHAKE 16 bytes Default 10:35:42.544698+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client finish_flight Default 10:35:42.544749+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client read_session_ticket Default 10:35:42.544800+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client process_change_cipher_spec Default 10:35:42.544852+0800 BabyApp boringssl_session_handshake_incomplete(170) [C10.1:2][0x106674f90] Handshake incomplete: waiting for data to read [2] Default 10:35:42.544903+0800 BabyApp boringssl_session_handshake_incomplete(170) [C10.1:2][0x106674f90] Handshake incomplete: waiting for data to read [2] Default 10:35:42.551073+0800 BabyApp boringssl_context_message_handler(2258) [C10.1:2][0x106674f90] Reading SSL3_RT_CHANGE_CIPHER_SPEC 1 bytes Default 10:35:42.551134+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client read_server_finished Default 10:35:42.551196+0800 BabyApp boringssl_context_message_handler(2258) [C10.1:2][0x106674f90] Reading SSL3_RT_HANDSHAKE 16 bytes Default 10:35:42.551249+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client finish_client_handshake Default 10:35:42.551310+0800 BabyApp boringssl_context_new_session_handler(1117) [C10.1:2][0x106674f90] New session available Default 10:35:42.551367+0800 BabyApp boringssl_context_info_handler(1983) [C10.1:2][0x106674f90] Client handshake state: TLS client done Default 10:35:42.551426+0800 BabyApp boringssl_context_copy_peer_sct_list(1003) [C10.1:2][0x106674f90] SSL_get0_signed_cert_timestamp_list returned no SCT extension data Default 10:35:42.551662+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(607) [C10.1:2][0x106674f90] SecTrustCreateWithCertificates result: 0 Default 10:35:42.551733+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(614) [C10.1:2][0x106674f90] No TLS-provided OCSP response Default 10:35:42.551789+0800 BabyApp boringssl_helper_create_sec_trust_with_certificates(621) [C10.1:2][0x106674f90] No TLS-provided SCTs Default 10:35:42.551923+0800 BabyApp boringssl_context_add_handshake_message_pending(578) [C10.1:2][0x106674f90] Adding message(20) Default 10:35:42.552028+0800 BabyApp boringssl_context_info_handler(1974) [C10.1:2][0x106674f90] Client handshake done Default 10:35:42.552103+0800 BabyApp nw_protocol_boringssl_signal_connected(701) [C10.1:2][0x106674f90] TLS connected [version(0x0303) ciphersuite(0xc02f) group(0x0017) peer_key(0x0601) alpn() resumed(0) offered_ticket(0) false_started(0) ocsp(0) sct(0)] Default 10:35:42.552295+0800 BabyApp nw_flow_connected [C10.1 IPv4#1078b35a:443 in_progress channel-flow (satisfied (Path is satisfied), interface: en0, ipv4, dns)] Output protocol connected Default 10:35:42.552731+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C10] reporting state ready Default 10:35:42.553127+0800 BabyApp Connection 10: connected successfully Default 10:35:42.553183+0800 BabyApp Connection 10: TLS handshake complete Default 10:35:42.553247+0800 BabyApp Connection 10: ready C(N) E(N) Default 10:35:42.553409+0800 BabyApp Task <62BDC6FB-3371-47BF-B5BB-8039BAA82A94>.<11> now using Connection 10 Default 10:35:42.553514+0800 BabyApp Connection 10: received viability advisory(Y) Default 10:35:42.553819+0800 BabyApp Task <62BDC6FB-3371-47BF-B5BB-8039BAA82A94>.<11> sent request, body N 0 Default 10:35:42.594178+0800 BabyApp tcp_input [C7.1:3] flags=[FP.] seq=2528913088, ack=1834830963, win=249 state=ESTABLISHED rcv_nxt=2528913088, snd_una=1834830963 Default 10:35:42.594261+0800 BabyApp nw_protocol_tcp_log_summary [C7.1:3] [258B5633-F95C-488C-89C9-D7764986A67F :57745<->:443] Init: 1, Conn_Time: 5.631ms, Syn's: 1, WR_T: 0/0, RD_T: 0/0, TFO: 0/0/0, ECN: 0/0/0, TS: 1 RTT_Cache: process, rtt_upd: 8, rtt: 133.031ms, rtt_var: 141.437ms rtt_nc: 120.687ms, rtt_var_nc: 147.250ms Default 10:35:42.594341+0800 BabyApp boringssl_context_message_handler(2258) [C7.1:2][0x104f0f140] Reading SSL3_RT_ALERT 2 bytes Default 10:35:42.594422+0800 BabyApp boringssl_context_handle_warning_alert(1893) [C7.1:2][0x104f0f140] read alert, level: warning, description: close notify Default 10:35:42.594474+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C7.1:2][0x104f0f140] state: 2 Default 10:35:42.594554+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C7.1:2][0x104f0f140] state: 2 Default 10:35:42.594749+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C7.1:2][0x104f0f140] state: 2 Default 10:35:42.594837+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C7.1:2][0x104f0f140] state: 2 Default 10:35:42.594887+0800 BabyApp Connection 7: read-side closed Default 10:35:42.595009+0800 BabyApp Connection 7: read-side closed Default 10:35:42.595062+0800 BabyApp Connection 7: read-side closed Default 10:35:42.595098+0800 BabyApp Connection 7: read-side closed Default 10:35:42.595144+0800 BabyApp Task .<7> received response, status 200 content C Default 10:35:42.595190+0800 BabyApp Connection 7: is being canceled Default 10:35:42.595264+0800 BabyApp [C7 E82D6B52-92A9-408E-BF50-2E148B1F442F Hostname#c459f881:443 tcp, url hash: dc2ac923, tls] cancel Default 10:35:42.595331+0800 BabyApp [C7 E82D6B52-92A9-408E-BF50-2E148B1F442F Hostname#c459f881:443 tcp, url hash: dc2ac923, tls] cancelled [C7.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57745<->IPv4#1078b35a:443] Connected Path: satisfied (Path is satisfied), interface: en0, ipv4, dns Duration: 0.367s, DNS @0.000s took 0.002s, TCP @0.010s took 0.006s, TLS took 0.048s bytes in/out: 20273/1556, packets in/out: 16/3, rtt: 0.133s, retransmitted packets: 0, out-of-order packets: 0 Default 10:35:42.595417+0800 BabyApp 0.000s [C7 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:start Default 10:35:42.595475+0800 BabyApp 0.000s [C7 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:satisfied Default 10:35:42.595598+0800 BabyApp 0.000s [C7 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] resolver:start_dns Default 10:35:42.595671+0800 BabyApp 0.002s [C7 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] resolver:receive_dns Default 10:35:42.595796+0800 BabyApp 0.008s [C7.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57745<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:start Default 10:35:42.595851+0800 BabyApp 0.008s [C7.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57745<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:satisfied Default 10:35:42.595896+0800 BabyApp 0.008s [C7.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57745<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:start_nexus Default 10:35:42.595942+0800 BabyApp 0.009s [C7.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57745<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:receive_nexus Default 10:35:42.596052+0800 BabyApp 0.010s [C7.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57745<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:start_connect Default 10:35:42.596106+0800 BabyApp 0.016s [C7.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57745<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_transport Default 10:35:42.596152+0800 BabyApp 0.016s [C7 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_transport Default 10:35:42.596223+0800 BabyApp 0.064s [C7.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57745<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_connect Default 10:35:42.596350+0800 BabyApp 0.064s [C7 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_connect Default 10:35:42.596437+0800 BabyApp 0.064s [C7.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57745<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:changed_viability Default 10:35:42.596540+0800 BabyApp 0.065s [C7 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:changed_viability Default 10:35:42.596590+0800 BabyApp 0.367s [C7] path:cancel Default 10:35:42.596803+0800 BabyApp boringssl_context_message_handler(2258) [C7.1:2][0x104f0f140] Writing SSL3_RT_ALERT 2 bytes Default 10:35:42.596867+0800 BabyApp boringssl_context_handle_warning_alert(1893) [C7.1:2][0x104f0f140] write alert, level: warning, description: close notify Default 10:35:42.596915+0800 BabyApp boringssl_session_disconnect(504) [C7.1:2][0x104f0f140] SSL_shutdown 1 Default 10:35:42.597167+0800 BabyApp nw_flow_disconnected [C7.1 IPv4#1078b35a:443 cancelled channel-flow ((null))] Output protocol disconnected Default 10:35:42.597255+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C7] reporting state cancelled Default 10:35:42.597313+0800 BabyApp Task .<7> response ended Default 10:35:42.597381+0800 BabyApp Task .<7> done using Connection 7 Default 10:35:42.597467+0800 BabyApp tcp_output [C7.1:3] flags=[F.] seq=1834830994, ack=2528914377, win=1024 state=LAST_ACK rcv_nxt=2528914377, snd_una=1834830963 Default 10:35:42.597532+0800 BabyApp nw_protocol_boringssl_remove_input_handler(1012) [C7.1:2][0x104f0f140] nw_protocol_boringssl_remove_input_handler forced true Default 10:35:42.597580+0800 BabyApp Task .<7> summary for task success {transaction_duration_ms=374, response_status=200, connection=7, protocol="http/1.1", domain_lookup_duration_ms=2, connect_duration_ms=54, secure_connection_duration_ms=47, request_start_ms=72, request_duration_ms=0, response_start_ms=373, response_duration_ms=1, request_bytes=884, response_bytes=15271, cache_hit=1} Default 10:35:42.597625+0800 BabyApp nw_protocol_boringssl_remove_input_handler(1030) [C7.1:2][0x104f0f140] Transferring nw_protocol_boringssl_t handle back into ARC for autorelease Default 10:35:42.597671+0800 BabyApp Task .<7> finished successfully Error 10:35:42.602405+0800 BabyApp tcp_input [C7.1:3] flags=[R] seq=2528914377, ack=0, win=0 state=LAST_ACK rcv_nxt=2528914377, snd_una=1834830963 Default 10:35:42.602458+0800 BabyApp tcp_close [C7.1:3] TCP Packets: Error 10:35:42.602516+0800 BabyApp tcp_input [C7.1:3] flags=[R] seq=2528914377, ack=0, win=0 state=CLOSED rcv_nxt=2528914377, snd_una=1834830963 Default 10:35:42.642546+0800 BabyApp Task <0FA64C60-D725-446E-9AD2-CE4391B67E25>.<10> received response, status 200 content C Default 10:35:42.658679+0800 BabyApp tcp_input [C9.1:3] flags=[FP.] seq=1119316035, ack=2639996408, win=243 state=ESTABLISHED rcv_nxt=1119316035, snd_una=2639996408 Default 10:35:42.658859+0800 BabyApp nw_protocol_tcp_log_summary [C9.1:3] [92AD63EC-B336-419E-81D7-9A6D26A92CAC :57747<->:443] Init: 1, Conn_Time: 29.228ms, Syn's: 1, WR_T: 0/0, RD_T: 0/0, TFO: 0/0/0, ECN: 0/0/0, TS: 1 RTT_Cache: process, rtt_upd: 27, rtt: 10.562ms, rtt_var: 3.312ms rtt_nc: 10.187ms, rtt_var_nc: 2.437ms Default 10:35:42.658932+0800 BabyApp boringssl_context_message_handler(2258) [C9.1:2][0x10675f410] Reading SSL3_RT_ALERT 2 bytes Default 10:35:42.658994+0800 BabyApp boringssl_context_handle_warning_alert(1893) [C9.1:2][0x10675f410] read alert, level: warning, description: close notify Default 10:35:42.659065+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C9.1:2][0x10675f410] state: 2 Default 10:35:42.659147+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C9.1:2][0x10675f410] state: 2 Default 10:35:42.659297+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C9.1:2][0x10675f410] state: 2 Default 10:35:42.659351+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C9.1:2][0x10675f410] state: 2 Default 10:35:42.659425+0800 BabyApp Connection 9: read-side closed Default 10:35:42.659496+0800 BabyApp Connection 9: read-side closed Default 10:35:42.659603+0800 BabyApp Connection 9: read-side closed Default 10:35:42.659686+0800 BabyApp Connection 9: read-side closed Default 10:35:42.659751+0800 BabyApp Connection 9: is being canceled Default 10:35:42.659816+0800 BabyApp [C9 DF37EB88-4C21-4465-8BC0-1358E8A76C5E Hostname#c459f881:443 tcp, url hash: b78c715f, tls] cancel Default 10:35:42.659905+0800 BabyApp [C9 DF37EB88-4C21-4465-8BC0-1358E8A76C5E Hostname#c459f881:443 tcp, url hash: b78c715f, tls] cancelled [C9.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57747<->IPv4#1078b35a:443] Connected Path: satisfied (Path is satisfied), interface: en0, ipv4, dns Duration: 0.237s, DNS @0.000s took 0.000s, TCP @0.003s took 0.030s, TLS took 0.010s bytes in/out: 47119/845, packets in/out: 34/3, rtt: 0.010s, retransmitted packets: 0, out-of-order packets: 0 Default 10:35:42.659956+0800 BabyApp 0.000s [C9 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:start Default 10:35:42.660032+0800 BabyApp 0.000s [C9 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:satisfied Default 10:35:42.660089+0800 BabyApp 0.000s [C9 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] resolver:start_dns Default 10:35:42.660195+0800 BabyApp 0.000s [C9 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] resolver:receive_dns Default 10:35:42.660286+0800 BabyApp 0.000s [C9.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57747<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:start Default 10:35:42.660362+0800 BabyApp 0.001s [C9.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57747<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:satisfied Default 10:35:42.660511+0800 BabyApp 0.001s [C9.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57747<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:start_nexus Default 10:35:42.660593+0800 BabyApp 0.002s [C9.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57747<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:receive_nexus Default 10:35:42.660717+0800 BabyApp 0.003s [C9.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57747<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:start_connect Default 10:35:42.660784+0800 BabyApp 0.033s [C9.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57747<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_transport Default 10:35:42.660836+0800 BabyApp 0.033s [C9 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_transport Default 10:35:42.660882+0800 BabyApp 0.043s [C9.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57747<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_connect Default 10:35:42.661031+0800 BabyApp 0.043s [C9 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_connect Default 10:35:42.661117+0800 BabyApp 0.043s [C9.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57747<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:changed_viability Default 10:35:42.661174+0800 BabyApp 0.043s [C9 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:changed_viability Default 10:35:42.661222+0800 BabyApp 0.237s [C9] path:cancel Default 10:35:42.661402+0800 BabyApp boringssl_context_message_handler(2258) [C9.1:2][0x10675f410] Writing SSL3_RT_ALERT 2 bytes Default 10:35:42.661448+0800 BabyApp boringssl_context_handle_warning_alert(1893) [C9.1:2][0x10675f410] write alert, level: warning, description: close notify Default 10:35:42.661497+0800 BabyApp boringssl_session_disconnect(504) [C9.1:2][0x10675f410] SSL_shutdown 1 Default 10:35:42.661742+0800 BabyApp nw_flow_disconnected [C9.1 IPv4#1078b35a:443 cancelled channel-flow ((null))] Output protocol disconnected Default 10:35:42.661856+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C9] reporting state cancelled Default 10:35:42.661901+0800 BabyApp Task <0FA64C60-D725-446E-9AD2-CE4391B67E25>.<10> response ended Default 10:35:42.661941+0800 BabyApp Task <0FA64C60-D725-446E-9AD2-CE4391B67E25>.<10> done using Connection 9 Default 10:35:42.662087+0800 BabyApp tcp_output [C9.1:3] flags=[F.] seq=2639996439, ack=1119316938, win=1024 state=LAST_ACK rcv_nxt=1119316938, snd_una=2639996408 Default 10:35:42.662144+0800 BabyApp nw_protocol_boringssl_remove_input_handler(1012) [C9.1:2][0x10675f410] nw_protocol_boringssl_remove_input_handler forced true Default 10:35:42.662194+0800 BabyApp nw_protocol_boringssl_remove_input_handler(1030) [C9.1:2][0x10675f410] Transferring nw_protocol_boringssl_t handle back into ARC for autorelease Default 10:35:42.662373+0800 BabyApp Task <0FA64C60-D725-446E-9AD2-CE4391B67E25>.<10> summary for task success {transaction_duration_ms=240, response_status=200, connection=9, protocol="http/1.1", domain_lookup_duration_ms=0, connect_duration_ms=40, secure_connection_duration_ms=8, request_start_ms=45, request_duration_ms=0, response_start_ms=222, response_duration_ms=17, request_bytes=248, response_bytes=46746, cache_hit=1} Default 10:35:42.662451+0800 BabyApp Task <0FA64C60-D725-446E-9AD2-CE4391B67E25>.<10> finished successfully Error 10:35:42.664280+0800 BabyApp tcp_input [C9.1:3] flags=[R] seq=1119316938, ack=0, win=0 state=LAST_ACK rcv_nxt=1119316938, snd_una=2639996408 Default 10:35:42.664334+0800 BabyApp tcp_close [C9.1:3] TCP Packets: Error 10:35:42.664392+0800 BabyApp tcp_input [C9.1:3] flags=[R] seq=1119316938, ack=0, win=0 state=CLOSED rcv_nxt=1119316938, snd_una=2639996408 Default 10:35:42.710021+0800 BabyApp Task .<8> received response, status 200 content K Default 10:35:42.710097+0800 BabyApp Task .<8> done using Connection 8 Default 10:35:42.710239+0800 BabyApp Task .<8> response ended Default 10:35:42.710364+0800 BabyApp Task .<8> summary for task success {transaction_duration_ms=411, response_status=200, connection=8, protocol="h2", domain_lookup_duration_ms=3, connect_duration_ms=164, secure_connection_duration_ms=124, request_start_ms=171, request_duration_ms=0, response_start_ms=411, response_duration_ms=0, request_bytes=215, response_bytes=535, cache_hit=1} Default 10:35:42.710551+0800 BabyApp Task .<8> finished successfully Default 10:35:42.710890+0800 BabyApp Task <820BE701-5090-41C5-A56D-0F91DF5D5B91>.<9> received response, status 200 content K Default 10:35:42.710953+0800 BabyApp Task <820BE701-5090-41C5-A56D-0F91DF5D5B91>.<9> done using Connection 8 Default 10:35:42.711100+0800 BabyApp Task <820BE701-5090-41C5-A56D-0F91DF5D5B91>.<9> response ended Default 10:35:42.711159+0800 BabyApp Task <820BE701-5090-41C5-A56D-0F91DF5D5B91>.<9> summary for task success {transaction_duration_ms=411, response_status=200, connection=8, reused=1, request_start_ms=171, request_duration_ms=0, response_start_ms=411, response_duration_ms=0, request_bytes=267, response_bytes=130, cache_hit=1} Default 10:35:42.711210+0800 BabyApp Task <820BE701-5090-41C5-A56D-0F91DF5D5B91>.<9> finished successfully Default 10:35:42.741194+0800 BabyApp tcp_input [C10.1:3] flags=[FP.] seq=3347172710, ack=742991486, win=249 state=ESTABLISHED rcv_nxt=3347172710, snd_una=742991486 Default 10:35:42.741329+0800 BabyApp nw_protocol_tcp_log_summary [C10.1:3] [1E7BCA69-E351-4064-913B-473F27B06009 :57748<->:443] Init: 1, Conn_Time: 7.248ms, Syn's: 1, WR_T: 0/0, RD_T: 0/0, TFO: 0/0/0, ECN: 0/0/0, TS: 1 RTT_Cache: process, rtt_upd: 4, rtt: 27.875ms, rtt_var: 27.000ms rtt_nc: 10.625ms, rtt_var_nc: 10.437ms Default 10:35:42.741399+0800 BabyApp boringssl_context_message_handler(2258) [C10.1:2][0x106674f90] Reading SSL3_RT_ALERT 2 bytes Default 10:35:42.741452+0800 BabyApp boringssl_context_handle_warning_alert(1893) [C10.1:2][0x106674f90] read alert, level: warning, description: close notify Default 10:35:42.741503+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C10.1:2][0x106674f90] state: 2 Default 10:35:42.741553+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C10.1:2][0x106674f90] state: 2 Default 10:35:42.741667+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C10.1:2][0x106674f90] state: 2 Default 10:35:42.741718+0800 BabyApp nw_protocol_boringssl_input_finished(1700) [C10.1:2][0x106674f90] state: 2 Default 10:35:42.741766+0800 BabyApp Connection 10: read-side closed Default 10:35:42.741825+0800 BabyApp Connection 10: read-side closed Default 10:35:42.741873+0800 BabyApp Connection 10: read-side closed Default 10:35:42.741962+0800 BabyApp Connection 10: read-side closed Default 10:35:42.742078+0800 BabyApp Task <62BDC6FB-3371-47BF-B5BB-8039BAA82A94>.<11> received response, status 200 content C Default 10:35:42.742127+0800 BabyApp Connection 10: is being canceled Default 10:35:42.742181+0800 BabyApp [C10 372EA56B-184E-4B35-ACA0-77856D0FE360 Hostname#c459f881:443 tcp, url hash: c8a92a6a, tls] cancel Default 10:35:42.742294+0800 BabyApp [C10 372EA56B-184E-4B35-ACA0-77856D0FE360 Hostname#c459f881:443 tcp, url hash: c8a92a6a, tls] cancelled [C10.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57748<->IPv4#1078b35a:443] Connected Path: satisfied (Path is satisfied), interface: en0, ipv4, dns Duration: 0.244s, DNS @0.000s took 0.000s, TCP @0.003s took 0.007s, TLS took 0.045s bytes in/out: 5619/1561, packets in/out: 7/3, rtt: 0.027s, retransmitted packets: 0, out-of-order packets: 0 Default 10:35:42.742362+0800 BabyApp 0.000s [C10 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:start Default 10:35:42.742420+0800 BabyApp 0.000s [C10 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:satisfied Default 10:35:42.742477+0800 BabyApp 0.000s [C10 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] resolver:start_dns Default 10:35:42.742539+0800 BabyApp 0.000s [C10 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] resolver:receive_dns Default 10:35:42.742594+0800 BabyApp 0.001s [C10.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57748<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:start Default 10:35:42.742646+0800 BabyApp 0.001s [C10.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57748<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] path:satisfied Default 10:35:42.742717+0800 BabyApp 0.001s [C10.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57748<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:start_nexus Default 10:35:42.742782+0800 BabyApp 0.002s [C10.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57748<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:receive_nexus Default 10:35:42.742938+0800 BabyApp 0.003s [C10.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57748<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:start_connect Default 10:35:42.743001+0800 BabyApp 0.010s [C10.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57748<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_transport Default 10:35:42.743083+0800 BabyApp 0.010s [C10 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_transport Default 10:35:42.743141+0800 BabyApp 0.055s [C10.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57748<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_connect Default 10:35:42.743204+0800 BabyApp 0.055s [C10 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:finish_connect Default 10:35:42.743268+0800 BabyApp 0.055s [C10.1 64608B68-ED4D-4B29-B0B6-E8A49BCF69B8 192.168.1.69:57748<->IPv4#1078b35a:443 channel-flow path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:changed_viability Default 10:35:42.743321+0800 BabyApp 0.055s [C10 A8288F4F-DF66-4328-93CE-DD30DFC0C89B Hostname#c459f881:443 resolver path=satisfied (Path is satisfied), interface: en0, ipv4, dns] flow:changed_viability Default 10:35:42.743371+0800 BabyApp 0.244s [C10] path:cancel Default 10:35:42.743791+0800 BabyApp boringssl_context_message_handler(2258) [C10.1:2][0x106674f90] Writing SSL3_RT_ALERT 2 bytes Default 10:35:42.743932+0800 BabyApp boringssl_context_handle_warning_alert(1893) [C10.1:2][0x106674f90] write alert, level: warning, description: close notify Default 10:35:42.744007+0800 BabyApp boringssl_session_disconnect(504) [C10.1:2][0x106674f90] SSL_shutdown 1 Default 10:35:42.744199+0800 BabyApp nw_flow_disconnected [C10.1 IPv4#1078b35a:443 cancelled channel-flow ((null))] Output protocol disconnected Default 10:35:42.744345+0800 BabyApp nw_connection_report_state_with_handler_on_nw_queue [C10] reporting state cancelled Default 10:35:42.744390+0800 BabyApp Task <62BDC6FB-3371-47BF-B5BB-8039BAA82A94>.<11> response ended Default 10:35:42.744437+0800 BabyApp Task <62BDC6FB-3371-47BF-B5BB-8039BAA82A94>.<11> done using Connection 10 Default 10:35:42.744523+0800 BabyApp tcp_output [C10.1:3] flags=[F.] seq=742991517, ack=3347172742, win=1024 state=LAST_ACK rcv_nxt=3347172742, snd_una=742991486 Default 10:35:42.744589+0800 BabyApp nw_protocol_boringssl_remove_input_handler(1012) [C10.1:2][0x106674f90] nw_protocol_boringssl_remove_input_handler forced true Default 10:35:42.744668+0800 BabyApp nw_protocol_boringssl_remove_input_handler(1030) [C10.1:2][0x106674f90] Transferring nw_protocol_boringssl_t handle back into ARC for autorelease Default 10:35:42.744846+0800 BabyApp Task <62BDC6FB-3371-47BF-B5BB-8039BAA82A94>.<11> summary for task success {transaction_duration_ms=247, response_status=200, connection=10, protocol="http/1.1", domain_lookup_duration_ms=0, connect_duration_ms=52, secure_connection_duration_ms=43, request_start_ms=57, request_duration_ms=0, response_start_ms=245, response_duration_ms=1, request_bytes=889, response_bytes=675, cache_hit=1} Default 10:35:42.744941+0800 BabyApp Task <62BDC6FB-3371-47BF-B5BB-8039BAA82A94>.<11> finished successfully Error 10:35:42.746330+0800 BabyApp tcp_input [C10.1:3] flags=[R] seq=3347172742, ack=0, win=0 state=LAST_ACK rcv_nxt=3347172742, snd_una=742991486 Default 10:35:42.746383+0800 BabyApp tcp_close [C10.1:3] TCP Packets: Error 10:35:42.746443+0800 BabyApp tcp_input [C10.1:3] flags=[R] seq=3347172742, ack=0, win=0 state=CLOSED rcv_nxt=3347172742, snd_una=742991486 Default 10:35:43.473843+0800 BabyApp Task <91FABE28-91A7-4EE9-B807-01DEBB74B105>.<1> received response, status 200 content K Default 10:35:43.473968+0800 BabyApp Task <91FABE28-91A7-4EE9-B807-01DEBB74B105>.<1> done using Connection 3 Default 10:35:43.474106+0800 BabyApp Task <91FABE28-91A7-4EE9-B807-01DEBB74B105>.<1> response ended Default 10:35:43.474244+0800 BabyApp Task <91FABE28-91A7-4EE9-B807-01DEBB74B105>.<1> summary for task success {transaction_duration_ms=1337, response_status=200, connection=3, protocol="h2", domain_lookup_duration_ms=2, connect_duration_ms=36, secure_connection_duration_ms=30, request_start_ms=46, request_duration_ms=0, response_start_ms=1337, response_duration_ms=0, request_bytes=520, response_bytes=849, cache_hit=1} Default 10:35:43.474447+0800 BabyApp Task <91FABE28-91A7-4EE9-B807-01DEBB74B105>.<1> finished successfully Default 10:35:43.615515+0800 BabyApp [tw.com.howdesign.pbfapp] Setting badge number to 24 Default 10:35:43.618937+0800 BabyApp [tw.com.howdesign.pbfapp] Set badge number [ hasCompletionHandler: 0 hasError: 0 ]
when app is quit, reveived fcm notification, chick notification when app is.. Active Background Quit messaging().onNotificationOpenedApp click notifee notification when Active Background Quit notifee.onForegroundEvent(type is 1)

--

iPhone X (iOS 13.5.1) Pixel 4 (Android 11)

--

I fixed it, thank you :)

kg-currenxie commented 1 year ago

@Jeeying can you tell us what you did to fix it?