mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
This way we prevent the creation of duplicate ignores since the old code skipped the ignore_find call when a pattern was specified. It should also cover all the cases where the ignores would be wrongly overwritten, such as the case outlined in #78.
48 lines
1.3 KiB
C
48 lines
1.3 KiB
C
#ifndef __IGNORE_H
|
|
#define __IGNORE_H
|
|
|
|
#ifdef HAVE_REGEX_H
|
|
# include <regex.h>
|
|
#endif
|
|
|
|
typedef struct _IGNORE_REC IGNORE_REC;
|
|
|
|
struct _IGNORE_REC {
|
|
int level; /* ignore these levels */
|
|
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 */
|
|
|
|
time_t unignore_time; /* time in sec for temp ignores */
|
|
|
|
unsigned int exception:1; /* *don't* ignore */
|
|
unsigned int regexp:1;
|
|
unsigned int fullword:1;
|
|
unsigned int replies:1; /* ignore replies to nick in channel */
|
|
#ifdef HAVE_REGEX_H
|
|
unsigned int regexp_compiled:1; /* should always be TRUE, unless regexp is invalid */
|
|
regex_t preg;
|
|
#endif
|
|
};
|
|
|
|
extern GSList *ignores;
|
|
|
|
int ignore_check(SERVER_REC *server, const char *nick, const char *host,
|
|
const char *channel, const char *text, int level);
|
|
|
|
enum {
|
|
IGNORE_FIND_PATTERN = 0x01, // Match the pattern
|
|
IGNORE_FIND_NOACT = 0x02, // Exclude the targets with NOACT level
|
|
};
|
|
|
|
IGNORE_REC *ignore_find(const char *servertag, const char *mask, const char *pattern,
|
|
char **channels, const int flags);
|
|
|
|
void ignore_add_rec(IGNORE_REC *rec);
|
|
void ignore_update_rec(IGNORE_REC *rec);
|
|
|
|
void ignore_init(void);
|
|
void ignore_deinit(void);
|
|
|
|
#endif
|