ascii-chat 0.8.38
Real-time terminal-based video chat with ASCII art conversion
Loading...
Searching...
No Matches
options/registry/database.c
Go to the documentation of this file.
1
12#include <ascii-chat/options/registry/common.h>
13
14// ============================================================================
15// DATABASE CATEGORY - Discovery service database options
16// ============================================================================
17const registry_entry_t g_database_entries[] = {
18 // DATABASE GROUP - ACDS Server Specific Options
19 {"database",
20 '\0',
21 OPTION_TYPE_STRING,
22 offsetof(options_t, discovery_database_path),
23 "",
24 0,
25 "Path to SQLite database for discovery session storage.",
26 "DATABASE",
27 NULL,
28 false,
29 "ASCII_CHAT_DATABASE",
30 NULL,
31 NULL,
32 false,
33 false,
34 OPTION_MODE_DISCOVERY_SVC,
35 {0},
36 NULL},
37
38 REGISTRY_TERMINATOR()};
const registry_entry_t g_database_entries[]