updates.
[silc.git] / lib / silcclient / silcapi.h
1 /****h* silcclient/silcapi.h
2  *
3  * NAME
4  *
5  * silcapi.h
6  *
7  * COPYRIGHT
8  *
9  * Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
10  *
11  * Copyright (C) 2000 - 2001 Pekka Riikonen
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * DESCRIPTION
24  *
25  * This file defines the SILC Client Library API for the application.  The
26  * client operations are defined first.  These are callback functions that
27  * the application MUST implement since the library may call the functions
28  * at any time.  At the end of file is the API for the application that
29  * it can use from the library.  This is the only file that the application
30  * may include from the SIlC Client Library.
31  *
32  * o SILC Client Operations
33  *
34  *   These functions must be implemented by the application calling the SILC
35  *   client library. The client library can call these functions at any time.
36  *
37  *   To use this structure: define a static SilcClientOperations variable,
38  *   fill it and pass its pointer to silc_client_alloc function.
39  *
40  * o SILC Client Library API
41  *
42  *   This is the API that is published by the SILC Client Library for the
43  *   applications.  These functions are implemented in the SILC Client Library.
44  *   Application may freely call these functions from the library.
45  *
46  * Please, refer to the README file in this directory for the directions
47  * of how to use the SILC Client Library.
48  *
49  ***/
50
51 #ifndef SILCAPI_H
52 #define SILCAPI_H
53
54 #include "clientlibincludes.h"
55
56 /* General definitions */
57
58 /****d* silcclient/SilcClientAPI/SilcKeyAgreementStatus
59  *
60  * NAME
61  *
62  *    typedef enum { ... } SilcKeyAgreementStatus;
63  *
64  * DESCRIPTION
65  *
66  *    Key agreement status types indicating the status of the key
67  *    agreement protocol.  These types are returned to the application 
68  *    in the SilcKeyAgreementCallback callback function.
69  *
70  * SOURCE
71  */
72 typedef enum {
73   SILC_KEY_AGREEMENT_OK,               /* Everything is Ok */
74   SILC_KEY_AGREEMENT_ERROR,            /* Unknown error occurred */
75   SILC_KEY_AGREEMENT_FAILURE,          /* The protocol failed */
76   SILC_KEY_AGREEMENT_TIMEOUT,          /* The protocol timeout */
77 } SilcKeyAgreementStatus;
78 /***/
79
80 /****f* silcclient/SilcClientAPI/SilcKeyAgreementCallback
81  *
82  * SYNOPSIS
83  *
84  *    typedef void (*SilcKeyAgreementCallback)(SilcClient client,
85  *                                             SilcClientConnection conn,
86  *                                             SilcClientEntry client_entry,
87  *                                             SilcKeyAgreementStatus status,
88  *                                             SilcSKEKeyMaterial *key,
89  *                                             void *context);
90  *
91  * DESCRIPTION
92  *
93  *    Key agreement callback that is called after the key agreement protocol
94  *    has been performed. This is called also if error occurred during the
95  *    key agreement protocol. The `key' is the allocated key material and
96  *    the caller is responsible of freeing it. The `key' is NULL if error
97  *    has occurred. The application can freely use the `key' to whatever
98  *    purpose it needs. See lib/silcske/silcske.h for the definition of
99  *    the SilcSKEKeyMaterial structure.
100  *
101  ***/
102 typedef void (*SilcKeyAgreementCallback)(SilcClient client,
103                                          SilcClientConnection conn,
104                                          SilcClientEntry client_entry,
105                                          SilcKeyAgreementStatus status,
106                                          SilcSKEKeyMaterial *key,
107                                          void *context);
108
109 /****s* silcclient/SilcClientAPI/SilcPrivateMessageKeys
110  *
111  * NAME
112  *
113  *    typedef struct { ... } SilcPrivateMessageKeys;
114  *
115  * DESCRIPTION
116  *
117  *    Structure to hold the list of private message keys. The array of this
118  *    structure is returned by the silc_client_list_private_message_keys
119  *    function.
120  *
121  * SOURCE
122  */
123 typedef struct {
124   SilcClientEntry client_entry;       /* The remote client entry */
125   char *cipher;                       /* The cipher name */
126   unsigned char *key;                 /* The original key, If the appliation
127                                          provided it. This is NULL if the
128                                          library generated the key or if
129                                          the SKE key material was used. */
130   uint32 key_len;                     /* The key length */
131 } *SilcPrivateMessageKeys;
132 /***/
133
134
135 /****f* silcclient/SilcClientAPI/SilcAskPassphrase
136  *
137  * SYNOPSIS
138  *
139  *    typedef void (*SilcAskPassphrase)(unsigned char *passphrase,
140  *                                      uint32 passphrase_len,
141  *                                      void *context);
142  *
143  * DESCRIPTION
144  *
145  *    Ask passphrase callback. This is called by the application when the
146  *    library calls `ask_passphrase' client operation.  The callback delivers
147  *    the passphrase to the library.
148  *
149  ***/
150 typedef void (*SilcAskPassphrase)(unsigned char *passphrase,
151                                   uint32 passphrase_len,
152                                   void *context);
153
154 /****f* silcclient/SilcClientAPI/SilcVerifyPublicKey
155  *
156  * SYNOPSIS
157  *
158  *    typedef void (*SilcVerifyPublicKey)(bool success, void *context);
159  *
160  * DESCRIPTION
161  *
162  *    Public key (or certificate) verification callback. This is called
163  *    by the application to indicate that the public key verification was
164  *    either success or failure.
165  *
166  ***/
167 typedef void (*SilcVerifyPublicKey)(bool success, void *context);
168
169 /****d* silcclient/SilcClientAPI/SilcClientMessageType
170  *
171  * NAME
172  *
173  *    typedef enum { ... } SilcClientMessageType;
174  *
175  * DESCRIPTION
176  *
177  *    Different message types for `say' client operation.  The application
178  *    may filter the message sent by the library according this type.
179  *
180  * SOURCE
181  */
182 typedef enum {
183   SILC_CLIENT_MESSAGE_INFO,            /* Informational */
184   SILC_CLIENT_MESSAGE_WARNING,         /* Warning */
185   SILC_CLIENT_MESSAGE_ERROR,           /* Error */
186   SILC_CLIENT_MESSAGE_AUDIT,           /* Auditable */
187 } SilcClientMessageType;
188 /***/
189
190 /****s* silcclient/SilcClientAPI/SilcClientOperations
191  *
192  * NAME
193  *
194  *    typedef struct { ... } SilcClientOperations;
195  *
196  * DESCRIPTION
197  *
198  *    SILC Client Operations. These must be implemented by the application.
199  *    The Client library may call any of these routines at any time.  The
200  *    routines are used to deliver certain information to the application
201  *    or from the application to the client library.
202  *
203  * SOURCE
204  */
205 typedef struct {
206   /* Message sent to the application by library. `conn' associates the
207      message to a specific connection.  `conn', however, may be NULL. 
208      The `type' indicates the type of the message sent by the library.
209      The applicationi can for example filter the message according the
210      type. */
211   void (*say)(SilcClient client, SilcClientConnection conn, 
212               SilcClientMessageType type, char *msg, ...);
213
214   /* Message for a channel. The `sender' is the sender of the message 
215      The `channel' is the channel. */
216   void (*channel_message)(SilcClient client, SilcClientConnection conn, 
217                           SilcClientEntry sender, SilcChannelEntry channel, 
218                           SilcMessageFlags flags, char *msg);
219
220   /* Private message to the client. The `sender' is the sender of the
221      message. */
222   void (*private_message)(SilcClient client, SilcClientConnection conn,
223                           SilcClientEntry sender, SilcMessageFlags flags,
224                           char *msg);
225
226   /* Notify message to the client. The notify arguments are sent in the
227      same order as servers sends them. The arguments are same as received
228      from the server except for ID's.  If ID is received application receives
229      the corresponding entry to the ID. For example, if Client ID is received
230      application receives SilcClientEntry.  Also, if the notify type is
231      for channel the channel entry is sent to application (even if server
232      does not send it because client library gets the channel entry from
233      the Channel ID in the packet's header). */
234   void (*notify)(SilcClient client, SilcClientConnection conn, 
235                  SilcNotifyType type, ...);
236
237   /* Command handler. This function is called always in the command function.
238      If error occurs it will be called as well. `conn' is the associated
239      client connection. `cmd_context' is the command context that was
240      originally sent to the command. `success' is FALSE if error occurred
241      during command. `command' is the command being processed. It must be
242      noted that this is not reply from server. This is merely called just
243      after application has called the command. Just to tell application
244      that the command really was processed. */
245   void (*command)(SilcClient client, SilcClientConnection conn, 
246                   SilcClientCommandContext cmd_context, int success,
247                   SilcCommand command);
248
249   /* Command reply handler. This function is called always in the command reply
250      function. If error occurs it will be called as well. Normal scenario
251      is that it will be called after the received command data has been parsed
252      and processed. The function is used to pass the received command data to
253      the application. 
254      
255      `conn' is the associated client connection. `cmd_payload' is the command
256      payload data received from server and it can be ignored. It is provided
257      if the application would like to re-parse the received command data,
258      however, it must be noted that the data is parsed already by the library
259      thus the payload can be ignored. `success' is FALSE if error occurred.
260      In this case arguments are not sent to the application. The `status' is
261      the command reply status server returned. The `command' is the command
262      reply being processed. The function has variable argument list and each
263      command defines the number and type of arguments it passes to the
264      application (on error they are not sent). */
265   void (*command_reply)(SilcClient client, SilcClientConnection conn,
266                         SilcCommandPayload cmd_payload, int success,
267                         SilcCommand command, SilcCommandStatus status, ...);
268
269   /* Called to indicate that connection was either successfully established
270      or connecting failed.  This is also the first time application receives
271      the SilcClientConnection objecet which it should save somewhere. */
272   void (*connect)(SilcClient client, SilcClientConnection conn, int success);
273
274   /* Called to indicate that connection was disconnected to the server. */
275   void (*disconnect)(SilcClient client, SilcClientConnection conn);
276
277   /* Find authentication method and authentication data by hostname and
278      port. The hostname may be IP address as well. The found authentication
279      method and authentication data is returned to `auth_meth', `auth_data'
280      and `auth_data_len'. The function returns TRUE if authentication method
281      is found and FALSE if not. `conn' may be NULL. */
282   int (*get_auth_method)(SilcClient client, SilcClientConnection conn,
283                          char *hostname, uint16 port,
284                          SilcProtocolAuthMeth *auth_meth,
285                          unsigned char **auth_data,
286                          uint32 *auth_data_len);
287
288   /* Verifies received public key. The `conn_type' indicates which entity
289      (server, client etc.) has sent the public key. If user decides to trust
290      the key may be saved as trusted public key for later use. The 
291      `completion' must be called after the public key has been verified. */
292   void (*verify_public_key)(SilcClient client, SilcClientConnection conn,
293                             SilcSocketType conn_type, unsigned char *pk, 
294                             uint32 pk_len, SilcSKEPKType pk_type,
295                             SilcVerifyPublicKey completion, void *context);
296
297   /* Ask (interact, that is) a passphrase from user. The passphrase is
298      returned to the library by calling the `completion' callback with
299      the `context'. */
300   void (*ask_passphrase)(SilcClient client, SilcClientConnection conn,
301                          SilcAskPassphrase completion, void *context);
302
303   /* Notifies application that failure packet was received.  This is called
304      if there is some protocol active in the client.  The `protocol' is the
305      protocol context.  The `failure' is opaque pointer to the failure
306      indication.  Note, that the `failure' is protocol dependant and
307      application must explicitly cast it to correct type.  Usually `failure'
308      is 32 bit failure type (see protocol specs for all protocol failure
309      types). */
310   void (*failure)(SilcClient client, SilcClientConnection conn, 
311                   SilcProtocol protocol, void *failure);
312
313   /* Asks whether the user would like to perform the key agreement protocol.
314      This is called after we have received an key agreement packet or an
315      reply to our key agreement packet. This returns TRUE if the user wants
316      the library to perform the key agreement protocol and FALSE if it is not
317      desired (application may start it later by calling the function
318      silc_client_perform_key_agreement). If TRUE is returned also the
319      `completion' and `context' arguments must be set by the application. */
320   int (*key_agreement)(SilcClient client, SilcClientConnection conn,
321                        SilcClientEntry client_entry, char *hostname,
322                        int port,
323                        SilcKeyAgreementCallback *completion,
324                        void **context);
325 } SilcClientOperations;
326 /***/
327
328 /* Initialization functions (client.c) */
329
330 /****f* silcclient/SilcClientAPI/silc_client_alloc
331  *
332  * SYNOPSIS
333  *
334  *    SilcClient silc_client_alloc(SilcClientOperations *ops, 
335  *                                 void *application,
336  *                                 const char *silc_version);
337  *
338  * DESCRIPTION
339  *
340  *    Allocates new client object. This has to be done before client may
341  *    work. After calling this one must call silc_client_init to initialize
342  *    the client. The `application' is application specific user data pointer
343  *    and caller must free it. The `silc_version' is the application version
344  *    that will be used to compare against remote host's (usually a server)
345  *    version string.
346  *
347  ***/
348 SilcClient silc_client_alloc(SilcClientOperations *ops, void *application,
349                              const char *silc_version);
350
351 /****f* silcclient/SilcClientAPI/silc_client_free
352  *
353  * SYNOPSIS
354  *
355  *    void silc_client_free(SilcClient client);
356  *
357  * DESCRIPTION
358  *
359  *    Frees client object and its internals.  The execution of the client
360  *    should be stopped with silc_client_stop function before calling
361  *    this function.
362  *
363  ***/
364 void silc_client_free(SilcClient client);
365
366 /****f* silcclient/SilcClientAPI/silc_client_init
367  *
368  * SYNOPSIS
369  *
370  *    int silc_client_init(SilcClient client);
371  *
372  * DESCRIPTION
373  *
374  *    Initializes the client. This makes all the necessary steps to make
375  *    the client ready to be run. One must call silc_client_run to run the
376  *    client. Returns FALSE if error occurred, TRUE otherwise.
377  *
378  ***/
379 int silc_client_init(SilcClient client);
380
381 /****f* silcclient/SilcClientAPI/silc_client_run
382  *
383  * SYNOPSIS
384  *
385  *    void silc_client_run(SilcClient client);
386  *
387  * DESCRIPTION
388  *
389  *    Runs the client. This starts the scheduler from the utility library.
390  *    When this functions returns the execution of the appliation is over.
391  *
392  ***/
393 void silc_client_run(SilcClient client);
394
395 /****f* silcclient/SilcClientAPI/silc_client_stop
396  *
397  * SYNOPSIS
398  *
399  *    void silc_client_stop(SilcClient client);
400  *
401  * DESCRIPTION
402  *
403  *    Stops the client. This is called to stop the client and thus to stop
404  *    the program.  The client context must be freed with the silc_client_free
405  *    function.
406  *
407  ***/
408 void silc_client_stop(SilcClient client);
409
410
411 /* Connecting functions (client.c) */
412
413 /****f* silcclient/SilcClientAPI/silc_client_connect_to_server
414  *
415  * SYNOPSIS
416  *
417  *    int silc_client_connect_to_server(SilcClient client, int port,
418  *                                      char *host, void *context);
419  *
420  * DESCRIPTION
421  *
422  *    Connects to remote server. This is the main routine used to connect
423  *    to SILC server. Returns -1 on error and the created socket otherwise. 
424  *    The `context' is user context that is saved into the SilcClientConnection
425  *    that is created after the connection is created. Note that application
426  *    may handle the connecting process outside the library. If this is the
427  *    case then this function is not used at all. When the connecting is
428  *    done the `connect' client operation is called.
429  *
430  ***/
431 int silc_client_connect_to_server(SilcClient client, int port,
432                                   char *host, void *context);
433
434 /****f* silcclient/SilcClientAPI/silc_client_add_connection
435  *
436  * SYNOPSIS
437  *
438  *    SilcClientConnection silc_client_add_connection(SilcClient client,
439  *                                                    char *hostname,
440  *                                                    int port,
441  *                                                    void *context);
442  *
443  * DESCRIPTION
444  *
445  *    Allocates and adds new connection to the client. This adds the allocated
446  *    connection to the connection table and returns a pointer to it. A client
447  *    can have multiple connections to multiple servers. Every connection must
448  *    be added to the client using this function. User data `context' may
449  *    be sent as argument. This function is normally used only if the 
450  *    application performed the connecting outside the library. The library
451  *    however may use this internally.
452  *
453  ***/
454 SilcClientConnection silc_client_add_connection(SilcClient client,
455                                                 char *hostname,
456                                                 int port,
457                                                 void *context);
458
459 /****f* silcclient/SilcClientAPI/silc_client_del_connection
460  *
461  * SYNOPSIS
462  *
463  *    void silc_client_del_connection(SilcClient client, 
464  *                                    SilcClientConnection conn);
465  *
466  * DESCRIPTION
467  *
468  *    Removes connection from client. Frees all memory. The library
469  *    call this function automatically for all connection contexts.
470  *    The application however may free the connection contexts it has
471  *    allocated.
472  *
473  ***/
474 void silc_client_del_connection(SilcClient client, SilcClientConnection conn);
475
476 /****f* silcclient/SilcClientAPI/silc_client_add_socket
477  *
478  * SYNOPSIS
479  *
480  *    void silc_client_add_socket(SilcClient client, 
481  *                                SilcSocketConnection sock);
482  *
483  * DESCRIPTION
484  *
485  *    Adds listener socket to the listener sockets table. This function is
486  *    used to add socket objects that are listeners to the client.  This should
487  *    not be used to add other connection objects.
488  *
489  ***/
490 void silc_client_add_socket(SilcClient client, SilcSocketConnection sock);
491
492 /****f* silcclient/SilcClientAPI/silc_client_del_socket
493  *
494  * SYNOPSIS
495  *
496  *    void silc_client_del_socket(SilcClient client, 
497  *                                SilcSocketConnection sock);
498  *
499  * DESCRIPTION
500  *
501  *    Deletes listener socket from the listener sockets table.  If the
502  *    application has added a socket with silc_client_add_socket it must
503  *    also free it using this function.
504  *
505  ***/
506 void silc_client_del_socket(SilcClient client, SilcSocketConnection sock);
507
508 /****f* silcclient/SilcClientAPI/silc_client_start_key_exchange
509  *
510  * SYNOPSIS
511  *
512  *    int silc_client_start_key_exchange(SilcClient client,
513  *                                       SilcClientConnection conn,
514  *                                       int fd);
515  *
516  * DESCRIPTION
517  *
518  *    Start SILC Key Exchange (SKE) protocol to negotiate shared secret
519  *    key material between client and server.  This function can be called
520  *    directly if application is performing its own connecting and does not
521  *    use the connecting provided by this library. This function is normally
522  *    used only if the application performed the connecting outside the
523  *    library. The library however may use this internally.
524  *
525  ***/
526 int silc_client_start_key_exchange(SilcClient client,
527                                    SilcClientConnection conn,
528                                    int fd);
529
530 /****f* silcclient/SilcClientAPI/silc_client_close_connection
531  *
532  * SYNOPSIS
533  *
534  *    void silc_client_close_connection(SilcClient client,
535  *                                      SilcSocketConnection sock,
536  *                                      SilcClientConnection conn);
537  *
538  * DESCRIPTION
539  *
540  *    Closes connection to remote end. Free's all allocated data except
541  *    for some information such as nickname etc. that are valid at all time. 
542  *    If the `sock' is NULL then the conn->sock will be used.  If `sock' is
543  *    provided it will be checked whether the sock and `conn->sock' are the
544  *    same (they can be different, ie. a socket can use `conn' as its
545  *    connection but `conn->sock' might be actually a different connection
546  *    than the `sock'). 
547  *
548  ***/
549 void silc_client_close_connection(SilcClient client,
550                                   SilcSocketConnection sock,
551                                   SilcClientConnection conn);
552
553
554 /* Message sending functions (client_channel.c and client_prvmsg.c) */
555
556 /****f* silcclient/SilcClientAPI/silc_client_send_channel_message
557  *
558  * SYNOPSIS
559  *
560  *    void silc_client_send_channel_message(SilcClient client, 
561  *                                          SilcClientConnection conn,
562  *                                          SilcChannelEntry channel,
563  *                                          SilcChannelPrivateKey key,
564  *                                          SilcMessageFlags flags,
565  *                                          unsigned char *data, 
566  *                                          uint32 data_len, 
567  *                                          int force_send);
568  *
569  * DESCRIPTION
570  *
571  *    Sends packet to the `channel'. Packet to channel is always encrypted
572  *    differently from "normal" packets. SILC header of the packet is 
573  *    encrypted with the next receiver's key and the rest of the packet is
574  *    encrypted with the channel specific key. Padding and HMAC is computed
575  *    with the next receiver's key. The `data' is the channel message. If
576  *    the `force_send' is TRUE then the packet is sent immediately. 
577  *
578  *    If `key' is provided then that private key is used to encrypt the
579  *    channel message.  If it is not provided, private keys has not been
580  *    set at all, the normal channel key is used automatically.  If private
581  *    keys are set then the first key (the key that was added first as
582  *    private key) is used. 
583  *
584  ***/
585 void silc_client_send_channel_message(SilcClient client, 
586                                       SilcClientConnection conn,
587                                       SilcChannelEntry channel,
588                                       SilcChannelPrivateKey key,
589                                       SilcMessageFlags flags,
590                                       unsigned char *data, 
591                                       uint32 data_len, 
592                                       int force_send);
593
594 /****f* silcclient/SilcClientAPI/silc_client_send_private_message
595  *
596  * SYNOPSIS
597  *
598  *    void silc_client_send_private_message(SilcClient client,
599  *                                          SilcClientConnection conn,
600  *                                          SilcClientEntry client_entry,
601  *                                          SilcMessageFlags flags,
602  *                                          unsigned char *data, 
603  *                                          uint32 data_len, 
604  *                                          int force_send);
605  *
606  * DESCRIPTION
607  *
608  *    Sends private message to remote client. If private message key has
609  *    not been set with this client then the message will be encrypted using
610  *    normal session keys. Private messages are special packets in SILC
611  *    network hence we need this own function for them. This is similar
612  *    to silc_client_packet_send_to_channel except that we send private
613  *    message. The `data' is the private message. If the `force_send' is
614  *    TRUE the packet is sent immediately. 
615  *
616  ***/
617 void silc_client_send_private_message(SilcClient client,
618                                       SilcClientConnection conn,
619                                       SilcClientEntry client_entry,
620                                       SilcMessageFlags flags,
621                                       unsigned char *data, 
622                                       uint32 data_len, 
623                                       int force_send);
624
625
626 /* Client and Channel entry retrieval (idlist.c) */
627
628 /****f* silcclient/SilcClientAPI/SilcGetClientCallback
629  *
630  * SYNOPSIS
631  *
632  *    typedef void (*SilcGetClientCallback)(SilcClient client,
633  *                                          SilcClientConnection conn,
634  *                                          SilcClientEntry *clients,
635  *                                          uint32 clients_count,
636  *                                          void *context);
637  *
638  * DESCRIPTION
639  *
640  *    Callback function given to the silc_client_get_client function. The
641  *    found entries are allocated into the `clients' array. The array must
642  *    not be freed by the caller, the library will free it later. If the
643  *    `clients' is NULL, no such clients exist in the SILC Network.
644  *
645  ***/
646 typedef void (*SilcGetClientCallback)(SilcClient client,
647                                       SilcClientConnection conn,
648                                       SilcClientEntry *clients,
649                                       uint32 clients_count,
650                                       void *context);
651
652 /****f* silcclient/SilcClientAPI/silc_client_get_clients
653  *
654  * SYNOPSIS
655  *
656  *    void silc_client_get_clients(SilcClient client,
657  *                                 SilcClientConnection conn,
658  *                                 char *nickname,
659  *                                 char *server,
660  *                                 SilcGetClientCallback completion,
661  *                                 void *context);
662  *
663  * DESCRIPTION
664  *
665  *    Finds client entry or entries by the `nickname' and `server'. The 
666  *    completion callback will be called when the client entries has been
667  *    found.
668  *
669  * NOTES
670  *
671  *    NOTE: This function is always asynchronous and resolves the client
672  *    information from the server. Thus, if you already know the client
673  *    information then use the silc_client_get_client_by_id function to
674  *    get the client entry since this function may be very slow and should
675  *    be used only to initially get the client entries. 
676  *
677  ***/
678 void silc_client_get_clients(SilcClient client,
679                              SilcClientConnection conn,
680                              char *nickname,
681                              char *server,
682                              SilcGetClientCallback completion,
683                              void *context);
684
685 /****f* silcclient/SilcClientAPI/silc_client_get_clients_local
686  *
687  * SYNOPSIS
688  *
689  *    SilcClientEntry *silc_client_get_clients_local(SilcClient client,
690  *                                                   SilcClientConnection conn,
691  *                                                   char *nickname,
692  *                                                   char *server,
693  *                                                   uint32 *clients_count);
694  *
695  * DESCRIPTION
696  *
697  *    Same as silc_client_get_clients function but does not resolve anything
698  *    from the server.  This checks local cache and returns all clients from
699  *    the local cache. 
700  *
701  ***/
702 SilcClientEntry *silc_client_get_clients_local(SilcClient client,
703                                                SilcClientConnection conn,
704                                                char *nickname,
705                                                char *server,
706                                                uint32 *clients_count);
707
708 /****f* silcclient/SilcClientAPI/silc_client_get_clients_by_list
709  *
710  * SYNOPSIS
711  *
712  *    void silc_client_get_clients_by_list(SilcClient client,
713  *                                         SilcClientConnection conn,
714  *                                         uint32 list_count,
715  *                                         SilcBuffer client_id_list,
716  *                                         SilcGetClientCallback completion,
717  *                                         void *context);
718  *
719  * DESCRIPTION
720  *
721  *    Gets client entries by the list of client ID's `client_id_list'. This
722  *    always resolves those client ID's it does not know yet from the server
723  *    so this function might take a while. The `client_id_list' is a list
724  *    of ID Payloads added one after other.  JOIN command reply and USERS
725  *    command reply for example returns this sort of list. The `completion'
726  *    will be called after the entries are available. 
727  *
728  ***/
729 void silc_client_get_clients_by_list(SilcClient client,
730                                      SilcClientConnection conn,
731                                      uint32 list_count,
732                                      SilcBuffer client_id_list,
733                                      SilcGetClientCallback completion,
734                                      void *context);
735
736 /****f* silcclient/SilcClientAPI/silc_client_get_client_by_id
737  *
738  * SYNOPSIS
739  *
740  *    SilcClientEntry silc_client_get_client_by_id(SilcClient client,
741  *                                                 SilcClientConnection conn,
742  *                                                 SilcClientID *client_id);
743  *
744  * DESCRIPTION
745  *
746  *    Find entry for client by the client's ID. Returns the entry or NULL
747  *    if the entry was not found. 
748  *
749  ***/
750 SilcClientEntry silc_client_get_client_by_id(SilcClient client,
751                                              SilcClientConnection conn,
752                                              SilcClientID *client_id);
753
754 /****f* silcclient/SilcClientAPI/silc_client_get_client_by_id_resolve
755  *
756  * SYNOPSIS
757  *
758  *    void 
759  *    silc_client_get_client_by_id_resolve(SilcClient client,
760  *                                         SilcClientConnection conn,
761  *                                         SilcClientID *client_id,
762  *                                         SilcGetClientCallback completion,
763  *                                         void *context);
764  *
765  * DESCRIPTION
766  *
767  *    Same as silc_client_get_client_by_id but will always resolve the
768  *    information from the server. Use this only if you know that you
769  *    do not have the entry and the only thing you know about the client
770  *    is its ID. 
771  *
772  ***/
773 void silc_client_get_client_by_id_resolve(SilcClient client,
774                                           SilcClientConnection conn,
775                                           SilcClientID *client_id,
776                                           SilcGetClientCallback completion,
777                                           void *context);
778
779 /****f* silcclient/SilcClientAPI/silc_client_del_client
780  *
781  * SYNOPSIS
782  *
783  *    bool silc_client_del_client(SilcClient client, SilcClientConnection conn,
784  *                                SilcClientEntry client_entry)
785  *
786  * DESCRIPTION
787  *
788  *    Removes client from local cache by the client entry indicated by
789  *    the `client_entry'.  Returns TRUE if the deletion were successful.
790  *
791  ***/
792 bool silc_client_del_client(SilcClient client, SilcClientConnection conn,
793                             SilcClientEntry client_entry);
794
795 /****f* silcclient/SilcClientAPI/silc_client_del_client_by_id
796  *
797  * SYNOPSIS
798  *
799  *    bool silc_client_del_client_by_id(SilcClient client, 
800  *                                      SilcClientConnection conn,
801  *                                      SilcClientID *client_id);
802  *
803  * DESCRIPTION
804  *
805  *    Removes client from local cache by the Client ID indicated by
806  *    the `Client ID'.  Returns TRUE if the deletion were successful.
807  *
808  ***/
809 bool silc_client_del_client_by_id(SilcClient client, 
810                                   SilcClientConnection conn,
811                                   SilcClientID *client_id);
812
813 /****f* silcclient/SilcClientAPI/silc_client_get_channel
814  *
815  * SYNOPSIS
816  *
817  *    SilcChannelEntry silc_client_get_channel(SilcClient client,
818  *                                             SilcClientConnection conn,
819  *                                             char *channel);
820  *
821  * DESCRIPTION
822  *
823  *    Finds entry for channel by the channel name. Returns the entry or NULL
824  *    if the entry was not found. It is found only if the client is joined
825  *    to the channel. 
826  *
827  ***/
828 SilcChannelEntry silc_client_get_channel(SilcClient client,
829                                          SilcClientConnection conn,
830                                          char *channel);
831
832 /****f* silcclient/SilcClientAPI/silc_client_get_server_by_id
833  *
834  * SYNOPSIS
835  *
836  *    SilcServerEntry silc_client_get_server_by_id(SilcClient client,
837  *                                                 SilcClientConnection conn,
838  *                                                 SilcServerID *server_id);
839  *
840  * DESCRIPTION
841  *
842  *    Finds entry for server by the server ID. Returns the entry or NULL
843  *    if the entry was not found.
844  *
845  ***/
846 SilcServerEntry silc_client_get_server_by_id(SilcClient client,
847                                              SilcClientConnection conn,
848                                              SilcServerID *server_id);
849
850
851 /* Command management (command.c) */
852
853 /****f* silcclient/SilcClientAPI/silc_client_command_alloc
854  *
855  * SYNOPSIS
856  *
857  *    SilcClientCommandContext silc_client_command_alloc();
858  *
859  * DESCRIPTION
860  *
861  *    Allocate Command Context. The context is defined in `command.h' file.
862  *    The context is used by the library commands and applications should use
863  *    it as well. However, application may choose to use some own context
864  *    for its local commands. All library commands, however, must use this
865  *    context. 
866  *
867  ***/
868 SilcClientCommandContext silc_client_command_alloc();
869
870 /****f* silcclient/SilcClientAPI/silc_client_command_free
871  *
872  * SYNOPSIS
873  *
874  *    void silc_client_command_free(SilcClientCommandContext ctx);
875  *
876  * DESCRIPTION
877  *
878  *    Free command context and its internals.  If the contex was duplicated
879  *    with silc_client_command_dup this may not actually free the data, 
880  *    instead it will decrease the reference counter of the context.  The
881  *    context will be freed when the reference counter hits zero.
882  *
883  ***/
884 void silc_client_command_free(SilcClientCommandContext ctx);
885
886 /****f* silcclient/SilcClientAPI/silc_client_command_dup
887  *
888  * SYNOPSIS
889  *
890  *    SilcClientCommandContext 
891  *    silc_client_command_dup(SilcClientCommandContext ctx);
892  *
893  * DESCRIPTION
894  *
895  *    Duplicate Command Context by adding reference counter. The context won't
896  *    be free'd untill it hits zero. 
897  *
898  ***/
899 SilcClientCommandContext silc_client_command_dup(SilcClientCommandContext ctx);
900
901 /****f* silcclient/SilcClientAPI/silc_client_command_find
902  *
903  * SYNOPSIS
904  *
905  *    SilcClientCommand *silc_client_command_find(const char *name);
906  *
907  * DESCRIPTION
908  *
909  *    Finds and returns a pointer to the command list. Return NULL if the
910  *    command is not found. See the `command.[ch]' for the command list. 
911  *
912  ***/
913 SilcClientCommand *silc_client_command_find(const char *name);
914
915 /****f* silcclient/SilcClientAPI/silc_client_send_command
916  *
917  * SYNOPSIS
918  *
919  *    void silc_client_send_command(SilcClient client, 
920  *                                  SilcClientConnection conn,
921  *                                  SilcCommand command, uint16 ident,
922  *                                  uint32 argc, ...);
923  *
924  * DESCRIPTION
925  *
926  *    Generic function to send any command. The arguments must be sent already
927  *    encoded into correct form and in correct order. 
928  *
929  ***/
930 void silc_client_send_command(SilcClient client, SilcClientConnection conn,
931                               SilcCommand command, uint16 ident,
932                               uint32 argc, ...);
933
934 /****f* silcclient/SilcClientAPI/SilcClientPendingDestructor
935  *
936  * SYNOPSIS
937  *
938  *    typedef void (*SilcClientPendingDestructor)(void *context);
939  *
940  * DESCRIPTION
941  *
942  *    Pending Command callback destructor. This is called after calling the
943  *    pending callback or if error occurs while processing the pending command.
944  *    If error occurs then the callback won't be called at all, and only this
945  *    destructor is called. The `context' is the context given for the function
946  *    silc_client_command_pending. 
947  *
948  ***/
949 typedef void (*SilcClientPendingDestructor)(void *context);
950
951 /****f* silcclient/SilcClientAPI/silc_client_command_pending
952  *
953  * SYNOPSIS
954  *
955  *    void silc_client_command_pending(SilcClientConnection conn,
956  *                                     SilcCommand reply_cmd,
957  *                                     uint16 ident,
958  *                                     SilcClientPendingDestructor destructor,
959  *                                     SilcCommandCb callback,
960  *                                     void *context);
961  *
962  * DESCRIPTION
963  *
964  *    Add new pending command to be executed when reply to a command has been
965  *    received.  The `reply_cmd' is the command that will call the `callback'
966  *    with `context' when reply has been received.  If `ident is non-zero
967  *    the `callback' will be executed when received reply with command 
968  *    identifier `ident'. 
969  *
970  ***/
971 void silc_client_command_pending(SilcClientConnection conn,
972                                  SilcCommand reply_cmd,
973                                  uint16 ident,
974                                  SilcClientPendingDestructor destructor,
975                                  SilcCommandCb callback,
976                                  void *context);
977
978
979 /* Private Message key management (client_prvmsg.c) */
980
981 /****f* silcclient/SilcClientAPI/silc_client_add_private_message_key
982  *
983  * SYNOPSIS
984  *
985  *    int silc_client_add_private_message_key(SilcClient client,
986  *                                            SilcClientConnection conn,
987  *                                            SilcClientEntry client_entry,
988  *                                            char *cipher,
989  *                                            unsigned char *key,
990  *                                            uint32 key_len,
991  *                                            bool generate_key,
992  *                                            bool responder);
993  *
994  * DESCRIPTION
995  *
996  *    Adds private message key to the client library. The key will be used to
997  *    encrypt all private message between the client and the remote client
998  *    indicated by the `client_entry'. If the `key' is NULL and the boolean
999  *    value `generate_key' is TRUE the library will generate random key.
1000  *    The `key' maybe for example pre-shared-key, passphrase or similar.
1001  *    The `cipher' MAY be provided but SHOULD be NULL to assure that the
1002  *    requirements of the SILC protocol are met. The API, however, allows
1003  *    to allocate any cipher.
1004  *
1005  *    If `responder' is TRUE then the sending and receiving keys will be
1006  *    set according the client being the receiver of the private key.  If
1007  *    FALSE the client is being the sender (or negotiator) of the private
1008  *    key.
1009  *
1010  *    It is not necessary to set key for normal private message usage. If the
1011  *    key is not set then the private messages are encrypted using normal
1012  *    session keys. Setting the private key, however, increases the security. 
1013  *
1014  *    Returns FALSE if the key is already set for the `client_entry', TRUE
1015  *    otherwise. 
1016  *
1017  ***/
1018 int silc_client_add_private_message_key(SilcClient client,
1019                                         SilcClientConnection conn,
1020                                         SilcClientEntry client_entry,
1021                                         char *cipher,
1022                                         unsigned char *key,
1023                                         uint32 key_len,
1024                                         bool generate_key,
1025                                         bool responder);
1026
1027 /****f* silcclient/SilcClientAPI/silc_client_add_private_message_key_ske
1028  *
1029  * SYNOPSIS
1030  *
1031  *    int silc_client_add_private_message_key_ske(SilcClient client,
1032  *                                                SilcClientConnection conn,
1033  *                                                SilcClientEntry client_entry,
1034  *                                                char *cipher,
1035  *                                                SilcSKEKeyMaterial *key);
1036  *
1037  * DESCRIPTION
1038  *
1039  *    Same as silc_client_add_private_message_key but takes the key material
1040  *    from the SKE key material structure. This structure is received if
1041  *    the application uses the silc_client_send_key_agreement to negotiate
1042  *    the key material. The `cipher' SHOULD be provided as it is negotiated
1043  *    also in the SKE protocol. 
1044  *
1045  ***/
1046 int silc_client_add_private_message_key_ske(SilcClient client,
1047                                             SilcClientConnection conn,
1048                                             SilcClientEntry client_entry,
1049                                             char *cipher,
1050                                             SilcSKEKeyMaterial *key,
1051                                             bool responder);
1052
1053 /****f* silcclient/SilcClientAPI/silc_client_send_private_message_key
1054  *
1055  * SYNOPSIS
1056  *
1057  *    int silc_client_send_private_message_key(SilcClient client,
1058  *                                             SilcClientConnection conn,
1059  *                                             SilcClientEntry client_entry,
1060  *                                             int force_send);
1061  *
1062  * DESCRIPTION
1063  *
1064  *    Sends private message key payload to the remote client indicated by
1065  *    the `client_entry'. If the `force_send' is TRUE the packet is sent
1066  *    immediately. Returns FALSE if error occurs, TRUE otherwise. The
1067  *    application should call this function after setting the key to the
1068  *    client.
1069  *
1070  *    Note that the key sent using this function is sent to the remote client
1071  *    through the SILC network. The packet is protected using normal session
1072  *    keys. 
1073  *
1074  ***/
1075 int silc_client_send_private_message_key(SilcClient client,
1076                                          SilcClientConnection conn,
1077                                          SilcClientEntry client_entry,
1078                                          int force_send);
1079
1080 /****f* silcclient/SilcClientAPI/silc_client_del_private_message_key
1081  *
1082  * SYNOPSIS
1083  *
1084  *    int silc_client_del_private_message_key(SilcClient client,
1085  *                                            SilcClientConnection conn,
1086  *                                            SilcClientEntry client_entry);
1087  *
1088  * DESCRIPTION
1089  *
1090  *    Removes the private message from the library. The key won't be used
1091  *    after this to protect the private messages with the remote `client_entry'
1092  *    client. Returns FALSE on error, TRUE otherwise. 
1093  *
1094  ***/
1095 int silc_client_del_private_message_key(SilcClient client,
1096                                         SilcClientConnection conn,
1097                                         SilcClientEntry client_entry);
1098
1099 /****f* silcclient/SilcClientAPI/silc_client_list_private_message_keys
1100  *
1101  * SYNOPSIS
1102  *
1103  *    SilcPrivateMessageKeys
1104  *    silc_client_list_private_message_keys(SilcClient client,
1105  *                                          SilcClientConnection conn,
1106  *                                          uint32 *key_count);
1107  * 
1108  * DESCRIPTION
1109  *
1110  *    Returns array of set private message keys associated to the connection
1111  *    `conn'. Returns allocated SilcPrivateMessageKeys array and the array
1112  *    count to the `key_count' argument. The array must be freed by the caller
1113  *    by calling the silc_client_free_private_message_keys function. Note: 
1114  *    the keys returned in the array is in raw format. It might not be desired
1115  *    to show the keys as is. The application might choose not to show the keys
1116  *    at all or to show the fingerprints of the keys. 
1117  *
1118  ***/
1119 SilcPrivateMessageKeys
1120 silc_client_list_private_message_keys(SilcClient client,
1121                                       SilcClientConnection conn,
1122                                       uint32 *key_count);
1123
1124 /****f* silcclient/SilcClientAPI/silc_client_list_private_message_keys
1125  *
1126  * SYNOPSIS
1127  *
1128  *    void silc_client_free_private_message_keys(SilcPrivateMessageKeys keys,
1129  *                                               uint32 key_count);
1130  * 
1131  * DESCRIPTION
1132  *
1133  *    Frees the SilcPrivateMessageKeys array returned by the function
1134  *    silc_client_list_private_message_keys. 
1135  *
1136  ***/
1137 void silc_client_free_private_message_keys(SilcPrivateMessageKeys keys,
1138                                            uint32 key_count);
1139
1140
1141 /* Channel private key management (client_channel.c, 
1142    SilcChannelPrivateKey is defined in idlist.h) */
1143
1144 /****f* silcclient/SilcClientAPI/silc_client_add_channel_private_key
1145  *
1146  * SYNOPSIS
1147  *
1148  *    int silc_client_add_channel_private_key(SilcClient client,
1149  *                                            SilcClientConnection conn,
1150  *                                            SilcChannelEntry channel,
1151  *                                            char *cipher,
1152  *                                            char *hmac,
1153  *                                            unsigned char *key,
1154  *                                            uint32 key_len);
1155  * 
1156  * DESCRIPTION
1157  *
1158  *    Adds private key for channel. This may be set only if the channel's mode
1159  *    mask includes the SILC_CHANNEL_MODE_PRIVKEY. This returns FALSE if the
1160  *    mode is not set. When channel has private key then the messages are
1161  *    encrypted using that key. All clients on the channel must also know the
1162  *    key in order to decrypt the messages. However, it is possible to have
1163  *    several private keys per one channel. In this case only some of the
1164  *    clients on the channel may know the one key and only some the other key.
1165  *
1166  *    The private key for channel is optional. If it is not set then the
1167  *    channel messages are encrypted using the channel key generated by the
1168  *    server. However, setting the private key (or keys) for the channel 
1169  *    significantly adds security. If more than one key is set the library
1170  *    will automatically try all keys at the message decryption phase. Note:
1171  *    setting many keys slows down the decryption phase as all keys has to
1172  *    be tried in order to find the correct decryption key. However, setting
1173  *    a few keys does not have big impact to the decryption performace. 
1174  *
1175  * NOTES
1176  *
1177  *    NOTE: This is entirely local setting. The key set using this function
1178  *    is not sent to the network at any phase.
1179  *
1180  *    NOTE: If the key material was originated by the SKE protocol (using
1181  *    silc_client_send_key_agreement) then the `key' MUST be the
1182  *    key->send_enc_key as this is dictated by the SILC protocol. However,
1183  *    currently it is not expected that the SKE key material would be used
1184  *    as channel private key. However, this API allows it. 
1185  *
1186  ***/
1187 int silc_client_add_channel_private_key(SilcClient client,
1188                                         SilcClientConnection conn,
1189                                         SilcChannelEntry channel,
1190                                         char *cipher,
1191                                         char *hmac,
1192                                         unsigned char *key,
1193                                         uint32 key_len);
1194
1195 /****f* silcclient/SilcClientAPI/silc_client_del_channel_private_keys
1196  *
1197  * SYNOPSIS
1198  *
1199  *    int silc_client_del_channel_private_keys(SilcClient client,
1200  *                                             SilcClientConnection conn,
1201  *                                             SilcChannelEntry channel);
1202  * 
1203  * DESCRIPTION
1204  *
1205  *    Removes all private keys from the `channel'. The old channel key is used
1206  *    after calling this to protect the channel messages. Returns FALSE on
1207  *    on error, TRUE otherwise. 
1208  *
1209  ***/
1210 int silc_client_del_channel_private_keys(SilcClient client,
1211                                          SilcClientConnection conn,
1212                                          SilcChannelEntry channel);
1213
1214 /****f* silcclient/SilcClientAPI/silc_client_del_channel_private_key
1215  *
1216  * SYNOPSIS
1217  *
1218  *    int silc_client_del_channel_private_key(SilcClient client,
1219  *                                            SilcClientConnection conn,
1220  *                                            SilcChannelEntry channel,
1221  *                                            SilcChannelPrivateKey key);
1222  * 
1223  * DESCRIPTION
1224  *
1225  *    Removes and frees private key `key' from the channel `channel'. 
1226  *    The `key' is retrieved by calling the function 
1227  *    silc_client_list_channel_private_keys. The key is not used after
1228  *    this. If the key was last private key then the old channel key is
1229  *    used hereafter to protect the channel messages. This returns FALSE
1230  *    on error, TRUE otherwise. 
1231  *
1232  ***/
1233 int silc_client_del_channel_private_key(SilcClient client,
1234                                         SilcClientConnection conn,
1235                                         SilcChannelEntry channel,
1236                                         SilcChannelPrivateKey key);
1237
1238 /****f* silcclient/SilcClientAPI/silc_client_list_channel_private_keys
1239  *
1240  * SYNOPSIS
1241  *
1242  *    SilcChannelPrivateKey *
1243  *    silc_client_list_channel_private_keys(SilcClient client,
1244  *                                          SilcClientConnection conn,
1245  *                                          SilcChannelEntry channel,
1246  *                                          uint32 *key_count);
1247  *
1248  * DESCRIPTION
1249  *
1250  *    Returns array (pointers) of private keys associated to the `channel'.
1251  *    The caller must free the array by calling the function
1252  *    silc_client_free_channel_private_keys. The pointers in the array may be
1253  *    used to delete the specific key by giving the pointer as argument to the
1254  *    function silc_client_del_channel_private_key. 
1255  *
1256  ***/
1257 SilcChannelPrivateKey *
1258 silc_client_list_channel_private_keys(SilcClient client,
1259                                       SilcClientConnection conn,
1260                                       SilcChannelEntry channel,
1261                                       uint32 *key_count);
1262
1263 /****f* silcclient/SilcClientAPI/silc_client_free_channel_private_keys
1264  *
1265  * SYNOPSIS
1266  *
1267  *    void silc_client_free_channel_private_keys(SilcChannelPrivateKey *keys,
1268  *                                               uint32 key_count);
1269  *
1270  * DESCRIPTION
1271  *
1272  *    Frees the SilcChannelPrivateKey array.
1273  *
1274  ***/
1275 void silc_client_free_channel_private_keys(SilcChannelPrivateKey *keys,
1276                                            uint32 key_count);
1277
1278
1279 /* Key Agreement routines (client_keyagr.c) */
1280
1281 /****f* silcclient/SilcClientAPI/silc_client_send_key_agreement
1282  *
1283  * SYNOPSIS
1284  *
1285  *    void silc_client_send_key_agreement(SilcClient client,
1286  *                                        SilcClientConnection conn,
1287  *                                        SilcClientEntry client_entry,
1288  *                                        char *hostname,
1289  *                                        int port,
1290  *                                        uint32 timeout_secs,
1291  *                                        SilcKeyAgreementCallback completion,
1292  *                                        void *context);
1293  *
1294  * DESCRIPTION
1295  *
1296  *    Sends key agreement request to the remote client indicated by the
1297  *    `client_entry'. If the caller provides the `hostname' and the `port'
1298  *    arguments then the library will bind the client to that hostname and
1299  *    that port for the key agreement protocol. It also sends the `hostname'
1300  *    and the `port' in the key agreement packet to the remote client. This
1301  *    would indicate that the remote client may initiate the key agreement
1302  *    protocol to the `hostname' on the `port'.  If port is zero then the
1303  *    bound port is undefined (the operating system defines it).
1304  *
1305  *    If the `hostname' and `port' is not provided then empty key agreement
1306  *    packet is sent to the remote client. The remote client may reply with
1307  *    the same packet including its hostname and port. If the library receives
1308  *    the reply from the remote client the `key_agreement' client operation
1309  *    callback will be called to verify whether the user wants to perform the
1310  *    key agreement or not. 
1311  *
1312  * NOTES
1313  *
1314  *    NOTE: If the application provided the `hostname' and the `port' and the 
1315  *    remote side initiates the key agreement protocol it is not verified
1316  *    from the user anymore whether the protocol should be executed or not.
1317  *    By setting the `hostname' and `port' the user gives permission to
1318  *    perform the protocol (we are responder in this case).
1319  *
1320  *    NOTE: If the remote side decides not to initiate the key agreement
1321  *    or decides not to reply with the key agreement packet then we cannot
1322  *    perform the key agreement at all. If the key agreement protocol is
1323  *    performed the `completion' callback with the `context' will be called.
1324  *    If remote side decides to ignore the request the `completion' will be
1325  *    called after the specified timeout, `timeout_secs'. 
1326  *
1327  *    NOTE: If the `hostname' and the `port' was not provided the `completion'
1328  *    will not be called at all since this does nothing more than sending
1329  *    a packet to the remote host.
1330  *
1331  *    NOTE: There can be only one active key agreement for one client entry.
1332  *    Before setting new one, the old one must be finished (it is finished
1333  *    after calling the completion callback) or the function 
1334  *    silc_client_abort_key_agreement must be called. 
1335  *
1336  ***/
1337 void silc_client_send_key_agreement(SilcClient client,
1338                                     SilcClientConnection conn,
1339                                     SilcClientEntry client_entry,
1340                                     char *hostname,
1341                                     int port,
1342                                     uint32 timeout_secs,
1343                                     SilcKeyAgreementCallback completion,
1344                                     void *context);
1345
1346 /****f* silcclient/SilcClientAPI/silc_client_perform_key_agreement
1347  *
1348  * SYNOPSIS
1349  *
1350  *    void 
1351  *    silc_client_perform_key_agreement(SilcClient client,
1352  *                                      SilcClientConnection conn,
1353  *                                      SilcClientEntry client_entry,
1354  *                                      char *hostname,
1355  *                                      int port,
1356  *                                      SilcKeyAgreementCallback completion,
1357  *                                      void *context);
1358  *
1359  * DESCRIPTION
1360  *
1361  *    Performs the actual key agreement protocol. Application may use this
1362  *    to initiate the key agreement protocol. This can be called for example
1363  *    after the application has received the `key_agreement' client operation,
1364  *    and did not return TRUE from it.
1365  *
1366  *    The `hostname' is the remote hostname (or IP address) and the `port'
1367  *    is the remote port. The `completion' callback with the `context' will
1368  *    be called after the key agreement protocol.
1369  *
1370  * NOTES
1371  * 
1372  *    NOTE: If the application returns TRUE in the `key_agreement' client
1373  *    operation the library will automatically start the key agreement. In this
1374  *    case the application must not call this function. However, application
1375  *    may choose to just ignore the `key_agreement' client operation (and
1376  *    merely just print information about it on the screen) and call this
1377  *    function when the user whishes to do so (by, for example, giving some
1378  *    specific command). Thus, the API provides both, automatic and manual
1379  *    initiation of the key agreement. Calling this function is the manual
1380  *    initiation and returning TRUE in the `key_agreement' client operation
1381  *    is the automatic initiation. 
1382  *
1383  ***/
1384 void silc_client_perform_key_agreement(SilcClient client,
1385                                        SilcClientConnection conn,
1386                                        SilcClientEntry client_entry,
1387                                        char *hostname,
1388                                        int port,
1389                                        SilcKeyAgreementCallback completion,
1390                                        void *context);
1391
1392 /****f* silcclient/SilcClientAPI/silc_client_perform_key_agreement_fd
1393  *
1394  * SYNOPSIS
1395  *
1396  *    void
1397  *    silc_client_perform_key_agreement_fd(SilcClient client,
1398  *                                         SilcClientConnection conn,
1399  *                                         SilcClientEntry client_entry,
1400  *                                         int sock,
1401  *                                         char *hostname,
1402  *                                         SilcKeyAgreementCallback completion,
1403  *                                         void *context);
1404  *
1405  * DESCRIPTION
1406  *
1407  *    Same as above but application has created already the connection to 
1408  *    the remote host. The `sock' is the socket to the remote connection. 
1409  *    Application can use this function if it does not want the client library
1410  *    to create the connection. 
1411  *
1412  ***/
1413 void silc_client_perform_key_agreement_fd(SilcClient client,
1414                                           SilcClientConnection conn,
1415                                           SilcClientEntry client_entry,
1416                                           int sock,
1417                                           char *hostname,
1418                                           SilcKeyAgreementCallback completion,
1419                                           void *context);
1420
1421 /****f* silcclient/SilcClientAPI/silc_client_abort_key_agreement
1422  *
1423  * SYNOPSIS
1424  *
1425  *    void silc_client_abort_key_agreement(SilcClient client,
1426  *                                         SilcClientConnection conn,
1427  *                                         SilcClientEntry client_entry);
1428  *
1429  * DESCRIPTION
1430  *
1431  *    This function can be called to unbind the hostname and the port for
1432  *    the key agreement protocol. However, this function has effect only 
1433  *    before the key agreement protocol has been performed. After it has
1434  *    been performed the library will automatically unbind the port. The 
1435  *    `client_entry' is the client to which we sent the key agreement 
1436  *    request. 
1437  *
1438  ***/
1439 void silc_client_abort_key_agreement(SilcClient client,
1440                                      SilcClientConnection conn,
1441                                      SilcClientEntry client_entry);
1442
1443
1444 /* Misc functions */
1445
1446 /****f* silcclient/SilcClientAPI/silc_client_set_away_message
1447  *
1448  * SYNOPSIS
1449  *
1450  *    void silc_client_set_away_message(SilcClient client,
1451  *                                      SilcClientConnection conn,
1452  *                                      char *message);
1453  *
1454  * DESCRIPTION
1455  *
1456  *    Sets away `message'.  The away message may be set when the client's
1457  *    mode is changed to SILC_UMODE_GONE and the client whishes to reply
1458  *    to anyone who sends private message.  The `message' will be sent
1459  *    automatically back to the the client who send private message.  If
1460  *    away message is already set this replaces the old message with the
1461  *    new one.  If `message' is NULL the old away message is removed. 
1462  *    The sender may freely free the memory of the `message'. 
1463  *
1464  ***/
1465 void silc_client_set_away_message(SilcClient client,
1466                                   SilcClientConnection conn,
1467                                   char *message);
1468
1469 #endif