Add disable_log for naive

This commit is contained in:
arm64v8a
2023-09-05 11:07:39 +09:00
parent 0fd9ea25ab
commit 26637883a1
7 changed files with 46 additions and 3 deletions

View File

@@ -24,6 +24,7 @@ void EditNaive::onStart(std::shared_ptr<NekoGui::ProxyEntity> _ent) {
P_LOAD_STRING(sni);
P_C_LOAD_STRING(certificate);
P_LOAD_INT(insecure_concurrency);
P_LOAD_BOOL(disable_log);
}
bool EditNaive::onEnd() {
@@ -36,6 +37,7 @@ bool EditNaive::onEnd() {
P_SAVE_STRING(sni);
P_C_SAVE_STRING(certificate);
P_SAVE_INT(insecure_concurrency);
P_SAVE_BOOL(disable_log);
return true;
}