This repository has been archived on 2021-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
uIRCd/src/main.h

41 lines
1.1 KiB
C
Raw Normal View History

2020-07-17 13:47:25 +00:00
/*
* This file is part of uIRCd. (https://git.redxen.eu/caskd/uIRCd)
* Copyright (c) 2019, 2020 Alex-David Denes
*
* uIRCd is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* uIRCd is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
2020-07-17 13:47:25 +00:00
* You should have received a copy of the GNU General Public License
* along with uIRCd. If not, see <https://www.gnu.org/licenses/>.
*/
2020-07-17 13:47:25 +00:00
#include "filesystem.h"
#include "global.h"
#include "log.h"
#include "memory.h"
#include "misc.h"
#include "net.h"
#include "structs.h"
2020-07-17 13:47:25 +00:00
#include <errno.h>
#include <linux/limits.h>
2020-07-17 13:47:25 +00:00
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
2020-07-17 13:47:25 +00:00
#include <unistd.h>
2020-08-05 20:16:38 +00:00
#include <sys/stat.h>
#include <fcntl.h>
#define UIRC_HELPERS
#include "../lib/uIRC/include/uirc.h"
2020-07-17 13:47:25 +00:00
#define VERSION "alpha"