Splitted server.[ch] and created packet_send.[ch] and
[silc.git] / apps / silcd / server.h
1 /*
2
3   server.h
4
5   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
6
7   Copyright (C) 1997 - 2000 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20
21 #ifndef SERVER_H
22 #define SERVER_H
23
24 /* Forward declaration for SILC Server object. The actual object is
25    defined in internal header file for server routines. I want to keep
26    the object private hence this declaration. */
27 typedef struct SilcServerStruct *SilcServer;
28
29 #define SILC_SERVER_MAX_CONNECTIONS 10000
30
31 /* General definitions */
32
33 /* Server and router. Used internally by the code. */
34 #define SILC_SERVER 0
35 #define SILC_ROUTER 1
36
37 /* Connection retry timeout. We implement exponential backoff algorithm
38    in connection retry. The interval of timeuot grows when retry count
39    grows. */
40 #define SILC_SERVER_RETRY_COUNT        4         /* Max retry count */
41 #define SILC_SERVER_RETRY_MULTIPLIER   7 / 4     /* Interval growth */
42 #define SILC_SERVER_RETRY_RANDOMIZER   2         /* timeout += rnd % 2 */
43 #define SILC_SERVER_RETRY_INTERVAL_MIN 10        /* Min retry timeout */
44 #define SILC_SERVER_RETRY_INTERVAL_MAX 600       /* Max generated timeout */
45
46 /* 
47    Silc Server Params.
48
49    Structure to hold various default parameters for server that can be
50    given before running the server. 
51
52 */
53 typedef struct {
54   unsigned int retry_count;
55   unsigned long retry_interval_min;
56   unsigned long retry_interval_min_usec;
57   unsigned long retry_interval_max;
58   unsigned int retry_keep_trying;
59
60   unsigned long protocol_timeout;
61   unsigned long protocol_timeout_usec;
62 } *SilcServerParams;
63
64 /* Macros */
65
66 /* This macro is used to send notify messages with formatted string. The
67    string is formatted with arguments and the formatted string is sent as
68    argument. */
69 #define SILC_SERVER_SEND_NOTIFY(server, sock, type, fmt)                    \
70 do {                                                                        \
71   char *__fmt__ = silc_format fmt;                                          \
72   silc_server_send_notify(server, sock, type, 1, __fmt__, strlen(__fmt__)); \
73   silc_free(__fmt__);                                                       \
74 } while(0);
75
76 /* Prototypes */
77 int silc_server_alloc(SilcServer *new_server);
78 void silc_server_free(SilcServer server);
79 int silc_server_init(SilcServer server);
80 void silc_server_run(SilcServer server);
81 void silc_server_stop(SilcServer server);
82 void silc_server_packet_parse(SilcPacketParserContext *parser_context);
83 void silc_server_packet_parse_type(SilcServer server, 
84                                    SilcSocketConnection sock,
85                                    SilcPacketContext *packet);
86 void silc_server_close_connection(SilcServer server,
87                                   SilcSocketConnection sock);
88 void silc_server_free_sock_user_data(SilcServer server, 
89                                      SilcSocketConnection sock);
90 void silc_server_remove_from_channels(SilcServer server, 
91                                       SilcSocketConnection sock,
92                                       SilcClientEntry client);
93 int silc_server_remove_from_one_channel(SilcServer server, 
94                                         SilcSocketConnection sock,
95                                         SilcChannelEntry channel,
96                                         SilcClientEntry client,
97                                         int notify);
98 int silc_server_client_on_channel(SilcClientEntry client,
99                                   SilcChannelEntry channel);
100 void silc_server_disconnect_remote(SilcServer server,
101                                    SilcSocketConnection sock,
102                                    const char *fmt, ...);
103 SilcChannelEntry silc_server_create_new_channel(SilcServer server, 
104                                                 SilcServerID *router_id,
105                                                 char *cipher, 
106                                                 char *channel_name);
107
108 #endif