mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-14 04:59:01 -04:00
Improve tidiness of new common_channels function Add timeout value to blocking CleanAndResolve function git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4572 e03df62e-2008-0410-955e-edbf42e46eb7
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
/* +------------------------------------+
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
* +------------------------------------+
|
|
*
|
|
* InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
|
|
* E-mail:
|
|
* <brain@chatspike.net>
|
|
* <Craig@chatspike.net>
|
|
*
|
|
* Written by Craig Edwards, Craig McLure, and others.
|
|
* This program is free but copyrighted software; see
|
|
* the file COPYING for details.
|
|
*
|
|
* ---------------------------------------------------
|
|
*/
|
|
|
|
#ifndef __MESSAGE_H
|
|
#define __MESSAGE_H
|
|
|
|
// include the common header files
|
|
|
|
#include <typeinfo>
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <deque>
|
|
#include <sstream>
|
|
#include <vector>
|
|
#include "users.h"
|
|
#include "channels.h"
|
|
|
|
int common_channels(userrec *u, userrec *u2);
|
|
void Blocking(int s);
|
|
void NonBlocking(int s);
|
|
int CleanAndResolve(char *resolvedHost, const char *unresolvedHost, bool forward, unsigned long timeout);
|
|
int c_count(userrec* u);
|
|
void ChangeName(userrec* user, const char* gecos);
|
|
void ChangeDisplayedHost(userrec* user, const char* host);
|
|
int isident(const char* n);
|
|
int isnick(const char* n);
|
|
const char* cmode(userrec *user, chanrec *chan);
|
|
int cstatus(userrec *user, chanrec *chan);
|
|
std::string chlist(userrec *user, userrec* source);
|
|
int cflags(userrec *user, chanrec *chan);
|
|
|
|
#endif
|