mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
1256621041
a lot in reconnects etc. this should make it easier to track when it's supposed to be destroyed. Hopefully fixes a crash I assume is related to this but couldn't find.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1880 dbcabf3a-b0e7-0310-adc4-f8d773084564
60 lines
1.9 KiB
C
60 lines
1.9 KiB
C
#ifndef __CHAT_PROTOCOLS_H
|
|
#define __CHAT_PROTOCOLS_H
|
|
|
|
typedef struct {
|
|
int id;
|
|
|
|
unsigned int not_initialized:1;
|
|
unsigned int case_insensitive:1;
|
|
|
|
char *name;
|
|
char *fullname;
|
|
char *chatnet;
|
|
|
|
CHATNET_REC *(*create_chatnet) (void);
|
|
SERVER_SETUP_REC *(*create_server_setup) (void);
|
|
CHANNEL_SETUP_REC *(*create_channel_setup) (void);
|
|
SERVER_CONNECT_REC *(*create_server_connect) (void);
|
|
void (*destroy_server_connect) (SERVER_CONNECT_REC *);
|
|
|
|
SERVER_REC *(*server_connect) (SERVER_CONNECT_REC *);
|
|
CHANNEL_REC *(*channel_create) (SERVER_REC *, const char *, int);
|
|
QUERY_REC *(*query_create) (const char *, const char *, int);
|
|
} CHAT_PROTOCOL_REC;
|
|
|
|
extern GSList *chat_protocols;
|
|
|
|
#define PROTO_CHECK_CAST(object, cast, type_field, id) \
|
|
((cast *) chat_protocol_check_cast(object, \
|
|
offsetof(cast, type_field), id))
|
|
void *chat_protocol_check_cast(void *object, int type_pos, const char *id);
|
|
|
|
#define CHAT_PROTOCOL(object) \
|
|
((object) == NULL ? chat_protocol_get_default() : \
|
|
chat_protocol_find_id((object)->chat_type))
|
|
|
|
/* Register new chat protocol. */
|
|
CHAT_PROTOCOL_REC *chat_protocol_register(CHAT_PROTOCOL_REC *rec);
|
|
|
|
/* Unregister chat protocol. */
|
|
void chat_protocol_unregister(const char *name);
|
|
|
|
/* Find functions */
|
|
int chat_protocol_lookup(const char *name);
|
|
CHAT_PROTOCOL_REC *chat_protocol_find(const char *name);
|
|
CHAT_PROTOCOL_REC *chat_protocol_find_id(int id);
|
|
CHAT_PROTOCOL_REC *chat_protocol_find_net(GHashTable *optlist);
|
|
|
|
/* Default chat protocol to use */
|
|
void chat_protocol_set_default(CHAT_PROTOCOL_REC *rec);
|
|
CHAT_PROTOCOL_REC *chat_protocol_get_default(void);
|
|
|
|
/* Return "unknown chat protocol" record. Used when protocol name is
|
|
specified but it isn't registered yet. */
|
|
CHAT_PROTOCOL_REC *chat_protocol_get_unknown(const char *name);
|
|
|
|
void chat_protocols_init(void);
|
|
void chat_protocols_deinit(void);
|
|
|
|
#endif
|