diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-11 06:26:04 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-11 06:26:39 -0400 |
| commit | d92bf1f7cf76d0c678ccbaea10a5ff6d41630e52 (patch) | |
| tree | d890d17b83013c6f0a975f8431d478eff94f5542 /src/config.h | |
| parent | ea47f06b8fa0ebab649ea1f7b323246d7e482438 (diff) | |
| download | fujinet-chat-d92bf1f7cf76d0c678ccbaea10a5ff6d41630e52.tar.gz | |
Remove server/nick prompts from client, add a separate config tool that loads as an init segment, with lots more options.
Diffstat (limited to 'src/config.h')
| -rw-r--r-- | src/config.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h new file mode 100644 index 0000000..f051fed --- /dev/null +++ b/src/config.h @@ -0,0 +1,14 @@ + +typedef struct { + char url[128]; + char nick[25]; + char real_name[25]; + char colors[2]; + char channels[5][33]; + char alert_type; + char show_ping; + char hide_motd; + char atract_away; +} conf_t; + +extern conf_t *conf; |
