mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 00:22:17 +02:00
..adding new files..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d01b094151
commit
c95034c6de
206 changed files with 31247 additions and 0 deletions
15
src/irc/core/masks.h
Normal file
15
src/irc/core/masks.h
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#ifndef __MASKS_H
|
||||
#define __MASKS_H
|
||||
|
||||
#define IRC_MASK_NICK 0x01
|
||||
#define IRC_MASK_USER 0x02
|
||||
#define IRC_MASK_HOST 0x04
|
||||
#define IRC_MASK_DOMAIN 0x08
|
||||
|
||||
int irc_mask_match(const char *mask, const char *nick, const char *user, const char *host);
|
||||
int irc_mask_match_address(const char *mask, const char *nick, const char *address);
|
||||
int irc_masks_match(const char *masks, const char *nick, const char *address);
|
||||
|
||||
char *irc_get_mask(const char *nick, const char *address, int flags);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue