mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 18:49:03 -04:00
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@132 e03df62e-2008-0410-955e-edbf42e46eb7
95 lines
2.2 KiB
C++
95 lines
2.2 KiB
C++
/*
|
|
|
|
$Log$
|
|
Revision 1.1 2003/01/23 19:45:58 brain
|
|
Initial revision
|
|
|
|
Revision 1.7 2003/01/22 20:49:16 brain
|
|
Added FileReader file-caching class
|
|
Changed m_randquote to use FileReader class
|
|
|
|
Revision 1.6 2003/01/19 20:12:24 brain
|
|
Fixed ident max length to 10
|
|
|
|
Revision 1.5 2003/01/15 22:47:44 brain
|
|
Changed user and channel structs to classes (finally)
|
|
|
|
Revision 1.4 2003/01/13 22:30:50 brain
|
|
Added Admin class (holds /admin info for modules)
|
|
Added methods to Server class
|
|
|
|
|
|
*/
|
|
|
|
|
|
#include <string>
|
|
#include <stdio.h>
|
|
#include <syslog.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <signal.h>
|
|
#include <time.h>
|
|
#include <netdb.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <errno.h>
|
|
#include <stdarg.h>
|
|
#include <assert.h>
|
|
#include <sys/param.h>
|
|
#include <sys/types.h>
|
|
#ifndef _LINUX_C_LIB_VERSION
|
|
#include <sys/socket.h>
|
|
#include <sys/stat.h>
|
|
#include <netinet/in.h>
|
|
#endif
|
|
#include <arpa/inet.h>
|
|
#include <string>
|
|
#include <deque>
|
|
|
|
#include "inspircd_config.h"
|
|
#include "inspircd_io.h"
|
|
#include "inspircd_util.h"
|
|
#include "users.h"
|
|
#include "channels.h"
|
|
|
|
#define ERROR -1
|
|
#define TRUE 1
|
|
#define FALSE 0
|
|
#define IDENTMAX 9
|
|
/* max sockets we can open */
|
|
#define MAXSOCKS 64
|
|
|
|
typedef deque<string> file_cache;
|
|
|
|
/* prototypes */
|
|
int InspIRCd(void);
|
|
int InitConfig(void);
|
|
void Error(int status);
|
|
void send_error(char *s);
|
|
void ReadConfig(void);
|
|
void strlower(char *n);
|
|
|
|
void WriteOpers(char* text, ...);
|
|
void debug(char *text, ...);
|
|
void Write(int sock,char *text, ...);
|
|
void WriteServ(int sock, char* text, ...);
|
|
void WriteFrom(int sock, userrec *user,char* text, ...);
|
|
void WriteTo(userrec *source, userrec *dest,char *data, ...);
|
|
void WriteChannel(chanrec* Ptr, userrec* user, char* text, ...);
|
|
void ChanExceptSender(chanrec* Ptr, userrec* user, char* text, ...);
|
|
int common_channels(userrec *u, userrec *u2);
|
|
void WriteCommon(userrec *u, char* text, ...);
|
|
void WriteCommonExcept(userrec *u, char* text, ...);
|
|
void WriteWallOps(userrec *source, char* text, ...);
|
|
int isnick(const char *n);
|
|
userrec* Find(string nick);
|
|
chanrec* FindChan(const char* chan);
|
|
char* cmode(userrec *user, chanrec *chan);
|
|
string getservername();
|
|
string getnetworkname();
|
|
string getadminname();
|
|
string getadminemail();
|
|
string getadminnick();
|
|
void readfile(file_cache &F, const char* fname);
|
|
|