mirror of
https://github.com/irssi/irssi.git
synced 2025-02-02 15:08:01 -05:00
31 lines
768 B
C
31 lines
768 B
C
|
#ifndef __IGNORE_H
|
||
|
#define __IGNORE_H
|
||
|
|
||
|
typedef struct {
|
||
|
char *mask; /* nick mask */
|
||
|
char *servertag; /* this is for autoignoring */
|
||
|
char **channels; /* ignore only in these channels */
|
||
|
char *pattern; /* text body must match this pattern */
|
||
|
|
||
|
int level; /* ignore these levels */
|
||
|
int except_level; /* don't ignore these levels */
|
||
|
|
||
|
int regexp:1;
|
||
|
int fullword:1;
|
||
|
} IGNORE_REC;
|
||
|
|
||
|
extern GSList *ignores;
|
||
|
|
||
|
int ignore_check(IRC_SERVER_REC *server, const char *nick, const char *host,
|
||
|
const char *channel, const char *text, int level);
|
||
|
|
||
|
IGNORE_REC *ignore_find(const char *servertag, const char *mask, char **channels);
|
||
|
|
||
|
void ignore_add_rec(IGNORE_REC *rec);
|
||
|
void ignore_update_rec(IGNORE_REC *rec);
|
||
|
|
||
|
void ignore_init(void);
|
||
|
void ignore_deinit(void);
|
||
|
|
||
|
#endif
|