mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 23:22:16 +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
27
src/irc/core/netsplit.h
Normal file
27
src/irc/core/netsplit.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
#ifndef __NETSPLIT_H
|
||||
#define __NETSPLIT_H
|
||||
|
||||
#include "nicklist.h"
|
||||
|
||||
typedef struct {
|
||||
char *nick;
|
||||
char *address;
|
||||
char *server;
|
||||
char *destserver;
|
||||
GSList *channels;
|
||||
|
||||
time_t destroy;
|
||||
} NETSPLIT_REC;
|
||||
|
||||
typedef struct {
|
||||
char *name;
|
||||
NICK_REC nick;
|
||||
} NETSPLIT_CHAN_REC;
|
||||
|
||||
void netsplit_init(void);
|
||||
void netsplit_deinit(void);
|
||||
|
||||
NETSPLIT_REC *netsplit_find(IRC_SERVER_REC *server, const char *nick, const char *address);
|
||||
NICK_REC *netsplit_find_channel(IRC_SERVER_REC *server, const char *nick, const char *address, const char *channel);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue