Discovery service database options.
More...
Go to the source code of this file.
Discovery service database options.
Options for discovery service database configuration.
- Author
- Zachary Fogg me@zf.nosp@m.o.gg
- Date
- January 2026
Definition in file options/registry/database.c.
◆ g_database_entries
| const registry_entry_t g_database_entries[] |
Initial value:= {
{"database",
'\0',
OPTION_TYPE_STRING,
offsetof(options_t, discovery_database_path),
"",
0,
"Path to SQLite database for discovery session storage.",
"DATABASE",
NULL,
false,
"ASCII_CHAT_DATABASE",
NULL,
NULL,
false,
false,
OPTION_MODE_DISCOVERY_SVC,
{0},
NULL},
REGISTRY_TERMINATOR()}
Definition at line 17 of file options/registry/database.c.
17 {
18
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()};