* simple_secure_chat now with a proper CLI

* new: BaseChatMesh class, for abstract chat client
This commit is contained in:
Scott Powell 2025-01-25 22:03:25 +11:00
parent a3b7701bc0
commit 00a9e93754
8 changed files with 712 additions and 306 deletions

View file

@ -20,5 +20,7 @@ public:
void begin() { _fs->mkdir(_dir); }
bool load(const char *name, mesh::LocalIdentity& id);
bool load(const char *name, mesh::LocalIdentity& id, char display_name[], int max_name_sz);
bool save(const char *name, const mesh::LocalIdentity& id);
bool save(const char *name, const mesh::LocalIdentity& id, const char display_name[]);
};