1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
// Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// See the LICENSE file
// Base Author: shennetsind @ http://hercules.ws
#ifndef _IRC_BOT_H_
#define _IRC_BOT_H_
#define IRC_NICK_LENGTH 40
#define IRC_IDENT_LENGTH 40
#define IRC_HOST_LENGTH 63
#define IRC_FUNC_LENGTH 30
struct hChSysCh;
struct irc_func {
char name[IRC_FUNC_LENGTH];
void (*func)(int, char*, char*, char*, char*);
};
struct irc_bot_interface {
int fd;
bool isIn, isOn;
unsigned int last_try;
unsigned char fails;
unsigned long ip;
unsigned short port;
/* */
struct hChSysCh *channel;
/* */
struct {
struct irc_func **list;
unsigned int size;
} funcs;
/* */
void (*init) (void);
void (*final) (void);
/* */
int (*parse) (int fd);
void (*parse_sub) (int fd, char *str);
void (*parse_source) (char *source, char *nick, char *ident, char *host);
/* */
struct irc_func* (*func_search) (char* function_name);
/* */
int (*connect_timer) (int tid, unsigned int tick, int id, intptr_t data);
int (*identify_timer) (int tid, unsigned int tick, int id, intptr_t data);
int (*join_timer) (int tid, unsigned int tick, int id, intptr_t data);
/* */
void (*send)(char *str);
void (*relay) (char *name, char *msg);
/* */
void (*pong) (int fd, char *cmd, char *source, char *target, char *msg);
void (*join) (int fd, char *cmd, char *source, char *target, char *msg);
void (*privmsg) (int fd, char *cmd, char *source, char *target, char *msg);
};
struct irc_bot_interface *ircbot;
void ircbot_defaults(void);
#endif /* _IRC_BOT_H_ */
|