Integer type name change.
[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 typedef struct {
25   SilcClientEntry client_entry;
26   SilcClientConnection conn;
27   SilcUInt32 session_id;
28   char *filepath;
29   bool send;
30
31   long starttime;               /* Start time of transfer */
32   double kps;                   /* Kilos per second */
33   SilcUInt64 offset;            /* Current offset */
34   SilcUInt64 filesize;          /* Total file size */
35   SilcUInt32 percent;           /* Percent of current transmission */
36 } *FtpSession;
37
38 #define STRUCT_SERVER_CONNECT_REC SILC_SERVER_CONNECT_REC
39 typedef struct {
40 #include "server-rec.h"
41   /* Command sending queue */
42   int cmdcount;         /* number of commands in `cmdqueue'. Can be more than
43                            there actually is, to make flood control remember
44                            how many messages can be sent before starting the
45                            flood control */
46   int cmd_last_split;   /* Last command wasn't sent entirely to server.
47                            First item in `cmdqueue' should be re-sent. */
48   GSList *cmdqueue;
49   GTimeVal last_cmd;    /* last time command was sent to server */
50   
51   GSList *idles;        /* Idle queue - send these commands to server
52                            if there's nothing else to do */
53
54   SilcDList ftp_sessions;
55   FtpSession current_session;
56   
57   gpointer chanqueries;
58   SilcClientConnection conn;
59   SilcUInt32 umode;
60 } SILC_SERVER_REC;
61
62 SILC_SERVER_REC *silc_server_connect(SILC_SERVER_CONNECT_REC *conn);
63
64 /* Return a string of all channels in server in server->channels_join() 
65    format */
66 char *silc_server_get_channels(SILC_SERVER_REC *server);
67 void silc_command_exec(SILC_SERVER_REC *server,
68                        const char *command, const char *args);
69 void silc_server_init(void);
70 void silc_server_deinit(void);
71 void silc_server_free_ftp(SILC_SERVER_REC *server,
72                           SilcClientEntry client_entry);
73
74 #endif