updates.
[silc.git] / apps / irssi / src / silc / core / silc-servers.h
1 #ifndef __SILC_SERVER_H
2 #define __SILC_SERVER_H
3
4 #include "chat-protocols.h"
5 #include "servers.h"
6
7 /* returns SILC_SERVER_REC if it's SILC server, NULL if it isn't */
8 #define SILC_SERVER(server) \
9         PROTO_CHECK_CAST(SERVER(server), SILC_SERVER_REC, chat_type, "SILC")
10 #define SILC_SERVER_CONNECT(conn) \
11         PROTO_CHECK_CAST(SERVER_CONNECT(conn), SILC_SERVER_CONNECT_REC, \
12                          chat_type, "SILC")
13 #define IS_SILC_SERVER(server) \
14         (SILC_SERVER(server) ? TRUE : FALSE)
15 #define IS_SILC_SERVER_CONNECT(conn) \
16         (SILC_SERVER_CONNECT(conn) ? TRUE : FALSE)
17
18 /* all strings should be either NULL or dynamically allocated */
19 /* address and nick are mandatory, rest are optional */
20 typedef struct {
21 #include "server-connect-rec.h"
22 } SILC_SERVER_CONNECT_REC;
23
24 #define STRUCT_SERVER_CONNECT_REC SILC_SERVER_CONNECT_REC
25 typedef struct {
26 #include "server-rec.h"
27   /* Command sending queue */
28   int cmdcount;         /* number of commands in `cmdqueue'. Can be more than
29                            there actually is, to make flood control remember
30                            how many messages can be sent before starting the
31                            flood control */
32   int cmd_last_split;   /* Last command wasn't sent entirely to server.
33                            First item in `cmdqueue' should be re-sent. */
34   GSList *cmdqueue;
35   GTimeVal last_cmd;    /* last time command was sent to server */
36   
37   GSList *idles;        /* Idle queue - send these commands to server
38                            if there's nothing else to do */
39   
40   gpointer chanqueries;
41   SilcClientConnection conn;
42 } SILC_SERVER_REC;
43
44 SILC_SERVER_REC *silc_server_connect(SILC_SERVER_CONNECT_REC *conn);
45
46 /* Return a string of all channels in server in server->channels_join() 
47    format */
48 char *silc_server_get_channels(SILC_SERVER_REC *server);
49 void silc_command_exec(SILC_SERVER_REC *server,
50                        const char *command, const char *args);
51 void silc_server_init(void);
52 void silc_server_deinit(void);
53
54 #endif