This repository has been archived on 2021-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
lemonbbs/src/settings.h
2021-12-15 18:52:53 +01:00

18 lines
362 B
C

#ifndef CHATSERVER_SETTINGS_H
#define CHATSERVER_SETTINGS_H
// comment this line to build without ANSI color
#define BBS_COLOR
// how many users can be in a text channel at once
#define USERS_PER_CHANNEL 10
// max length of a text channel name
#define CHANNEL_NAME_LEN 64
// filenames
#define DB_PATH "lemonbbs.db3"
#define CONFIG_PATH "config.toml"
#endif