ssb: Expose last successful connection time for stored connections.

This commit is contained in:
2025-05-31 16:33:48 -04:00
parent ab9f57f044
commit aa7a32395e
5 changed files with 16 additions and 2 deletions

View File

@ -340,6 +340,10 @@ typedef struct _tf_ssb_db_stored_connection_t
int port;
/** The identity. */
char pubkey[k_id_base64_len];
/** Time of last attempted connection. */
int64_t last_attempt;
/** Time of last successful connection. */
int64_t last_success;
} tf_ssb_db_stored_connection_t;
/**