mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-11 11:39:02 -04:00
TODO: Make more use of userrec::HasUmode('c') rather than user->modes['c'-65] *oogly* Next - get umode +o working! git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4178 e03df62e-2008-0410-955e-edbf42e46eb7
50 lines
1.4 KiB
C++
50 lines
1.4 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 chop(char* str);
|
|
void tidystring(char* str);
|
|
void Blocking(int s);
|
|
void NonBlocking(int s);
|
|
int CleanAndResolve (char *resolvedHost, const char *unresolvedHost, bool forward);
|
|
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);
|
|
void TidyBan(char *ban);
|
|
std::string chlist(userrec *user, userrec* source);
|
|
void send_network_quit(const char* nick, const char* reason);
|
|
int cflags(userrec *user, chanrec *chan);
|
|
|
|
#endif
|