source: irc.h @ 238f828

Last change on this file since 238f828 was 238f828, checked in by Wilmer van der Gaast <wilmer@…>, at 2005-12-26T14:42:54Z

Fixed that security hole, and added mode +R (don't know if that's the right one).
Now to add the actual oper features (and IPC). :-)

  • Property mode set to 100644
File size: 4.0 KB
Line 
1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2004 Wilmer van der Gaast and others                *
5  \********************************************************************/
6
7/* The big hairy IRCd part of the project                               */
8
9/*
10  This program is free software; you can redistribute it and/or modify
11  it under the terms of the GNU General Public License as published by
12  the Free Software Foundation; either version 2 of the License, or
13  (at your option) any later version.
14
15  This program is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  GNU General Public License for more details.
19
20  You should have received a copy of the GNU General Public License with
21  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
22  if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23  Suite 330, Boston, MA  02111-1307  USA
24*/
25
26#ifndef _IRC_H
27#define _IRC_H
28
29#define IRC_MAX_LINE 512
30#define IRC_MAX_ARGS 8
31
32#define IRC_LOGIN_TIMEOUT 60
33#define IRC_PING_STRING "PinglBee"
34
35/* #define FLOOD_SEND
36 * Not yet enabled by default due to some problems.
37 */
38#define FLOOD_SEND_INTERVAL 30
39#define FLOOD_SEND_BYTES (1024*10)
40#define FLOOD_SEND_MAXBUFFER (1024*20)
41
42#define UMODES "ias"
43#define UMODES_PRIV "Ro"
44#define CMODES "nt"
45#define CMODE "t"
46#define UMODE "s"
47
48typedef enum
49{
50        USTATUS_OFFLINE,
51        USTATUS_AUTHORIZED,
52        USTATUS_LOGGED_IN,
53        USTATUS_IDENTIFIED
54} irc_status_t;
55
56typedef struct channel
57{
58        char *name;
59} channel_t;
60
61typedef struct irc
62{
63        int fd;
64        irc_status_t status;
65        double last_pong;
66        int pinging;
67        char *sendbuffer;
68        char *readbuffer;
69        int quit;
70
71        int sentbytes;
72        time_t oldtime;
73
74        char *nick;
75        char *user;
76        char *host;
77        char *realname;
78        char *password;
79
80        char umode[8];
81       
82        char *myhost;
83        char *mynick;
84
85        char *channel;
86        int c_id;
87
88        char is_private;                /* Not too nice... */
89        char *last_target;
90       
91        struct query *queries;
92        struct account *accounts;
93       
94        struct __USER *users;
95        GHashTable *userhash;
96        GHashTable *watches;
97        struct __NICK *nicks;
98        struct help *help;
99        struct set *set;
100
101        GIOChannel *io_channel;
102        gint r_watch_source_id;
103        gint w_watch_source_id;
104        gint ping_source_id;
105} irc_t;
106
107#include "user.h"
108#include "nick.h"
109
110extern GSList *irc_connection_list;
111
112irc_t *irc_new( int fd );
113void irc_free( irc_t *irc );
114
115int irc_exec( irc_t *irc, char **cmd );
116int irc_process( irc_t *irc );
117int irc_process_line( irc_t *irc, char *line );
118
119void irc_vawrite( irc_t *irc, char *format, va_list params );
120void irc_write( irc_t *irc, char *format, ... );
121void irc_write_all( int now, char *format, ... );
122void irc_reply( irc_t *irc, int code, char *format, ... );
123G_MODULE_EXPORT int irc_usermsg( irc_t *irc, char *format, ... );
124char **irc_tokenize( char *buffer );
125
126void irc_login( irc_t *irc );
127void irc_motd( irc_t *irc );
128void irc_names( irc_t *irc, char *channel );
129void irc_topic( irc_t *irc, char *channel );
130void irc_umode_set( irc_t *irc, char *s, int allow_priv );
131void irc_who( irc_t *irc, char *channel );
132void irc_spawn( irc_t *irc, user_t *u );
133void irc_join( irc_t *irc, user_t *u, char *channel );
134void irc_part( irc_t *irc, user_t *u, char *channel );
135void irc_kick( irc_t *irc, user_t *u, char *channel, user_t *kicker );
136void irc_kill( irc_t *irc, user_t *u );
137void irc_invite( irc_t *irc, char *nick, char *channel );
138void irc_whois( irc_t *irc, char *nick );
139int irc_away( irc_t *irc, char *away );
140void irc_setpass( irc_t *irc, const char *pass ); /* USE WITH CAUTION! */
141
142int irc_send( irc_t *irc, char *nick, char *s, int flags );
143int irc_privmsg( irc_t *irc, user_t *u, char *type, char *to, char *prefix, char *msg );
144int irc_msgfrom( irc_t *irc, char *nick, char *msg );
145int irc_noticefrom( irc_t *irc, char *nick, char *msg );
146
147int buddy_send_handler( irc_t *irc, user_t *u, char *msg, int flags );
148
149#endif
Note: See TracBrowser for help on using the repository browser.