Check-in [99b09b9476]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:For sync operations, also display the FQDN of the remote, if available.
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 99b09b9476c7e5a33a2647724ffa151cca79324a2019d8175d80a7b6f724fd0f
User & Date: danield 2023-05-05 12:56:58.625
Context
2023-05-05
14:40
Update the built-in SQLite to the latest 3.42.0 beta for testing. check-in: 71ed8cbd0c user: drh tags: trunk
12:56
For sync operations, also display the FQDN of the remote, if available. check-in: 99b09b9476 user: danield tags: trunk
2023-05-03
13:23
Add SUMMARY and DETAILS HTML elements to the list of allowable wiki/markdown tags, per request in [forum:f9559dbac03810|forum post f9559dbac03810]. check-in: 35df3e6ad4 user: stephan tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/xfer.c.
2856
2857
2858
2859
2860
2861
2862
2863
2864



2865
2866
2867
2868
2869
2870
2871
                    db_timespan_name(-rSkew));
     g.clockSkewSeen = 1;
  }

  fossil_force_newline();
  if( g.zHttpCmd==0 ){
    fossil_print(
       "%s done, wire bytes sent: %lld  received: %lld  remote: %s\n",
       zOpType, nSent, nRcvd, g.zIpAddr);



  }
  if( syncFlags & SYNC_VERBOSE ){
    fossil_print(
      "Uncompressed payload sent: %lld  received: %lld\n", nUncSent, nUncRcvd);
  }
  transport_close(&g.url);
  transport_global_shutdown(&g.url);







|
|
>
>
>







2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
                    db_timespan_name(-rSkew));
     g.clockSkewSeen = 1;
  }

  fossil_force_newline();
  if( g.zHttpCmd==0 ){
    fossil_print(
       "%s done, wire bytes sent: %lld  received: %lld  remote: %s%s\n",
       zOpType, nSent, nRcvd,
       (g.url.name && g.url.name[0]!='\0') ? g.url.name : "",
       (g.zIpAddr && g.zIpAddr[0]!='\0' && fossil_strcmp(g.zIpAddr,g.url.name)) ?
         mprintf(" (%s)", g.zIpAddr) : "");
  }
  if( syncFlags & SYNC_VERBOSE ){
    fossil_print(
      "Uncompressed payload sent: %lld  received: %lld\n", nUncSent, nUncRcvd);
  }
  transport_close(&g.url);
  transport_global_shutdown(&g.url);