0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-13 20:18:53 +02:00
construct/include/ircd/cache.h

48 lines
1.1 KiB
C
Raw Normal View History

#include <map>
2016-07-31 08:03:05 +02:00
#include <vector>
#include "ircd/util.h"
#pragma once
#define HAVE_IRCD_CACHE_H
2008-04-13 17:54:23 +02:00
#define HELP_MAX 100
#define CACHEFILELEN 30
/* two servernames, a gecos, three spaces, ":1", '\0' */
#define LINKSLINELEN (HOSTLEN + HOSTLEN + REALLEN + 6)
#define HELP_USER 0x001
#define HELP_OPER 0x002
struct cachefile
{
2016-07-31 08:03:05 +02:00
cachefile(const char *filename, const char *shortname, int flags) {
cache(filename, shortname, flags);
}
cachefile() {};
std::string name;
std::vector<std::string> contents;
2008-04-13 17:54:23 +02:00
int flags;
2016-07-31 08:03:05 +02:00
void cache(const char *filename, const char *shortname, int flags);
2008-04-13 17:54:23 +02:00
};
void init_cache(void);
void cache_links(void *unused);
void load_help(void);
void send_user_motd(struct Client *);
void send_oper_motd(struct Client *);
void cache_user_motd(void);
2016-07-31 08:03:05 +02:00
extern struct cachefile user_motd;
extern struct cachefile oper_motd;
extern char user_motd_changed[MAX_DATE_STRING];
2008-04-13 17:54:23 +02:00
2016-07-31 08:03:05 +02:00
extern std::map<std::string, std::shared_ptr<cachefile>, case_insensitive_less> help_dict_oper;
extern std::map<std::string, std::shared_ptr<cachefile>, case_insensitive_less> help_dict_user;