622670b32d16943a94da56c27556cde989896e2a
[silc.git] / lib / silcclient / silcclient.h
1 /*
2
3   silcclient.h
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 2000 - 2007 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; version 2 of the License.
12
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18 */
19
20 /****h* silcclient/Client Library Interface
21  *
22  * DESCRIPTION
23  *
24  * This interface defines the SILC Client Library API for the application.
25  * The Client Library is a full featured SILC client without user interface.
26  * A simple interface called SILC Client Operations (SilcClientOperations)
27  * is provided for applications to implmeent the necessary functions to use
28  * the client library.  The silcclient.h header file includes client library
29  * API, such as command handling and message sending.  The silcclient_entry.h
30  * header file includes entry handling, such as channel and user entry
31  * handling.
32  *
33  * Practically all functions in the Client Library API accepts SilcClient
34  * and SilcClientConnection as their first two argument.  The first argument
35  * is the actual SilcClient context and the second is the SilcClientConnection
36  * context of the connection in question.  Application may create and handle
37  * multiple connections in one SilcClient.  Connections can be created to
38  * servers and other clients.
39  *
40  * The Client Library support multiple threads and is threads safe if used
41  * correctly.  Messages can be sent from multiple threads without any
42  * locking.  Messages however are always received only in one thread unless
43  * message waiting (see silc_client_private_message_wait as an example) is
44  * used.  The threads can be turned on and off by giving a parameter to the
45  * SilcClient.  When turned on, each new connection to remote host is always
46  * executed in an own thread.  All tasks related to that connection are then
47  * executed in that thread.  This means that client operation callbacks for
48  * that connections may be called from threads and application will need to
49  * employ concurrency control if the callbacks need to access shared data
50  * in the application.  Messages are also received in that thread.
51  *
52  ***/
53
54 #ifndef SILCCLIENT_H
55 #define SILCCLIENT_H
56
57 #ifdef __cplusplus
58 extern "C" {
59 #endif
60
61 #include "client.h"
62 #include "silcclient_entry.h"
63
64 /* General definitions */
65
66 /****d* silcclient/SilcClientAPI/SilcClientConnectionStatus
67  *
68  * NAME
69  *
70  *    typedef enum { ... } SilcClientConnectionStatus
71  *
72  * DESCRIPTION
73  *
74  *    This type is returned to the `connect' client operation to indicate
75  *    the status of the created connection.  It can indicate if it was
76  *    successful or whether an error occurred.
77  *
78  * SOURCE
79  */
80 typedef enum {
81   SILC_CLIENT_CONN_SUCCESS,            /* Successfully connected */
82   SILC_CLIENT_CONN_SUCCESS_RESUME,     /* Successfully connected and
83                                           resumed old detached session */
84   SILC_CLIENT_CONN_DISCONNECTED,       /* Remote host disconnected */
85   SILC_CLIENT_CONN_ERROR,              /* Error occurred during connecting */
86   SILC_CLIENT_CONN_ERROR_KE,           /* Key Exchange failed */
87   SILC_CLIENT_CONN_ERROR_AUTH,         /* Authentication failed */
88   SILC_CLIENT_CONN_ERROR_RESUME,       /* Resuming failed */
89   SILC_CLIENT_CONN_ERROR_TIMEOUT,      /* Timeout during connecting */
90 } SilcClientConnectionStatus;
91 /***/
92
93 /****f* silcclient/SilcClientAPI/SilcClientRunning
94  *
95  * SYNOPSIS
96  *
97  *    typedef void (*SilcClientRunning)(SilcClient client, void *context);
98  *
99  * DESCRIPTION
100  *
101  *    The callback given as argument to silc_client_init function.  Once
102  *    this is called the client library is running and application may
103  *    start using the Client library API.
104  *
105  ***/
106 typedef void (*SilcClientRunning)(SilcClient client, void *context);
107
108 /****f* silcclient/SilcClientAPI/SilcClientStopped
109  *
110  * SYNOPSIS
111  *
112  *    typedef void (*SilcClientStopped)(SilcClient client, void *context);
113  *
114  * DESCRIPTION
115  *
116  *    The callback given as argument to silc_client_stop.  Once this is
117  *    called the client library has stopped and can be freed by calling
118  *    silc_client_free.  Note that this won't be called if there are
119  *    active connections in the client.  Connections must first be closed
120  *    by calling silc_client_close_connection or by sending QUIT command to
121  *    the server connection.
122  *
123  ***/
124 typedef void (*SilcClientStopped)(SilcClient client, void *context);
125
126 /****f* silcclient/SilcClientAPI/SilcClientConnectCallback
127  *
128  * SYNOPSIS
129  *
130  *    void (*SilcClientConnectCallback)(SilcClient client,
131  *                                      SilcClientConnection conn,
132  *                                      SilcClientConnectionStatus status,
133  *                                      SilcStatus error,
134  *                                      const char *message,
135  *                                      void *context);
136  *
137  * DESCRIPTION
138  *
139  *    Connect callbak given as argument to silc_client_connect_to_server,
140  *    silc_client_connect_to_client and silc_client_key_exchange functions.
141  *    It is called to indicate the status of the connection, indicated
142  *    by the `status'.  It is called after the connection has been
143  *    established to the remote host and when connection is disconnected
144  *    by the remote host.  The `context' is the context given as argument
145  *    to the connecting function.  If the `status' is an error the `error'
146  *    may indicate more detailed error.  If `error' is SILC_STATUS_OK no
147  *    detailed error message is available.
148  *
149  *    When the `status' is SILC_CLIENT_CONN_DISCONNECTED the `error' will
150  *    indicate the reason for disconnection.  If the `message' is non-NULL
151  *    it delivers error or disconnection message.
152  *
153  *    The `conn' is the connection to the remote host.  In case error
154  *    occurred the `conn' may be NULL, however, in some cases a valid `conn'
155  *    is returned even in error.  If `conn' is non-NULL the receiver is
156  *    responsible of closing the connection with silc_client_close_connection
157  *    function, except when SILC_CLINET_CONN_DISCONNECTED or some error
158  *    was received.  In these cases the library will close the connection.
159  *
160  ***/
161 typedef void (*SilcClientConnectCallback)(SilcClient client,
162                                           SilcClientConnection conn,
163                                           SilcClientConnectionStatus status,
164                                           SilcStatus error,
165                                           const char *message,
166                                           void *context);
167
168 /****s* silcclient/SilcClientAPI/SilcClient
169  *
170  * NAME
171  *
172  *    typedef struct SilcClientStruct { ... } *SilcClient
173  *
174  * DESCRIPTION
175  *
176  *    This is the actual SILC Client structure which represents one
177  *    SILC Client.  It is allocated with the silc_client_alloc function
178  *    and given as argument to all SILC Client Library functions.  It
179  *    is initialized with silc_client_init function, and freed with
180  *    silc_client_free function.
181  *
182  *    This context represents the client.  Each connection to remote server
183  *    is represented by SilcClientConnection context.
184  *
185  * SOURCE
186  */
187 struct SilcClientStruct {
188   char *username;               /* Username */
189   char *hostname;               /* hostname */
190   char *realname;               /* Real name */
191   SilcSchedule schedule;        /* Client scheduler */
192   SilcRng rng;                  /* Random number generator */
193   void *application;            /* Application specific context, set with
194                                    silc_client_alloc. */
195
196   /* Internal data for client library.  Application cannot access this. */
197   SilcClientInternal internal;
198 };
199 /***/
200
201 /****s* silcclient/SilcClientAPI/SilcClientConnection
202  *
203  * NAME
204  *
205  *    typedef struct SilcClientConnectionStruct { ... }
206  *                      *SilcClientConnection
207  *
208  * DESCRIPTION
209  *
210  *    This structure represents a connection.  It is allocated and freed by
211  *    the library.  It is returned to application in SilcClientConnectCallback.
212  *    It includes all the important data for the session such as local
213  *    client entry (which includes current nickname), local and remote IDs,
214  *    and other information.  All strings in the structure are UTF-8 encoded.
215  *
216  * SOURCE
217  */
218 struct SilcClientConnectionStruct {
219   SilcClientEntry local_entry;         /* Our own Client Entry */
220   SilcClientID *local_id;              /* Our current Client ID */
221
222   char *remote_host;                   /* Remote host name */
223   int remote_port;                     /* Remote port */
224   SilcID remote_id;                    /* Remote ID */
225
226   SilcChannelEntry current_channel;    /* Current joined channel */
227   SilcPublicKey public_key;            /* Public key used in this connection */
228   SilcPrivateKey private_key;          /* Private key */
229   SilcPacketStream stream;             /* Connection to remote host */
230   SilcConnectionType type;             /* Connection type */
231   SilcClientConnectCallback callback;  /* Connection callback */
232   void *callback_context;              /* Connection context */
233   SilcClient client;                   /* Pointer back to SilcClient */
234
235   /* Application specific data.  Application may set here whatever it wants. */
236   void *context;
237
238   /* Internal data for client library.  Application cannot access this. */
239   SilcClientConnectionInternal internal;
240 };
241 /***/
242
243 /****s* silcclient/SilcClientAPI/SilcChannelUser
244  *
245  * NAME
246  *
247  *    typedef struct SilcChannelUserStruct { ... } *SilcChannelUser
248  *
249  * DESCRIPTION
250  *
251  *    This structure represents a client that has joined to a channel.
252  *    It shows the client and the channel and the client's mode (channel
253  *    user mode) on the channel.
254  *
255  * SOURCE
256  */
257 struct SilcChannelUserStruct {
258   SilcClientEntry client;                    /* Client joined on channel */
259   SilcUInt32 mode;                           /* mode, ChannelUserModes */
260   SilcChannelEntry channel;                  /* The channel user has joined */
261
262   /* Application specific data.  Application may set here whatever it wants. */
263   void *context;
264 };
265 /***/
266
267 /****s* silcclient/SilcClientAPI/SilcClientStats
268  *
269  * NAME
270  *
271  *    typedef struct { ... } SilcClientStats;
272  *
273  * DESCRIPTION
274  *
275  *    This structure holds SILC network statistics returned by the
276  *    SILC_COMMAND_STATS command reply to the application.
277  *
278  * SOURCE
279  */
280 typedef struct {
281   SilcUInt32 starttime;         /* SILC server start time */
282   SilcUInt32 uptime;            /* SILC server uptime*/
283   SilcUInt32 my_clients;        /* Number of clients in the server */
284   SilcUInt32 my_channels;       /* Number of channel in the server */
285   SilcUInt32 my_server_ops;     /* Number of server operators in the server */
286   SilcUInt32 my_router_ops;     /* Number of router operators in the router */
287   SilcUInt32 cell_clients;      /* Number of clients in the cell */
288   SilcUInt32 cell_channels;     /* Number of channels in the cell */
289   SilcUInt32 cell_servers;      /* Number of server in the cell */
290   SilcUInt32 clients;           /* All clients in SILC network */
291   SilcUInt32 channels;          /* All channels in SILC network */
292   SilcUInt32 servers;           /* All servers in SILC network */
293   SilcUInt32 routers;           /* All routers in SILC network */
294   SilcUInt32 server_ops;        /* All server operators in SILC network */
295   SilcUInt32 router_ops;        /* All router operators in SILC network */
296 } SilcClientStats;
297 /***/
298
299 /****d* silcclient/SilcClientAPI/SilcKeyAgreementStatus
300  *
301  * NAME
302  *
303  *    typedef enum { ... } SilcKeyAgreementStatus;
304  *
305  * DESCRIPTION
306  *
307  *    Key agreement status types indicating the status of the key
308  *    agreement protocol.  These types are returned to the application
309  *    in the SilcKeyAgreementCallback callback function.
310  *
311  * SOURCE
312  */
313 typedef enum {
314   SILC_KEY_AGREEMENT_OK,               /* Everything is Ok */
315   SILC_KEY_AGREEMENT_ERROR,            /* Unknown error occurred */
316   SILC_KEY_AGREEMENT_FAILURE,          /* The protocol failed */
317   SILC_KEY_AGREEMENT_TIMEOUT,          /* The protocol timeout */
318   SILC_KEY_AGREEMENT_ABORTED,          /* The protocol aborted */
319   SILC_KEY_AGREEMENT_ALREADY_STARTED,  /* Already started */
320   SILC_KEY_AGREEMENT_SELF_DENIED,      /* Negotiationg with itself denied */
321   SILC_KEY_AGREEMENT_NO_MEMORY,        /* System out of memory */
322 } SilcKeyAgreementStatus;
323 /***/
324
325 /****f* silcclient/SilcClientAPI/SilcKeyAgreementCallback
326  *
327  * SYNOPSIS
328  *
329  *    typedef void (*SilcKeyAgreementCallback)(SilcClient client,
330  *                                             SilcClientConnection conn,
331  *                                             SilcClientEntry client_entry,
332  *                                             SilcKeyAgreementStatus status,
333  *                                             SilcSKEKeyMaterial *key,
334  *                                             void *context);
335  *
336  * DESCRIPTION
337  *
338  *    Key agreement callback that is called after the key agreement protocol
339  *    has been performed. This is called also if error occurred during the
340  *    key agreement protocol. The `key' is the allocated key material and
341  *    the caller is responsible of freeing it. The `key' is NULL if error
342  *    has occurred. The application can freely use the `key' to whatever
343  *    purpose it needs. See lib/silcske/silcske.h for the definition of
344  *    the SilcSKEKeyMaterial structure.
345  *
346  ***/
347 typedef void (*SilcKeyAgreementCallback)(SilcClient client,
348                                          SilcClientConnection conn,
349                                          SilcClientEntry client_entry,
350                                          SilcKeyAgreementStatus status,
351                                          SilcSKEKeyMaterial key,
352                                          void *context);
353
354 /****s* silcclient/SilcClientAPI/SilcPrivateMessageKeys
355  *
356  * NAME
357  *
358  *    typedef struct { ... } SilcPrivateMessageKeys;
359  *
360  * DESCRIPTION
361  *
362  *    Structure to hold the list of private message keys. The list of these
363  *    structures is returned by the silc_client_list_private_message_keys
364  *    function.
365  *
366  * SOURCE
367  */
368 typedef struct {
369   SilcClientEntry client_entry;       /* The remote client entry */
370   char *cipher;                       /* The cipher name */
371   unsigned char *key;                 /* The original key, If the appliation
372                                          provided it. This is NULL if
373                                          the SKE key material was used. */
374   SilcUInt32 key_len;                 /* The key length */
375 } *SilcPrivateMessageKeys;
376 /***/
377
378 /****s* silcclient/SilcClientAPI/SilcChannelPrivateKey
379  *
380  * NAME
381  *
382  *    typedef struct SilcChannelPrivateKeyStruct { ... }
383  *                      *SilcChannelPrivateKey;
384  *
385  * DESCRIPTION
386  *
387  *    Structure to hold one channel private key. The array of this structure
388  *    is returned by silc_client_list_channel_private_keys function.
389  *
390  * SOURCE
391  */
392 struct SilcChannelPrivateKeyStruct {
393   char *name;                         /* Application given name */
394   SilcCipher send_key;                /* The cipher and key */
395   SilcCipher receive_key;             /* The cipher and key */
396   SilcHmac hmac;                      /* The HMAC and hmac key */
397 };
398 /***/
399
400 /****f* silcclient/SilcClientAPI/SilcAskPassphrase
401  *
402  * SYNOPSIS
403  *
404  *    typedef void (*SilcAskPassphrase)(unsigned char *passphrase,
405  *                                      SilcUInt32 passphrase_len,
406  *                                      void *context);
407  *
408  * DESCRIPTION
409  *
410  *    Ask passphrase callback. This is called by the application when the
411  *    library calls `ask_passphrase' client operation.  The callback delivers
412  *    the passphrase to the library.  The passphrases in SILC protocol
413  *    MUST be in UTF-8 encoding, therefore the `passphrase' SHOULD be UTF-8
414  *    encoded, and if it is not then library will attempt to encode it.
415  *
416  ***/
417 typedef void (*SilcAskPassphrase)(unsigned char *passphrase,
418                                   SilcUInt32 passphrase_len,
419                                   void *context);
420
421 /****f* silcclient/SilcClientAPI/SilcVerifyPublicKey
422  *
423  * SYNOPSIS
424  *
425  *    typedef void (*SilcVerifyPublicKey)(SilcBool success, void *context);
426  *
427  * DESCRIPTION
428  *
429  *    Public key (or certificate) verification callback. This is called
430  *    by the application to indicate that the public key verification was
431  *    either success or failure.
432  *
433  ***/
434 typedef void (*SilcVerifyPublicKey)(SilcBool success, void *context);
435
436 /****f* silcclient/SilcClientAPI/SilcGetAuthMeth
437  *
438  * SYNOPSIS
439  *
440  *    typedef void (*SilcGetAuthMeth)(SilcBool success,
441  *                                    SilcAuthMethod auth_meth,
442  *                                    void *auth, SilcUInt32 auth_len,
443  *                                    void *context);
444  *
445  * DESCRIPTION
446  *
447  *    Authentication data resolving callback. This is called by the
448  *    application to return the resolved authentication data. The client
449  *    library has called the get_auth_method client operation and given
450  *    this function pointer as argument. The `auth_meth' is the selected
451  *    authentication method. The `auth_data' and the `auth_data_len'
452  *    are the resolved authentication data. The `context' is the libary's
453  *    context sent to the get_auth_method client operation.
454  *
455  *    If the `auth_method' is SILC_AUTH_PASSWORD then `auth' and `auth_len'
456  *    is the passphrase and its length.  If it is SILC_AUTH_PUBLIC_KEY the
457  *    `auth' must be NULL.  The library will use the private key given as
458  *    argument to silc_client_connect_to_server, silc_client_connect_to_client
459  *    or silc_client_key_exchange.  If it is SILC_AUTH_NONE, both `auth' and
460  *    `auth_len' are ignored.
461  *
462  ***/
463 typedef void (*SilcGetAuthMeth)(SilcAuthMethod auth_meth,
464                                 void *auth, SilcUInt32 auth_len,
465                                 void *context);
466
467 /****d* silcclient/SilcClientAPI/SilcClientMessageType
468  *
469  * NAME
470  *
471  *    typedef enum { ... } SilcClientMessageType;
472  *
473  * DESCRIPTION
474  *
475  *    Different message types for `say' client operation.  The application
476  *    may filter the message sent by the library according this type.
477  *
478  * SOURCE
479  */
480 typedef enum {
481   SILC_CLIENT_MESSAGE_INFO,            /* Informational */
482   SILC_CLIENT_MESSAGE_WARNING,         /* Warning */
483   SILC_CLIENT_MESSAGE_ERROR,           /* Error */
484   SILC_CLIENT_MESSAGE_COMMAND_ERROR,   /* Error during command */
485   SILC_CLIENT_MESSAGE_AUDIT,           /* Auditable */
486 } SilcClientMessageType;
487 /***/
488
489 /****s* silcclient/SilcClientAPI/SilcClientOperations
490  *
491  * NAME
492  *
493  *    typedef struct { ... } SilcClientOperations;
494  *
495  * DESCRIPTION
496  *
497  *    SILC Client Operations. These must be implemented by the application.
498  *    The Client library may call any of these routines at any time.  The
499  *    routines are used to deliver certain information to the application
500  *    or from the application to the client library.
501  *
502  * SOURCE
503  */
504 typedef struct {
505   /* Message sent to the application by library. `conn' associates the
506      message to a specific connection.  `conn', however, may be NULL.
507      The `type' indicates the type of the message sent by the library.
508      The application can for example filter the message according the
509      type.  The variable argument list is arguments to the formatted
510      message that `msg' may be. */
511   void (*say)(SilcClient client, SilcClientConnection conn,
512               SilcClientMessageType type, char *msg, ...);
513
514   /* Message for a channel. The `sender' is the sender of the message
515      The `channel' is the channel. The `message' is the message.  Note
516      that `message' maybe NULL.  The `flags' indicates message flags
517      and it is used to determine how the message can be interpreted
518      (like it may tell the message is multimedia message).  The `payload'
519      may be used to retrieve all the details of the message. */
520   void (*channel_message)(SilcClient client, SilcClientConnection conn,
521                           SilcClientEntry sender, SilcChannelEntry channel,
522                           SilcMessagePayload payload,
523                           SilcChannelPrivateKey key, SilcMessageFlags flags,
524                           const unsigned char *message,
525                           SilcUInt32 message_len);
526
527   /* Private message to the client. The `sender' is the sender of the
528      message. The message is `message'and maybe NULL.  The `flags'
529      indicates message flags  and it is used to determine how the message
530      can be interpreted (like it may tell the message is multimedia
531      message).  The `payload' may be used to retrieve all the details of
532      the message. */
533   void (*private_message)(SilcClient client, SilcClientConnection conn,
534                           SilcClientEntry sender, SilcMessagePayload payload,
535                           SilcMessageFlags flags, const unsigned char *message,
536                           SilcUInt32 message_len);
537
538   /* Notify message to the client.  The arguments are notify `type' specific.
539      See separate documentation in the Toolkit Reference Manual for the notify
540      arguments. */
541   void (*notify)(SilcClient client, SilcClientConnection conn,
542                  SilcNotifyType type, ...);
543
544   /* Command handler. This function is called always after application has
545      called a command.  It will be called to indicate that the command
546      was processed.  It will also be called if error occurs while processing
547      the command.  The `success' indicates whether the command was sent
548      or if error occurred.  The `status' indicates the actual error.
549      The `argc' and `argv' are the command line arguments sent to the
550      command by application.  Note that, this is not reply to the command
551      from server, this is merely and indication to application that the
552      command was processed. */
553   void (*command)(SilcClient client, SilcClientConnection conn,
554                   SilcBool success, SilcCommand command, SilcStatus status,
555                   SilcUInt32 argc, unsigned char **argv);
556
557   /* Command reply handler.  Delivers a reply to command that was sent
558      earlier.  The `conn' is the associated client connection.  The `command'
559      indicates the command reply type.  If the `status' other than
560      SILC_STATUS_OK an error occurred.  In this case the `error' will indicate
561      the error.  It is possible to receive list of command replies and list
562      of errors.  In this case the `status' will indicate it is an list entry
563      (the `status' is SILC_STATUS_LIST_START, SILC_STATUS_LIST_ITEM and/or
564      SILC_STATUS_LIST_END).
565
566      The arguments received in `ap' are command specific.  See a separate
567      documentation in the Toolkit Reference Manual for the command reply
568      arguments. */
569   void (*command_reply)(SilcClient client, SilcClientConnection conn,
570                         SilcCommand command, SilcStatus status,
571                         SilcStatus error, va_list ap);
572
573   /* Find authentication method and authentication data by hostname and
574      port. The hostname may be IP address as well. The `auth_method' is
575      the authentication method the remote connection requires.  It is
576      however possible that remote accepts also some other authentication
577      method.  Application should use the method that may have been
578      configured for this connection.  If none has been configured it should
579      use the required `auth_method'.  If the `auth_method' is
580      SILC_AUTH_NONE, server does not require any authentication or the
581      required authentication method is not known.  The `completion'
582      callback must be called to deliver the chosen authentication method
583      and data. The `conn' may be NULL. */
584   void (*get_auth_method)(SilcClient client, SilcClientConnection conn,
585                           char *hostname, SilcUInt16 port,
586                           SilcAuthMethod auth_method,
587                           SilcGetAuthMeth completion, void *context);
588
589   /* Called to verify received public key. The `conn_type' indicates which
590      entity (server or client) has sent the public key. If user decides to
591      trust the key the application may save the key as trusted public key for
592      later use. The `completion' must be called after the public key has
593      been verified. */
594   void (*verify_public_key)(SilcClient client, SilcClientConnection conn,
595                             SilcConnectionType conn_type,
596                             SilcPublicKey public_key,
597                             SilcVerifyPublicKey completion, void *context);
598
599   /* Ask from end user a passphrase or a password. The passphrase is
600      returned to the library by calling the `completion' callback with
601      the `context'. The returned passphrase SHOULD be in UTF-8 encoded,
602      if not then the library will attempt to encode. */
603   void (*ask_passphrase)(SilcClient client, SilcClientConnection conn,
604                          SilcAskPassphrase completion, void *context);
605
606   /* Called to indicate that incoming key agreement request has been
607      received.  If the application wants to perform key agreement it may
608      call silc_client_perform_key_agreement to initiate key agreement or
609      silc_client_send_key_agreement to provide connection point to the
610      remote client in case the `hostname' is NULL.  If key agreement is
611      not desired this request can be ignored.  The `protocol' is either
612      value 0 for TCP or value 1 for UDP. */
613   void (*key_agreement)(SilcClient client, SilcClientConnection conn,
614                         SilcClientEntry client_entry,
615                         const char *hostname, SilcUInt16 protocol,
616                         SilcUInt16 port);
617
618   /* Notifies application that file transfer protocol session is being
619      requested by the remote client indicated by the `client_entry' from
620      the `hostname' and `port'. The `session_id' is the file transfer
621      session and it can be used to either accept or reject the file
622      transfer request, by calling the silc_client_file_receive or
623      silc_client_file_close, respectively. */
624   void (*ftp)(SilcClient client, SilcClientConnection conn,
625               SilcClientEntry client_entry, SilcUInt32 session_id,
626               const char *hostname, SilcUInt16 port);
627 } SilcClientOperations;
628 /***/
629
630 /****s* silcclient/SilcClientAPI/SilcClientParams
631  *
632  * NAME
633  *
634  *    typedef struct { ... } SilcClientParams;
635  *
636  * DESCRIPTION
637  *
638  *    Client parameters. This can be filled with proper values and
639  *    given as argument to the silc_client_alloc function. The structure
640  *    hold various parameters which affects the function of the client.
641  *
642  * SOURCE
643  */
644 typedef struct {
645   /* If this boolean is set to TRUE then the client library will use
646      threads.  Any of the callback functions in the SilcClientOperations
647      and other callbacks may be called at any time in a thread.  The
648      application may need to employ appropriate concurrency control
649      in the callbacks to protect application specific data. */
650   SilcBool threads;
651
652   /* Nickname format string. This can be used to order the client library
653      to save the nicknames in the library in a certain format. Since
654      nicknames are not unique in SILC it is possible to have multiple same
655      nicknames. Using this format string it is possible to order the library
656      to separate the multiple same nicknames from each other. If this is
657      empty then default format is used which is the default nickname
658      without anything else. The string MUST be NULL terminated.
659
660      Following format types are available:
661
662      %n  nickname      - the real nickname returned by the server (mandatory)
663      %a  number        - ascending number in case there are several
664                          same nicknames (fe. nick#2 and nick#3)
665      %h  hostname      - the stripped hostname of the client
666      %H  full hostname - the full hostname of the client
667
668      Example format strings: "%n#%a"     (fe. nick#2, nick#3)
669                              "%n@%h%a"   (fe. nick@host, nick@host2)
670                              "%a!%n@%h"  (fe. nick@host, 2!nick@host)
671
672      Note that there must always be some separator characters around '%n'
673      format.  It is not possible to put format characters before or after
674      '%n' without separators (such ash '#').  Also note that the separator
675      character should be a character that cannot be part of normal nickname.
676   */
677   char nickname_format[32];
678
679   /* If this is set to TRUE then the `nickname_format' is employed to all
680      saved nicknames even if there are no multiple same nicknames in the
681      cache. By default this is FALSE, which means that the `nickname_format'
682      is employed only if the library will receive a nickname that is
683      already saved in the cache. It is recommended to leave this to FALSE
684      value. */
685   SilcBool nickname_force_format;
686
687   /* If this is set to TRUE, the silcclient library will not register and
688      deregister the cipher, pkcs, hash and hmac algorithms. The application
689      itself will need to handle that. */
690   SilcBool dont_register_crypto_library;
691
692 } SilcClientParams;
693 /***/
694
695
696 /* Initialization functions (client.c) */
697
698 /****f* silcclient/SilcClientAPI/silc_client_alloc
699  *
700  * SYNOPSIS
701  *
702  *    SilcClient silc_client_alloc(SilcClientOperations *ops,
703  *                                 SilcClientParams *params,
704  *                                 void *application,
705  *                                 const char *silc_version);
706  *
707  * DESCRIPTION
708  *
709  *    Allocates new client object. This has to be done before client may
710  *    work. After calling this one must call silc_client_init to initialize
711  *    the client. The `application' is application specific user data pointer
712  *    and caller must free it. The `silc_version' is the application version
713  *    that will be used to compare against remote host's (usually a server)
714  *    version string.  The `application' context is accessible by the
715  *    application by client->application, client being SilcClient.
716  *
717  ***/
718 SilcClient silc_client_alloc(SilcClientOperations *ops,
719                              SilcClientParams *params,
720                              void *application,
721                              const char *version_string);
722
723 /****f* silcclient/SilcClientAPI/silc_client_free
724  *
725  * SYNOPSIS
726  *
727  *    void silc_client_free(SilcClient client);
728  *
729  * DESCRIPTION
730  *
731  *    Frees client object and its internals.  The execution of the client
732  *    should be stopped with silc_client_stop function before calling
733  *    this function.
734  *
735  ***/
736 void silc_client_free(SilcClient client);
737
738 /****f* silcclient/SilcClientAPI/silc_client_init
739  *
740  * SYNOPSIS
741  *
742  *    SilcBool silc_client_init(SilcClient client, const char *username,
743  *                              const char *hostname, const char *realname,
744  *                              SilcClientRunning running, void *context);
745  *
746  * DESCRIPTION
747  *
748  *    Initializes the client. This makes all the necessary steps to make
749  *    the client ready to be run. One must call silc_client_run to run the
750  *    client. Returns FALSE if error occurred, TRUE otherwise.
751  *
752  *    The `username' and `hostname' strings must be given and they must be
753  *    UTF-8 encoded.  The `username' is the client's username in the
754  *    operating system, `hostname' is the client's host name and the
755  *    `realname' is the user's real name.
756  *
757  *    The `running' callback with `context' is called after the client is
758  *    running after silc_client_run or silc_client_run_one has been called.
759  *    Application may start using the Client library API after that.  Setting
760  *    the callback is optional, but recommended.
761  *
762  ***/
763 SilcBool silc_client_init(SilcClient client, const char *username,
764                           const char *hostname, const char *realname,
765                           SilcClientRunning running, void *context);
766
767 /****f* silcclient/SilcClientAPI/silc_client_run
768  *
769  * SYNOPSIS
770  *
771  *    void silc_client_run(SilcClient client);
772  *
773  * DESCRIPTION
774  *
775  *    Runs the client.  This starts the scheduler from the utility library.
776  *    When this functions returns the execution of the application is over.
777  *    The client must be initialized before calling this.
778  *
779  ***/
780 void silc_client_run(SilcClient client);
781
782 /****f* silcclient/SilcClientAPI/silc_client_run_one
783  *
784  * SYNOPSIS
785  *
786  *    void silc_client_run_one(SilcClient client);
787  *
788  * DESCRIPTION
789  *
790  *    Runs the client and returns immeadiately. This function is used when
791  *    the SILC Client object indicated by the `client' is run under some
792  *    other scheduler, or event loop or main loop.  On GUI applications,
793  *    for example this may be desired to used to run the client under the
794  *    GUI application's main loop.  Typically the GUI application would
795  *    register an idle task that calls this function multiple times in
796  *    a second to quickly process the SILC specific data.
797  *
798  ***/
799 void silc_client_run_one(SilcClient client);
800
801 /****f* silcclient/SilcClientAPI/silc_client_stop
802  *
803  * SYNOPSIS
804  *
805  *    void silc_client_stop(SilcClient client, SilcClientStopped stopped,
806  *                          void *context);
807  *
808  * DESCRIPTION
809  *
810  *    Stops the client. This is called to stop the client and thus to stop
811  *    the program.  The client context must be freed with the silc_client_free
812  *    function.  All connections that exist in this client must be closed
813  *    before calling this function.  Connections can be closed by calling
814  *    silc_client_close_connection.
815  *
816  *    The `stopped' will be called once the client and all connections have
817  *    finished.  The client may be freed after that.  Note that the `stopped'
818  *    won't be called before all connections have finished.  Setting the
819  *    callback is optional.
820  *
821  ***/
822 void silc_client_stop(SilcClient client, SilcClientStopped stopped,
823                       void *context);
824
825 /* Connecting functions */
826
827 /****s* silcclient/SilcClientAPI/SilcClientConnectionParams
828  *
829  * NAME
830  *
831  *    typedef struct { ... } SilcClientConnectionParams;
832  *
833  * DESCRIPTION
834  *
835  *    Client connection parameters.  This can be filled by the application
836  *    and given as argument to silc_client_connect_to_server,
837  *    silc_client_connect_to_client, silc_client_key_exchange or
838  *    silc_client_send_key_agreement.
839  *
840  * SOURCE
841  */
842 typedef struct {
843   /* If this is provided the user's nickname in the network will be the
844      string given here.  If it is given, it must be UTF-8 encoded.  If this
845      string is not given, the user's username by default is used as nickname.
846      The nickname may later be changed by using NICK command.  The maximum
847      length for the nickname string is 128 bytes. */
848   char *nickname;
849
850   /* If this key repository pointer is non-NULL then public key received in
851      the key exchange protocol will be verified from this repository.  If
852      this is not provided then the `verify_public_key' client operation will
853      be called back to application.  If the boolean `verify_notfound' is set
854      to TRUE then the `verify_public_key' client operation will be called
855      in case the public key is not found in `repository'.  Only public keys
856      added with at least SILC_SKR_USAGE_KEY_AGREEMENT in the repository will
857      be checked, other keys will be ignored. */
858   SilcSKR repository;
859   SilcBool verify_notfound;
860
861   /* Authentication data.  Application may set here the authentication data
862      and authentication method to be used in connecting.  If `auth_set'
863      boolean is TRUE then authentication data is provided by application.
864      If the authentication method is public key authentication then the key
865      pair given as argument when connecting will be used and `auth' field
866      is NULL.  If it is passphrase authentication, it can be provided in
867      `auth' and `auth_len' fields.  If `auth_set' is FALSE
868      the `get_auth_method' client operation will be called to get the
869      authentication method and data from application. */
870   SilcBool auth_set;
871   SilcAuthMethod auth_method;
872   void *auth;
873   SilcUInt32 auth_len;
874
875   /* If this boolean is set to TRUE then the connection will use UDP instead
876      of TCP.  If UDP is set then also the next `local_ip' and `local_port'
877      must be set. */
878   SilcBool udp;
879
880   /* The `local_ip' specifies the local IP address used with the connection.
881      It must be non-NULL if `udp' boolean is TRUE.  If the `local_port' is
882      non-zero it will be used as local port with UDP connection.  The remote
883      host will also send packets to the specified address and port.  If the
884      `bind_ip' is non-NULL a listener is bound to that address instead of
885      `local_ip'. */
886   char *local_ip;
887   char *bind_ip;
888   int local_port;
889
890   /* If this boolean is set to TRUE then the key exchange is done with
891      perfect forward secrecy. */
892   SilcBool pfs;
893
894   /* If this boolean is set to TRUE then connection authentication protocol
895      is not performed during connecting.  Only key exchange protocol is
896      performed.  This usually must be set to TRUE when connecting to another
897      client, but must be FALSE with server connections. */
898   SilcBool no_authentication;
899
900   /* The SILC session detachment data that was returned in the `command_reply'
901      client operation for SILC_COMMAND_DETACH command.  If this is provided
902      here the client library will attempt to resume the session in the network.
903      After the connection is created and the session has been resumed the
904      client will receive SILC_COMMAND_NICK command_reply for the client's
905      nickname in the network and SILC_COMMAND_JOIN command reply for all the
906      channels that the client has joined in the network.  It may also receive
907      SILC_COMMAND_UMODE command reply to set user's mode on the network. */
908   unsigned char *detach_data;
909   SilcUInt32 detach_data_len;
910
911   /* Connection timeout.  If non-zero, the connection will timeout unless
912      the SILC connection is completed in the specified amount of time. */
913   SilcUInt32 timeout_secs;
914
915   /* Rekey timeout in seconds.  The client will perform rekey in this
916      time interval.  If set to zero, the default value will be used
917      (3600 seconds, 1 hour). */
918   SilcUInt32 rekey_secs;
919
920   /* If this is set to TRUE then the client will ignore all incoming
921      Requested Attributes queries and does not reply anything back.  This
922      usually leads into situation where server does not anymore send
923      the queries after seeing that client does not reply anything back.
924      If your application does not support Requested Attributes or you do
925      not want to use them set this to TRUE.  See SilcAttribute and
926      silc_client_attribute_add for more information on attributes. */
927   SilcBool ignore_requested_attributes;
928
929 } SilcClientConnectionParams;
930 /***/
931
932 /****f* silcclient/SilcClientAPI/silc_client_connect_to_server
933  *
934  * SYNOPSIS
935  *
936  *    SilcAsyncOperation
937  *    silc_client_connect_to_server(SilcClient client,
938  *                                  SilcClientConnectionParams *params,
939  *                                  SilcPublicKey public_key,
940  *                                  SilcPrivateKey private_key,
941  *                                  char *remote_host, int port,
942  *                                  SilcClientConnectCallback callback,
943  *                                  void *context);
944  *
945  * DESCRIPTION
946  *
947  *    Connects to remote server `remote_host' at port `port'.  This function
948  *    can be used to create connection to remote SILC server and start
949  *    SILC session in the SILC network.  The `params' may be provided
950  *    to provide various connection parameters.  The `public_key' and the
951  *    `private_key' is your identity used in this connection.  When
952  *    authentication method is based on digital signatures, this key pair
953  *    will be used.  The `callback' with `context' will be called after the
954  *    connection has been created.  It will also be called later when remote
955  *    host disconnects.
956  *
957  *    If application wishes to create the network connection itself, use
958  *    the silc_client_key_exchange after creating the connection to start
959  *    key exchange and authentication with the server.
960  *
961  *    Returns SilcAsyncOperation which can be used to cancel the connecting,
962  *    or NULL on error.  Note that the returned pointer becomes invalid
963  *    after the `callback' is called.
964  *
965  ***/
966 SilcAsyncOperation
967 silc_client_connect_to_server(SilcClient client,
968                               SilcClientConnectionParams *params,
969                               SilcPublicKey public_key,
970                               SilcPrivateKey private_key,
971                               char *remote_host, int port,
972                               SilcClientConnectCallback callback,
973                               void *context);
974
975 /****f* silcclient/SilcClientAPI/silc_client_connect_to_client
976  *
977  * SYNOPSIS
978  *
979  *    SilcAsyncOperation
980  *    silc_client_connect_to_client(SilcClient client,
981  *                                  SilcClientConnectionParams *params,
982  *                                  SilcPublicKey public_key,
983  *                                  SilcPrivateKey private_key,
984  *                                  char *remote_host, int port,
985  *                                  SilcClientConnectCallback callback,
986  *                                  void *context);
987  *
988  * DESCRIPTION
989  *
990  *    Connects to remote client `remote_host' at port `port'.  This function
991  *    can be used to create peer-to-peer connection to another SILC client,
992  *    for example, for direct conferencing, or file transfer or for other
993  *    purposes.  The `params' may be provided to provide various connection
994  *    parameters.  The `public_key' and the `private_key' is your identity
995  *    used in this connection.  The `callback' with `context' will be called
996  *    after the connection has been created.  It will also be called later
997  *    when remote host disconnects.
998  *
999  *    If application wishes to create the network connection itself, use
1000  *    the silc_client_key_exchange after creating the connection to start
1001  *    key exchange with the client.
1002  *
1003  *    Returns SilcAsyncOperation which can be used to cancel the connecting,
1004  *    or NULL on error.  Note that the returned pointer becomes invalid
1005  *    after the `callback' is called.
1006  *
1007  ***/
1008 SilcAsyncOperation
1009 silc_client_connect_to_client(SilcClient client,
1010                               SilcClientConnectionParams *params,
1011                               SilcPublicKey public_key,
1012                               SilcPrivateKey private_key,
1013                               char *remote_host, int port,
1014                               SilcClientConnectCallback callback,
1015                               void *context);
1016
1017 /****f* silcclient/SilcClientAPI/silc_client_key_exchange
1018  *
1019  * SYNOPSIS
1020  *
1021  *    SilcAsyncOperation
1022  *    silc_client_key_exchange(SilcClient client,
1023  *                             SilcClientConnectionParams *params,
1024  *                             SilcPublicKey public_key,
1025  *                             SilcPrivateKey private_key,
1026  *                             SilcStream stream,
1027  *                             SilcConnectionType conn_type,
1028  *                             SilcClientConnectCallback callback,
1029  *                             void *context);
1030  *
1031  * DESCRIPTION
1032  *
1033  *    Starts key exchange protocol and authentication protocol in the
1034  *    connection indicated by `stream'.  This function can be be used to
1035  *    start SILC session with remote host (usually server) when the caller
1036  *    has itself created the connection, instead of calling the function
1037  *    silc_client_connect_to_server or silc_client_connect_to_client.  If
1038  *    one of those functions was used this function must not be called as
1039  *    in that case the key exchange is performed automatically.
1040  *
1041  *    Use this function only if you have created the connection by yourself.
1042  *    After creating the connection the socket must be wrapped into a
1043  *    socket stream.  See silcsocketstream.h for more information.  Note that
1044  *    the `stream' must have valid remote IP address (and optionally also
1045  *    hostname) and port set.
1046  *
1047  *    The `params' may be provided to provide various connection parameters.
1048  *    The `public_key' and the `private_key' is your identity used in this
1049  *    session.  The `callback' with `context' will be called after the session
1050  *    has been set up.  It will also be called later when remote host
1051  *    disconnects.  The `conn_type' is the type of session this is going to
1052  *    be.  If the remote is SILC server it is SILC_CONN_SERVER or if it is
1053  *    SILC client it is SILC_CONN_CLIENT.
1054  *
1055  *    Returns SilcAsyncOperation which can be used to cancel the connecting,
1056  *    or NULL on error.  Note that the returned pointer becomes invalid
1057  *    after the `callback' is called.
1058  *
1059  * EXAMPLE
1060  *
1061  *    int sock;
1062  *
1063  *    // Create remote connection stream.  Resolve hostname and IP also.
1064  *    sock = create_connection(remote_host, port);
1065  *    silc_socket_tcp_stream_create(sock, TRUE, FALSE, schedule,
1066  *                                  stream_create_cb, app);
1067  *
1068  *    // Stream callback delivers our new SilcStream context
1069  *    void stream_create_cb(SilcSocketStreamStatus status, SilcStream stream,
1070  *                          void *context)
1071  *    {
1072  *      ...
1073  *      if (status != SILC_SOCKET_OK)
1074  *        error(status);
1075  *
1076  *      // Start key exchange
1077  *      silc_client_key_exchange(client, NULL, public_key, private_key,
1078  *                               stream, SILC_CONN_SERVER, connection_cb, app);
1079  *      ...
1080  *    }
1081  *
1082  ***/
1083 SilcAsyncOperation
1084 silc_client_key_exchange(SilcClient client,
1085                          SilcClientConnectionParams *params,
1086                          SilcPublicKey public_key,
1087                          SilcPrivateKey private_key,
1088                          SilcStream stream,
1089                          SilcConnectionType conn_type,
1090                          SilcClientConnectCallback callback,
1091                          void *context);
1092
1093 /****f* silcclient/SilcClientAPI/silc_client_close_connection
1094  *
1095  * SYNOPSIS
1096  *
1097  *    void silc_client_close_connection(SilcClient client,
1098  *                                      SilcClientConnection conn);
1099  *
1100  * DESCRIPTION
1101  *
1102  *    Closes the remote connection `conn'.  The `conn' will become invalid
1103  *    after this call.  Usually this function is called only when explicitly
1104  *    closing connection for example in case of error, or when the remote
1105  *    connection was created by the application or when the remote is client
1106  *    connection.  Server connections are usually closed by sending QUIT
1107  *    command to the server.  However, this call may also be used.
1108  *
1109  ***/
1110 void silc_client_close_connection(SilcClient client,
1111                                   SilcClientConnection conn);
1112
1113 /* Message sending functions */
1114
1115 /****f* silcclient/SilcClientAPI/silc_client_send_channel_message
1116  *
1117  * SYNOPSIS
1118  *
1119  *    SilcBool silc_client_send_channel_message(SilcClient client,
1120  *                                              SilcClientConnection conn,
1121  *                                              SilcChannelEntry channel,
1122  *                                              SilcChannelPrivateKey key,
1123  *                                              SilcMessageFlags flags,
1124  *                                              SilcHash hash,
1125  *                                              unsigned char *data,
1126  *                                              SilcUInt32 data_len);
1127  *
1128  * DESCRIPTION
1129  *
1130  *    Sends encrypted message to the `channel'.  The plaintext message is
1131  *    the `data' of `data_len' bytes in length.
1132  *
1133  *    If `key' is provided then that private channel message key is used to
1134  *    encrypt the message.  If it is not provided and the `channel' does not
1135  *    have SILC_CHANNEL_MODE_PRIVKEY set, the curent channel key is used
1136  *    instead.  If the mode is set but `key' is NULL the key that was added
1137  *    first as private channel message key will be used.
1138  *
1139  *    If the `flags' includes SILC_MESSAGE_FLAG_SIGNED the message will be
1140  *    digitally signed with the SILC key pair associated with the `conn'.
1141  *    In this case the `hash' pointer must be provided as well.
1142  *
1143  *    Returns TRUE if the message was sent, and FALSE if error occurred or
1144  *    the sending is not allowed due to channel modes (like sending is
1145  *    blocked).  This function is thread safe and private messages can be
1146  *    sent from multiple threads.
1147  *
1148  ***/
1149 SilcBool silc_client_send_channel_message(SilcClient client,
1150                                           SilcClientConnection conn,
1151                                           SilcChannelEntry channel,
1152                                           SilcChannelPrivateKey key,
1153                                           SilcMessageFlags flags,
1154                                           SilcHash hash,
1155                                           unsigned char *data,
1156                                           SilcUInt32 data_len);
1157
1158 /****f* silcclient/SilcClientAPI/silc_client_send_private_message
1159  *
1160  * SYNOPSIS
1161  *
1162  *    SilcBool silc_client_send_private_message(SilcClient client,
1163  *                                              SilcClientConnection conn,
1164  *                                              SilcClientEntry client_entry,
1165  *                                              SilcMessageFlags flags,
1166  *                                              SilcHash hash,
1167  *                                              unsigned char *data,
1168  *                                              SilcUInt32 data_len);
1169  *
1170  * DESCRIPTION
1171  *
1172  *    Sends private message to remote client. If private message key has
1173  *    not been set with this client then the message will be encrypted using
1174  *    the session keys used in `conn' connection.  If the `flags' includes
1175  *    SILC_MESSAGE_FLAG_SIGNED the message will be digitally signed with the
1176  *    SILC key pair associated with `conn'.  In this case the caller must also
1177  *    provide the `hash' pointer.
1178  *
1179  *    Returns TRUE if the message was sent, and FALSE if error occurred.
1180  *    This function is thread safe and private messages can be sent from
1181  *    multiple threads.
1182  *
1183  ***/
1184 SilcBool silc_client_send_private_message(SilcClient client,
1185                                           SilcClientConnection conn,
1186                                           SilcClientEntry client_entry,
1187                                           SilcMessageFlags flags,
1188                                           SilcHash hash,
1189                                           unsigned char *data,
1190                                           SilcUInt32 data_len);
1191
1192 /****f* silcclient/SilcClientAPI/silc_client_private_message_wait_init
1193  *
1194  * SYNOPSIS
1195  *
1196  *    SilcBool
1197  *    silc_client_private_message_wait_init(SilcClient client,
1198  *                                          SilcClientConnection conn);
1199  *
1200  * DESCRIPTION
1201  *
1202  *    Initializes private message waiting functionality for the connection
1203  *    indicated by `conn'.  Once this is called private message from remote
1204  *    connection indicated by `conn' for any client entry beloning to that
1205  *    connection may be waited for, for example in a thread.  The function
1206  *    silc_client_private_message_wait is used to block the current thread
1207  *    until a private message is received from a specified client entry.
1208  *    Return FALSE in case an internal error occurred.
1209  *
1210  ***/
1211 SilcBool silc_client_private_message_wait_init(SilcClient client,
1212                                                SilcClientConnection conn);
1213
1214 /****f* silcclient/SilcClientAPI/silc_client_private_message_wait_uninit
1215  *
1216  * SYNOPSIS
1217  *
1218  *    void
1219  *    silc_client_private_message_wait_uninit(SilcClient client,
1220  *                                            SilcClientConnection conn);
1221  *
1222  * DESCRIPTION
1223  *
1224  *    Unintializes private message waiting for connection indicated by
1225  *    `conn'.  After this call private message cannot be waited anymore.
1226  *    This call may be called from any thread.  This call will signal all
1227  *    private message waiting threads to stop waiting.
1228  *
1229  ***/
1230 void silc_client_private_message_wait_uninit(SilcClient client,
1231                                              SilcClientConnection conn);
1232
1233 /****f* silcclient/SilcClientAPI/silc_client_private_message_wait
1234  *
1235  * SYNOPSIS
1236  *
1237  *    SilcBool
1238  *    silc_client_private_message_wait(SilcClient client,
1239  *                                     SilcClientConnection conn,
1240  *                                     SilcClientEntry client_entry,
1241  *                                     SilcMessagePayload *payload);
1242  *
1243  * DESCRIPTION
1244  *
1245  *    Blocks current thread or process until a private message has been
1246  *    received from the remote client indicated by `client_entry'.  Before
1247  *    private messages can be waited the silc_client_private_message_wait_init
1248  *    must be called.  This function can be used from a thread to wait for
1249  *    private message from the specified client.  Multiple threads can be
1250  *    created to wait messages from multiple clients.  Any other private
1251  *    message received from the connection indicated by `conn' will be
1252  *    forwarded to the normal `private_message' client operation callback.
1253  *    The private messages from `client_entry' will not be delivered to the
1254  *    `private_message' client operation callback.
1255  *
1256  *    Returns TRUE and the received private message into `payload'.  The caller
1257  *    must free the returned SilcMessagePayload.  If this function returns
1258  *    FALSE the private messages cannot be waited anymore.  This happens
1259  *    when some other thread calls silc_client_private_message_wait_uninit.
1260  *    This returns FALSE also if silc_client_private_message_wait_init has
1261  *    not been called.
1262  *
1263  ***/
1264 SilcBool silc_client_private_message_wait(SilcClient client,
1265                                           SilcClientConnection conn,
1266                                           SilcClientEntry client_entry,
1267                                           SilcMessagePayload *payload);
1268
1269 /****f* silcclient/SilcClientAPI/silc_client_on_channel
1270  *
1271  * SYNOPSIS
1272  *
1273  *    SilcChannelUser silc_client_on_channel(SilcChannelEntry channel,
1274  *                                           SilcClientEntry client_entry);
1275  *
1276  * DESCRIPTION
1277  *
1278  *    Returns the SilcChannelUser entry if the `client_entry' is joined on the
1279  *    channel indicated by the `channel'. NULL if client is not joined on
1280  *    the channel.
1281  *
1282  ***/
1283 SilcChannelUser silc_client_on_channel(SilcChannelEntry channel,
1284                                        SilcClientEntry client_entry);
1285
1286
1287 /* Command management */
1288
1289 /****f* silcclient/SilcClientAPI/silc_client_command_call
1290  *
1291  * SYNOPSIS
1292  *
1293  *    SilcUInt16 silc_client_command_call(SilcClient client,
1294  *                                        SilcClientConnection conn,
1295  *                                        const char *command_line, ...);
1296  *
1297  * DESCRIPTION
1298  *
1299  *    Calls and executes the command indicated by the `command_name'.
1300  *    The `command_line' is a string which includes the command's name and
1301  *    its arguments separated with whitespaces (' ').  If `command_line'
1302  *    is non-NULL then all variable arguments are ignored by default.
1303  *
1304  *    If `command_line' is NULL, then the variable arguments define the
1305  *    command's name and its arguments.  The first variable argument must
1306  *    be the command name.  The variable argument list must be terminated
1307  *    with NULL.
1308  *
1309  *    Returns FALSE if the command is not known and TRUE after command.
1310  *    execution.  The `command' client operation callback will be called when
1311  *    the command is executed to indicate whether or not the command executed
1312  *    successfully.
1313  *
1314  *    The `command_reply' client operation callbak will be called when reply
1315  *    is received from the server to the command.  Application may also use
1316  *    the silc_client_command_pending to attach to the command reply.
1317  *    The command identifier for silc_client_command_pending function after
1318  *    this function call is conn->cmd_ident, which application may use.
1319  *
1320  * EXAMPLE
1321  *
1322  *    silc_client_command_call(client, conn, NULL, "PING", "silc.silcnet.org",
1323  *                             NULL);
1324  *    silc_client_command_call(client, conn, "PING silc.silcnet.org");
1325  *
1326  * NOTES
1327  *
1328  *    This command executes the commands implemented inside the client
1329  *    library.  These commands are designed for command line applications,
1330  *    but GUI application may call them too if needed.  Alternatively
1331  *    application may override the library and use silc_client_command_send
1332  *    function instead.
1333  *
1334  ***/
1335 SilcUInt16 silc_client_command_call(SilcClient client,
1336                                     SilcClientConnection conn,
1337                                     const char *command_line, ...);
1338
1339 /****f* silcclient/SilcClientAPI/SilcClientCommandReply
1340  *
1341  * SYNOPSIS
1342  *
1343  *    typedef SilcBool (*SilcClientCommandReply)(SilcClient client,
1344  *                                               SilcClientConnection conn,
1345  *                                               SilcCommand command,
1346  *                                               SilcStatus status,
1347  *                                               SilcStatus error,
1348  *                                               void *context,
1349  *                                               va_list ap);
1350  *
1351  * DESCRIPTION
1352  *
1353  *    The command reply callback function given as argument to functions
1354  *    silc_client_command_send and silc_client_command_pending.  This is
1355  *    called to deliver the command replies to the caller.  Each command
1356  *    reply received from the server to the `command' will be delivered
1357  *    separately to the caller by calling this callback.  The `status' will
1358  *    indicate whether there is only one reply or multiple replies.  The
1359  *    `error' will indicate if an error occurred.  The `ap' will include
1360  *    command reply arguments.  They are the same arguments as for
1361  *    `command_reply' client operation callback in SilcClientOperations.
1362  *
1363  *    If `status' is SILC_STATUS_OK only one reply was received and error
1364  *    did not occur.  If it is SILC_STATUS_LIST_START, SILC_STATUS_LIST_ITEM
1365  *    or SILC_STATUS_LIST_END, there are will be two or more replies.  The
1366  *    first reply is SILC_STATUS_LIST_START and last one SILC_STATUS_LIST_END.
1367  *
1368  *    If FALSE is returned in this function this callback will not be called
1369  *    again for `command' even if there are more comand replies.  By returning
1370  *    FALSE the caller my stop the command reply handling when needed.
1371  *
1372  ***/
1373 typedef SilcBool (*SilcClientCommandReply)(SilcClient client,
1374                                            SilcClientConnection conn,
1375                                            SilcCommand command,
1376                                            SilcStatus status,
1377                                            SilcStatus error,
1378                                            void *context,
1379                                            va_list ap);
1380
1381 /****f* silcclient/SilcClientAPI/silc_client_command_send
1382  *
1383  * SYNOPSIS
1384  *
1385  *    SilcUInt16 silc_client_command_send(SilcClient client,
1386  *                                        SilcClientConnection conn,
1387  *                                        SilcCommand command,
1388  *                                        SilcClientCommandReply reply,
1389  *                                        void *reply_context,
1390  *                                        SilcUInt32 argc, ...);
1391  *
1392  * DESCRIPTION
1393  *
1394  *    Generic function to send any command.  The arguments must be given
1395  *    already encoded into correct format and in correct order. If application
1396  *    wants to perform the commands by itself, it can do so and send the data
1397  *    directly to the server using this function.  If application is using
1398  *    the silc_client_command_call, this function is usually not used.
1399  *    Programmer should get familiar with the SILC protocol commands
1400  *    specification when using this function, as the arguments needs to
1401  *    be encoded as specified in the protocol.
1402  *
1403  *    The variable arguments are a set of { type, data, data_length },
1404  *    and the `argc' is the number of these sets.
1405  *
1406  *    The `reply' callback must be provided, and it is called when the
1407  *    command reply is received from the server.  Note that, when using this
1408  *    function the default `command_reply' client operation callback will not
1409  *    be called when reply is received.
1410  *
1411  *    Returns command identifier for this sent command.  It can be used
1412  *    to additionally attach to the command reply using the function
1413  *    silc_client_command_pending, if needed.  Returns 0 on error.
1414  *
1415  * EXAMPLE
1416  *
1417  *    silc_client_command_send(client, conn, SILC_COMMAND_WHOIS,
1418  *                             my_whois_command_reply, cmd_ctx,
1419  *                             1, 1, nickname, strlen(nickname));
1420  *
1421  ***/
1422 SilcUInt16 silc_client_command_send(SilcClient client,
1423                                     SilcClientConnection conn,
1424                                     SilcCommand command,
1425                                     SilcClientCommandReply reply,
1426                                     void *reply_context,
1427                                     SilcUInt32 argc, ...);
1428
1429 /****f* silcclient/SilcClientAPI/silc_client_command_pending
1430  *
1431  * SYNOPSIS
1432  *
1433  *    void silc_client_command_pending(SilcClientConnection conn,
1434  *                                     SilcCommand command,
1435  *                                     SilcUInt16 cmd_ident,
1436  *                                     SilcClientCommandReply reply,
1437  *                                     void *context);
1438  *
1439  * DESCRIPTION
1440  *
1441  *    This function can be used to add pending command callback to be
1442  *    called when an command reply is received to an earlier sent command.
1443  *    The `command' is the command that must be received in order for
1444  *    the pending command callback indicated by `callback' to be called.
1445  *
1446  *    The `cmd_ident' is a command identifier which was set for the earlier
1447  *    sent command.  The command reply will include the same identifier
1448  *    and pending command callback will be called when the reply is
1449  *    received with the same command identifier.  It is possible to
1450  *    add multiple pending command callbacks for same command and for
1451  *    same identifier.
1452  *
1453  *    Application may use this function to add its own command reply
1454  *    handlers if it wishes not to use the standard `command_reply'
1455  *    client operation.
1456  *
1457  *    Note also that the application is notified about the received command
1458  *    reply through the `command_reply' client operation before calling
1459  *    the `callback` pending command callback.  That is the normal
1460  *    command reply handling, and is called regardless whether pending
1461  *    command callbacks are used or not.
1462  *
1463  * EXAMPLE
1464  *
1465  *    SilcUInt16 cmd_ident;
1466  *    cmd_ident = silc_client_command_call(client, conn,
1467  *                                         "PING silc.silcnet.org");
1468  *    silc_client_command_pending(conn, SILC_COMMAND_PING, cmd_ident,
1469  *                                my_ping_handler, my_ping_context);
1470  *
1471  ***/
1472 SilcBool silc_client_command_pending(SilcClientConnection conn,
1473                                      SilcCommand command,
1474                                      SilcUInt16 cmd_ident,
1475                                      SilcClientCommandReply reply,
1476                                      void *context);
1477
1478
1479 /* Private Message key management */
1480
1481 /****f* silcclient/SilcClientAPI/silc_client_add_private_message_key
1482  *
1483  * SYNOPSIS
1484  *
1485  *    SilcBool
1486  *    silc_client_add_private_message_key(SilcClient client,
1487  *                                        SilcClientConnection conn,
1488  *                                        SilcClientEntry client_entry,
1489  *                                        const char *cipher,
1490  *                                        const char *hmac,
1491  *                                        unsigned char *key,
1492  *                                        SilcUInt32 key_len);
1493  *
1494  * DESCRIPTION
1495  *
1496  *    Adds a static private message key to the client library.  The key
1497  *    will be used to encrypt all private message between the client and
1498  *    the remote client indicated by the `client_entry'.  The `key' can
1499  *    be for example a pre-shared-key, passphrase or similar shared secret
1500  *    string.  The `cipher' and `hmac' MAY be provided but SHOULD be NULL
1501  *    to assure that the requirements of the SILC protocol are met. The
1502  *    API, however, allows to allocate any cipher and HMAC.
1503  *
1504  *    If the private message key is added to client without first receiving
1505  *    a request for it from the remote `client_entry' this function will
1506  *    send the request to `client_entry'.  Note that, the actual key is
1507  *    not sent to the network.
1508  *
1509  *    It is not necessary to set key for normal private message usage. If the
1510  *    key is not set then the private messages are encrypted using normal
1511  *    session keys.  Setting the private key, however, increases security.
1512  *
1513  *    Returns FALSE if the key is already set for the `client_entry', TRUE
1514  *    otherwise.
1515  *
1516  ***/
1517 SilcBool silc_client_add_private_message_key(SilcClient client,
1518                                              SilcClientConnection conn,
1519                                              SilcClientEntry client_entry,
1520                                              const char *cipher,
1521                                              const char *hmac,
1522                                              unsigned char *key,
1523                                              SilcUInt32 key_len);
1524
1525 /****f* silcclient/SilcClientAPI/silc_client_add_private_message_key_ske
1526  *
1527  * SYNOPSIS
1528  *
1529  *    SilcBool
1530  *    silc_client_add_private_message_key_ske(SilcClient client,
1531  *                                            SilcClientConnection conn,
1532  *                                            SilcClientEntry client_entry,
1533  *                                            const char *cipher,
1534  *                                            const char *hmac,
1535  *                                            SilcSKEKeyMaterial key);
1536  *
1537  * DESCRIPTION
1538  *
1539  *    Same as silc_client_add_private_message_key but takes the key material
1540  *    from the SKE key material structure.  This structure is received if
1541  *    the application uses the silc_client_send_key_agreement to negotiate
1542  *    the key material.  The `cipher' and `hmac' SHOULD be provided as it is
1543  *    negotiated also in the SKE protocol.
1544  *
1545  ***/
1546 SilcBool silc_client_add_private_message_key_ske(SilcClient client,
1547                                                  SilcClientConnection conn,
1548                                                  SilcClientEntry client_entry,
1549                                                  const char *cipher,
1550                                                  const char *hmac,
1551                                                  SilcSKEKeyMaterial key);
1552
1553 /****f* silcclient/SilcClientAPI/silc_client_del_private_message_key
1554  *
1555  * SYNOPSIS
1556  *
1557  *    SilcBool
1558  *    silc_client_del_private_message_key(SilcClient client,
1559  *                                        SilcClientConnection conn,
1560  *                                        SilcClientEntry client_entry);
1561  *
1562  * DESCRIPTION
1563  *
1564  *    Removes the private message from the library. The key won't be used
1565  *    after this to protect the private messages with the remote `client_entry'
1566  *    client. Returns FALSE on error, TRUE otherwise.
1567  *
1568  ***/
1569 SilcBool silc_client_del_private_message_key(SilcClient client,
1570                                              SilcClientConnection conn,
1571                                              SilcClientEntry client_entry);
1572
1573 /****f* silcclient/SilcClientAPI/silc_client_list_private_message_keys
1574  *
1575  * SYNOPSIS
1576  *
1577  *    SilcPrivateMessageKeys
1578  *    silc_client_list_private_message_keys(SilcClient client,
1579  *                                          SilcClientConnection conn,
1580  *                                          SilcUInt32 *key_count);
1581  *
1582  * DESCRIPTION
1583  *
1584  *    Returns array of set private message keys associated to the connection
1585  *    `conn'. Returns allocated SilcPrivateMessageKeys array and the array
1586  *    count to the `key_count' argument. The array must be freed by the caller
1587  *    by calling the silc_client_free_private_message_keys function. Note:
1588  *    the keys returned in the array is in raw format. It might not be desired
1589  *    to show the keys as is. The application might choose not to show the keys
1590  *    at all or to show the fingerprints of the keys.
1591  *
1592  ***/
1593 SilcPrivateMessageKeys
1594 silc_client_list_private_message_keys(SilcClient client,
1595                                       SilcClientConnection conn,
1596                                       SilcUInt32 *key_count);
1597
1598 /****f* silcclient/SilcClientAPI/silc_client_free_private_message_keys
1599  *
1600  * SYNOPSIS
1601  *
1602  *    void silc_client_free_private_message_keys(SilcPrivateMessageKeys keys,
1603  *                                               SilcUInt32 key_count);
1604  *
1605  * DESCRIPTION
1606  *
1607  *    Frees the SilcPrivateMessageKeys array returned by the function
1608  *    silc_client_list_private_message_keys.
1609  *
1610  ***/
1611 void silc_client_free_private_message_keys(SilcPrivateMessageKeys keys,
1612                                            SilcUInt32 key_count);
1613
1614
1615 /* Channel private key management */
1616
1617 /****f* silcclient/SilcClientAPI/silc_client_add_channel_private_key
1618  *
1619  * SYNOPSIS
1620  *
1621  *    SilcBool
1622  *    silc_client_add_channel_private_key(SilcClient client,
1623  *                                        SilcClientConnection conn,
1624  *                                        SilcChannelEntry channel,
1625  *                                        const char *name,
1626  *                                        char *cipher,
1627  *                                        char *hmac,
1628  *                                        unsigned char *key,
1629  *                                        SilcUInt32 key_len,
1630  *                                        SilcChannelPrivateKey *ret_key);
1631  *
1632  * DESCRIPTION
1633  *
1634  *    Adds private key for channel. When channel has private key then the
1635  *    messages are encrypted using that key. All clients on the channel
1636  *    must also know the key in order to decrypt the messages. However,
1637  *    it is possible to have several private keys per one channel. In this
1638  *    case only some of the clients on the channel may know the one key
1639  *    and only some the other key.  The `name' can be application given
1640  *    name for the key.  This returns the created key to the 'ret_key'
1641  *    pointer if it is non-NULL;
1642  *
1643  *    If `cipher' and/or `hmac' is NULL then default values will be used
1644  *    (aes-256-cbc for cipher and hmac-sha1-96 for hmac).
1645  *
1646  *    The private key for channel is optional. If it is not set then the
1647  *    channel messages are encrypted using the channel key generated by the
1648  *    server. However, setting the private key (or keys) for the channel
1649  *    significantly adds security. If more than one key is set the library
1650  *    will automatically try all keys at the message decryption phase. Note:
1651  *    setting many keys slows down the decryption phase as all keys has to
1652  *    be tried in order to find the correct decryption key. However, setting
1653  *    a few keys does not have big impact to the decryption performace.
1654  *
1655  * NOTES
1656  *
1657  *    NOTE: This is entirely local setting. The key set using this function
1658  *    is not sent to the network at any phase.
1659  *
1660  *    NOTE: If the key material was originated by the SKE protocol (using
1661  *    silc_client_send_key_agreement) then the `key' MUST be the
1662  *    key->send_enc_key as this is dictated by the SILC protocol. However,
1663  *    currently it is not expected that the SKE key material would be used
1664  *    as channel private key. However, this API allows it.
1665  *
1666  ***/
1667 SilcBool silc_client_add_channel_private_key(SilcClient client,
1668                                              SilcClientConnection conn,
1669                                              SilcChannelEntry channel,
1670                                              const char *name,
1671                                              char *cipher,
1672                                              char *hmac,
1673                                              unsigned char *key,
1674                                              SilcUInt32 key_len,
1675                                              SilcChannelPrivateKey *ret_key);
1676
1677 /****f* silcclient/SilcClientAPI/silc_client_del_channel_private_keys
1678  *
1679  * SYNOPSIS
1680  *
1681  *    SilcBool silc_client_del_channel_private_keys(SilcClient client,
1682  *                                                  SilcClientConnection conn,
1683  *                                                  SilcChannelEntry channel);
1684  *
1685  * DESCRIPTION
1686  *
1687  *    Removes all private keys from the `channel'. The old channel key is used
1688  *    after calling this to protect the channel messages. Returns FALSE on
1689  *    on error, TRUE otherwise.
1690  *
1691  ***/
1692 SilcBool silc_client_del_channel_private_keys(SilcClient client,
1693                                               SilcClientConnection conn,
1694                                               SilcChannelEntry channel);
1695
1696 /****f* silcclient/SilcClientAPI/silc_client_del_channel_private_key
1697  *
1698  * SYNOPSIS
1699  *
1700  *    SilcBool silc_client_del_channel_private_key(SilcClient client,
1701  *                                                 SilcClientConnection conn,
1702  *                                                 SilcChannelEntry channel,
1703  *                                                 SilcChannelPrivateKey key);
1704  *
1705  * DESCRIPTION
1706  *
1707  *    Removes and frees private key `key' from the channel `channel'.
1708  *    The `key' is retrieved by calling the function
1709  *    silc_client_list_channel_private_keys. The key is not used after
1710  *    this. If the key was last private key then the old channel key is
1711  *    used hereafter to protect the channel messages. This returns FALSE
1712  *    on error, TRUE otherwise.
1713  *
1714  ***/
1715 SilcBool silc_client_del_channel_private_key(SilcClient client,
1716                                              SilcClientConnection conn,
1717                                              SilcChannelEntry channel,
1718                                              SilcChannelPrivateKey key);
1719
1720 /****f* silcclient/SilcClientAPI/silc_client_list_channel_private_keys
1721  *
1722  * SYNOPSIS
1723  *
1724  *    SilcDList
1725  *    silc_client_list_channel_private_keys(SilcClient client,
1726  *                                          SilcClientConnection conn,
1727  *                                          SilcChannelEntry channel);
1728  *
1729  * DESCRIPTION
1730  *
1731  *    Returns list of private keys associated to the `channel'.  The caller
1732  *    must free the returned list with silc_dlist_uninit.  The pointers in
1733  *    the list may be used to delete the specific key by giving the pointer
1734  *    as argument to the function silc_client_del_channel_private_key.  Each
1735  *    entry in the list is SilcChannelPrivateKey.
1736  *
1737  ***/
1738 SilcDList silc_client_list_channel_private_keys(SilcClient client,
1739                                                 SilcClientConnection conn,
1740                                                 SilcChannelEntry channel);
1741
1742 /****f* silcclient/SilcClientAPI/silc_client_current_channel_private_key
1743  *
1744  * SYNOPSIS
1745  *
1746  *    void silc_client_current_channel_private_key(SilcClient client,
1747  *                                                 SilcClientConnection conn,
1748  *                                                 SilcChannelEntry channel,
1749  *                                                 SilcChannelPrivateKey key);
1750  *
1751  * DESCRIPTION
1752  *
1753  *    Sets the `key' to be used as current channel private key on the
1754  *    `channel'.  Packet sent after calling this function will be secured
1755  *    with `key'.
1756  *
1757  ***/
1758 void silc_client_current_channel_private_key(SilcClient client,
1759                                              SilcClientConnection conn,
1760                                              SilcChannelEntry channel,
1761                                              SilcChannelPrivateKey key);
1762
1763
1764 /* Key Agreement routines */
1765
1766 /****f* silcclient/SilcClientAPI/silc_client_send_key_agreement
1767  *
1768  * SYNOPSIS
1769  *
1770  *    void silc_client_send_key_agreement(SilcClient client,
1771  *                                        SilcClientConnection conn,
1772  *                                        SilcClientEntry client_entry,
1773  *                                        SilcClientConnectionParams *params,
1774  *                                        SilcPublicKey public_key,
1775  *                                        SilcPrivateKey private_key,
1776  *                                        SilcKeyAgreementCallback completion,
1777  *                                        void *context);
1778  *
1779  * DESCRIPTION
1780  *
1781  *    Sends key agreement request to the remote client indicated by the
1782  *    `client_entry'.
1783  *
1784  *    If `params' is non-NULL and it has the `local_ip' and `local_port' set
1785  *    the caller will provide the connection endpoint for the key agreement
1786  *    connection.  The `bind_ip' can be used to bind to that IP instead of
1787  *    `local_ip'.  If the `udp' is set to TRUE the connection will be UDP
1788  *    instead of TCP.  Caller may also set the `repository', `verify_notfound'
1789  *    and `timeout_secs' fields in `params'.  Other fields are ignored.
1790  *    If `params' is NULL, then the `client_entry' is expected to provide
1791  *    the connection endpoint for us.  It is recommended the `timeout_secs'
1792  *    is specified in case the remote client does not reply anything to
1793  *    the request.
1794  *
1795  *    The `public_key' and `private_key' is our identity in the key agreement.
1796  *
1797  *    In case we do not provide the connection endpoint, we will receive
1798  *    the `key_agreement' client operation when the remote send its own
1799  *    key agreement request packet.  We may then there start the key
1800  *    agreement with silc_client_perform_key_agreement.  If we provided the
1801  *    the connection endpoint, the client operation will not be called.
1802  *
1803  *    There can be only one active key agreement for `client_entry'.  Old
1804  *    key agreement may be aborted by calling silc_client_abort_key_agreement.
1805  *
1806  * EXAMPLE
1807  *
1808  *    // Send key agreement request (we don't provide connection endpoint)
1809  *    silc_client_send_key_agreement(client, conn, remote_client,
1810  *                                   NULL, public_key, private_key,
1811  *                                   my_keyagr_completion, my_context);
1812  *
1813  *    // Another example where we provide connection endpoint (TCP).
1814  *    SilcClientConnectionParams params;
1815  *    memset(&params, 0, sizeof(params));
1816  *    params.local_ip = local_ip;
1817  *    params.local_port = local_port;
1818  *    params.timeout_secs = 60;
1819  *    silc_client_send_key_agreement(client, conn, remote_client,
1820  *                                   &params, public_key, private_key,
1821  *                                   my_keyagr_completion, my_context);
1822  *
1823  ***/
1824 void silc_client_send_key_agreement(SilcClient client,
1825                                     SilcClientConnection conn,
1826                                     SilcClientEntry client_entry,
1827                                     SilcClientConnectionParams *params,
1828                                     SilcPublicKey public_key,
1829                                     SilcPrivateKey private_key,
1830                                     SilcKeyAgreementCallback completion,
1831                                     void *context);
1832
1833 /****f* silcclient/SilcClientAPI/silc_client_perform_key_agreement
1834  *
1835  * SYNOPSIS
1836  *
1837  *    void
1838  *    silc_client_perform_key_agreement(SilcClient client,
1839  *                                      SilcClientConnection conn,
1840  *                                      SilcClientEntry client_entry,
1841  *                                      SilcClientConnectionParams *params,
1842  *                                      SilcPublicKey public_key,
1843  *                                      SilcPrivateKey private_key,
1844  *                                      char *hostname, int port,
1845  *                                      SilcKeyAgreementCallback completion,
1846  *                                      void *context);
1847  *
1848  * DESCRIPTION
1849  *
1850  *    Performs the key agreement protocol.  Application may use this to
1851  *    initiate the key agreement protocol.  Usually this is called after
1852  *    receiving the `key_agreement' client operation.
1853  *
1854  *    The `hostname' is the remote hostname (or IP address) and the `port'
1855  *    is the remote port.  The `completion' callback with the `context' will
1856  *    be called after the key agreement protocol.
1857  *
1858  *    The `params' is connection parameters and it may be used to define
1859  *    the key agreement connection related parameters.  It may be NULL.
1860  *
1861  ***/
1862 void silc_client_perform_key_agreement(SilcClient client,
1863                                        SilcClientConnection conn,
1864                                        SilcClientEntry client_entry,
1865                                        SilcClientConnectionParams *params,
1866                                        SilcPublicKey public_key,
1867                                        SilcPrivateKey private_key,
1868                                        char *hostname, int port,
1869                                        SilcKeyAgreementCallback completion,
1870                                        void *context);
1871
1872 /****f* silcclient/SilcClientAPI/silc_client_perform_key_agreement_stream
1873  *
1874  * SYNOPSIS
1875  *
1876  *    void
1877  *    silc_client_perform_key_agreement_stream(
1878  *                                      SilcClient client,
1879  *                                      SilcClientConnection conn,
1880  *                                      SilcClientEntry client_entry,
1881  *                                      SilcClientConnectionParams *params,
1882  *                                      SilcPublicKey public_key,
1883  *                                      SilcPrivateKey private_key,
1884  *                                      SilcStream stream,
1885  *                                      SilcKeyAgreementCallback completion,
1886  *                                      void *context);
1887  *
1888  * DESCRIPTION
1889  *
1890  *    Same as silc_client_perform_key_agreement but the caller has created
1891  *    the connection to remote client.  The `stream' is the created
1892  *    connection.
1893  *
1894  ***/
1895 void
1896 silc_client_perform_key_agreement_stream(SilcClient client,
1897                                          SilcClientConnection conn,
1898                                          SilcClientEntry client_entry,
1899                                          SilcClientConnectionParams *params,
1900                                          SilcPublicKey public_key,
1901                                          SilcPrivateKey private_key,
1902                                          SilcStream stream,
1903                                          SilcKeyAgreementCallback completion,
1904                                          void *context);
1905
1906 /****f* silcclient/SilcClientAPI/silc_client_abort_key_agreement
1907  *
1908  * SYNOPSIS
1909  *
1910  *    void silc_client_abort_key_agreement(SilcClient client,
1911  *                                         SilcClientConnection conn,
1912  *                                         SilcClientEntry client_entry);
1913  *
1914  * DESCRIPTION
1915  *
1916  *    This function can be called to unbind the hostname and the port for
1917  *    the key agreement protocol. However, this function has effect only
1918  *    before the key agreement protocol has been performed. After it has
1919  *    been performed the library will automatically unbind the port. The
1920  *    `client_entry' is the client to which we sent the key agreement
1921  *    request.  The key agreement completion callback will be called
1922  *    with SILC_KEY_AGREEMENT_ABORTED status.
1923  *
1924  ***/
1925 void silc_client_abort_key_agreement(SilcClient client,
1926                                      SilcClientConnection conn,
1927                                      SilcClientEntry client_entry);
1928
1929
1930 /* Misc functions */
1931
1932 /****f* silcclient/SilcClientAPI/silc_client_set_away_message
1933  *
1934  * SYNOPSIS
1935  *
1936  *    SilcBool silc_client_set_away_message(SilcClient client,
1937  *                                          SilcClientConnection conn,
1938  *                                          char *message);
1939  *
1940  * DESCRIPTION
1941  *
1942  *    Sets away `message'.  The away message may be set when the client's
1943  *    mode is changed to SILC_UMODE_GONE and the client whishes to reply
1944  *    to anyone who sends private message.  The `message' will be sent
1945  *    automatically back to the the client who send private message.  If
1946  *    away message is already set this replaces the old message with the
1947  *    new one.  If `message' is NULL the old away message is removed.
1948  *    The sender may freely free the memory of the `message'.  Returns
1949  *    FALSE on error.
1950  *
1951  ***/
1952 SilcBool silc_client_set_away_message(SilcClient client,
1953                                       SilcClientConnection conn,
1954                                       char *message);
1955
1956 /****d* silcclient/SilcClientAPI/SilcClientMonitorStatus
1957  *
1958  * NAME
1959  *
1960  *    typedef enum { ... } SilcClientMonitorStatus;
1961  *
1962  * DESCRIPTION
1963  *
1964  *    File transmission session status types.  These will indicate
1965  *    the status of the file transmission session.
1966  *
1967  *    The SILC_CLIENT_FILE_MONITOR_KEY_AGREEMENT is called when session
1968  *    is key exchange phase.
1969  *
1970  *    The SILC_CLIENT_FILE_MONITOR_SEND is called when data is being sent
1971  *    to remote client.
1972  *
1973  *    The SILC_CLIENT_FILE_MONITOR_RECEIVE is called when data is being
1974  *    recieved from remote client.
1975  *
1976  *    The SILC_CLIENT_FILE_MONITOR_CLOSED will be called when the user
1977  *    issues silc_client_file_close.  If needed, it may be ignored in the
1978  *    monitor callback.
1979  *
1980  *    The SILC_CLIENT_FILE_MONITOR_DISCONNECT will be called if remote
1981  *    disconnects the session connection.  The silc_client_file_close must
1982  *    be called when this status is received.  The session is over when
1983  *    this is received.
1984  *
1985  *    The SILC_CLIENLT_FILE_MONITOR_ERROR is called in case some error
1986  *    occured.  The SilcClientFileError will indicate more detailed error
1987  *    condition.  The silc_client_file_close must be called when this status
1988  *    is received.  The session is over when this is received.
1989  *
1990  * SOURCE
1991  */
1992 typedef enum {
1993   SILC_CLIENT_FILE_MONITOR_KEY_AGREEMENT,    /* In key agreemenet phase */
1994   SILC_CLIENT_FILE_MONITOR_SEND,             /* Sending file */
1995   SILC_CLIENT_FILE_MONITOR_RECEIVE,          /* Receiving file */
1996   SILC_CLIENT_FILE_MONITOR_GET,              /* Unsupported */
1997   SILC_CLIENT_FILE_MONITOR_PUT,              /* Unsupported */
1998   SILC_CLIENT_FILE_MONITOR_CLOSED,           /* Session closed */
1999   SILC_CLIENT_FILE_MONITOR_DISCONNECT,       /* Session disconnected */
2000   SILC_CLIENT_FILE_MONITOR_ERROR,            /* Error during session */
2001 } SilcClientMonitorStatus;
2002 /***/
2003
2004 /****d* silcclient/SilcClientAPI/SilcClientFileError
2005  *
2006  * NAME
2007  *
2008  *    typedef enum { ... } SilcClientFileError;
2009  *
2010  * DESCRIPTION
2011  *
2012  *    File transmission error types.  These types are returned by
2013  *    some of the file transmission functions, and by the monitor
2014  *    callback to indicate error.
2015  *
2016  * SOURCE
2017  */
2018 typedef enum {
2019   SILC_CLIENT_FILE_OK,
2020   SILC_CLIENT_FILE_ERROR,                    /* Generic error */
2021   SILC_CLIENT_FILE_UNKNOWN_SESSION,          /* Unknown session ID */
2022   SILC_CLIENT_FILE_ALREADY_STARTED,          /* Session already started */
2023   SILC_CLIENT_FILE_NO_SUCH_FILE,             /* No such file */
2024   SILC_CLIENT_FILE_PERMISSION_DENIED,        /* Permission denied */
2025   SILC_CLIENT_FILE_KEY_AGREEMENT_FAILED,     /* Key exchange failed */
2026   SILC_CLIENT_FILE_CONNECT_FAILED,           /* Error during connecting */
2027   SILC_CLIENT_FILE_TIMEOUT,                  /* Connecting timedout */
2028   SILC_CLIENT_FILE_NO_MEMORY,                /* System out of memory */
2029 } SilcClientFileError;
2030 /***/
2031
2032 /****f* silcclient/SilcClientAPI/SilcClientFileMonitor
2033  *
2034  * SYNOPSIS
2035  *
2036  *    typedef void (*SilcClientFileMonitor)(SilcClient client,
2037  *                                          SilcClientConnection conn,
2038  *                                          SilcClientMonitorStatus status,
2039  *                                          SilcClientFileError error,
2040  *                                          SilcUInt64 offset,
2041  *                                          SilcUInt64 filesize,
2042  *                                          SilcClientEntry client_entry,
2043  *                                          SilcUInt32 session_id,
2044  *                                          const char *filepath,
2045  *                                          void *context);
2046  *
2047  * DESCRIPTION
2048  *
2049  *    Monitor callback that is called during the file transmission to
2050  *    monitor the transmission process.  The `status' indicates the current
2051  *    monitoring process.  The `error' will indicate the error type
2052  *    if `status' is SILC_CLIENT_FILE_MONITOR_ERROR.  The `offset' is the
2053  *    currently transmitted amount of total `filesize'.  The `client_entry'
2054  *    indicates the remote client, and the transmission session ID is the
2055  *    `session_id'.  The filename being transmitted is indicated by the
2056  *    `filepath'.  The `conn' is NULL if the connection to remote client
2057  *    does not exist yet.
2058  *
2059  ***/
2060 typedef void (*SilcClientFileMonitor)(SilcClient client,
2061                                       SilcClientConnection conn,
2062                                       SilcClientMonitorStatus status,
2063                                       SilcClientFileError error,
2064                                       SilcUInt64 offset,
2065                                       SilcUInt64 filesize,
2066                                       SilcClientEntry client_entry,
2067                                       SilcUInt32 session_id,
2068                                       const char *filepath,
2069                                       void *context);
2070
2071 /****f* silcclient/SilcClientAPI/SilcClientFileName
2072  *
2073  * SYNOPSIS
2074  *
2075  *    typedef void (*SilcClientFileName)(const char *filepath,
2076  *                                       void *context);
2077  *
2078  * DESCRIPTION
2079  *
2080  *    Completion callback for the SilcClientFileAskName callback function.
2081  *    Application calls this to deliver the filepath and filename where
2082  *    the downloaded file is to be saved.
2083  *
2084  ***/
2085 typedef void (*SilcClientFileName)(const char *filepath,
2086                                    void *context);
2087
2088 /****f* silcclient/SilcClientAPI/SilcClientFileAskName
2089  *
2090  * SYNOPSIS
2091  *
2092  *    typedef void (*SilcClientFileAskName)(SilcClient client,
2093  *                                          SilcClientConnection conn,
2094  *                                          SilcUInt32 session_id,
2095  *                                          const char *remote_filename,
2096  *                                          SilcClientFileName completion,
2097  *                                          void *completion_context,
2098  *                                          void *context);
2099  *
2100  * DESCRIPTION
2101  *
2102  *    File name asking callback that is called if it is given to the
2103  *    silc_client_file_receive and the path given to that as argument was
2104  *    NULL.  The library calls this to ask the filename and filepath to
2105  *    where the file is to be saved.  The 'remote_filename' is the file
2106  *    that is being downloaded.  Application must call the 'completion'
2107  *    with 'completion_context' to continue with the file downloading.
2108  *    It is not mandatory to provide this to the silc_client_file_receive.
2109  *
2110  ***/
2111 typedef void (*SilcClientFileAskName)(SilcClient client,
2112                                       SilcClientConnection conn,
2113                                       SilcUInt32 session_id,
2114                                       const char *remote_filename,
2115                                       SilcClientFileName completion,
2116                                       void *completion_context,
2117                                       void *context);
2118
2119 /****f* silcclient/SilcClientAPI/silc_client_file_send
2120  *
2121  * SYNOPSIS
2122  *
2123  *    SilcClientFileError
2124  *    silc_client_file_send(SilcClient client,
2125  *                          SilcClientConnection conn,
2126  *                          SilcClientEntry client_entry,
2127  *                          SilcClientConnectionParams *params,
2128  *                          SilcPublicKey public_key,
2129  *                          SilcPrivateKey private_key,
2130  *                          SilcClientFileMonitor monitor,
2131  *                          void *monitor_context,
2132  *                          const char *filepath,
2133  *                          SilcUInt32 *session_id);
2134  *
2135  * DESCRIPTION
2136  *
2137  *    Sends a file indicated by the `filepath' to the remote client
2138  *    indicated by the `client_entry'.  This will negotiate a secret key
2139  *    with the remote client before actually starting the transmission of
2140  *    the file.  The `monitor' callback will be called to monitor the
2141  *    transmission of the file.
2142  *
2143  *    This returns a file session ID for the file transmission to the
2144  *    `session_id' pointer.  It can be used to close the session (and
2145  *    abort the file transmission) by calling the silc_client_file_close
2146  *    function.  The session ID is also returned in the `monitor' callback.
2147  *
2148  *    If `params' is non-NULL and it has the `local_ip' and `local_port' set
2149  *    the caller will provide the connection endpoint for the key agreement
2150  *    connection.  The `bind_ip' can be used to bind to that IP instead of
2151  *    `local_ip'.  Caller may also set the `repository', `verify_notfound'
2152  *    and `timeout_secs' fields in `params'.  Other fields are ignored.
2153  *    If `params' is NULL, then the `client_entry' is expected to provide
2154  *    the connection endpoint for us.  It is recommended the `timeout_secs'
2155  *    is specified in case the remote client does not reply anything to
2156  *    the request.
2157  *
2158  *    The `public_key' and `private_key' is our identity in the key agreement.
2159  *
2160  *    If error will occur during the file transfer process the error status
2161  *    will be returned in the monitor callback.  In this case the application
2162  *    must call silc_client_file_close to close the session.
2163  *
2164  ***/
2165 SilcClientFileError
2166 silc_client_file_send(SilcClient client,
2167                       SilcClientConnection conn,
2168                       SilcClientEntry client_entry,
2169                       SilcClientConnectionParams *params,
2170                       SilcPublicKey public_key,
2171                       SilcPrivateKey private_key,
2172                       SilcClientFileMonitor monitor,
2173                       void *monitor_context,
2174                       const char *filepath,
2175                       SilcUInt32 *session_id);
2176
2177 /****f* silcclient/SilcClientAPI/silc_client_file_receive
2178  *
2179  * SYNOPSIS
2180  *
2181  *    SilcClientFileError
2182  *    silc_client_file_receive(SilcClient client,
2183  *                             SilcClientConnection conn,
2184  *                             SilcClientConnectionParams *params,
2185  *                             SilcPublicKey public_key,
2186  *                             SilcPrivateKey private_key,
2187  *                             SilcClientFileMonitor monitor,
2188  *                             void *monitor_context,
2189  *                             const char *path,
2190  *                             SilcUInt32 session_id,
2191  *                             SilcClientFileAskName ask_name,
2192  *                             void *ask_name_context);
2193  *
2194  * DESCRIPTION
2195  *
2196  *    Receives a file from a client indicated by the `client_entry'.  The
2197  *    `session_id' indicates the file transmission session and it has been
2198  *    received in the `ftp' client operation callback.  This will actually
2199  *    perform the key agreement protocol with the remote client before
2200  *    actually starting the file transmission.  The `monitor' callback
2201  *    will be called to monitor the transmission.  If `path' is non-NULL
2202  *    the file will be saved into that directory.  If NULL the file is
2203  *    saved in the current working directory, unless the 'ask_name'
2204  *    callback is non-NULL.  In this case the callback is called to ask
2205  *    the path and filename from application.
2206  *
2207  *    The `params' is the connection related parameters.  If the remote client
2208  *    provided connection point the `params' will be used when creating
2209  *    connection to the remote client.  If remote client did not provide
2210  *    connection point the `params' is used to provide connection point
2211  *    locally for the remote client.  See silc_client_file_send for more
2212  *    information on providing connection point for remote client.
2213  *
2214  *    The `public_key' and `private_key' is our identity in the key agreement.
2215  *
2216  *    If error will occur during the file transfer process the error status
2217  *    will be returned in the monitor callback.  In this case the application
2218  *    must call silc_client_file_close to close the session.
2219  *
2220  ***/
2221 SilcClientFileError
2222 silc_client_file_receive(SilcClient client,
2223                          SilcClientConnection conn,
2224                          SilcClientConnectionParams *params,
2225                          SilcPublicKey public_key,
2226                          SilcPrivateKey private_key,
2227                          SilcClientFileMonitor monitor,
2228                          void *monitor_context,
2229                          const char *path,
2230                          SilcUInt32 session_id,
2231                          SilcClientFileAskName ask_name,
2232                          void *ask_name_context);
2233
2234 /****f* silcclient/SilcClientAPI/silc_client_file_close
2235  *
2236  * SYNOPSIS
2237  *
2238  *    SilcClientFileError silc_client_file_close(SilcClient client,
2239  *                                               SilcClientConnection conn,
2240  *                                               SilcUInt32 session_id);
2241  *
2242  * DESCRIPTION
2243  *
2244  *    Closes file transmission session indicated by the `session_id'.
2245  *    If file transmission is being conducted it will be aborted
2246  *    automatically. This function is also used to close the session
2247  *    after successful file transmission. This function can be used
2248  *    also to reject incoming file transmission request.  If the
2249  *    session was already started and the monitor callback was set
2250  *    the monitor callback will be called with the monitor status
2251  *    SILC_CLIENT_FILE_MONITOR_CLOSED.
2252  *
2253  ***/
2254 SilcClientFileError silc_client_file_close(SilcClient client,
2255                                            SilcClientConnection conn,
2256                                            SilcUInt32 session_id);
2257
2258 /****f* silcclient/SilcClientAPI/silc_client_attribute_add
2259  *
2260  * SYNOPSIS
2261  *
2262  *    SilcAttributePayload
2263  *    silc_client_attribute_add(SilcClient client,
2264  *                              SilcClientConnection conn,
2265  *                              SilcAttribute attribute,
2266  *                              void *object,
2267  *                              SilcUInt32 object_size);
2268  *
2269  * DESCRIPTION
2270  *
2271  *    Add new Requsted Attribute for WHOIS command to the client library.
2272  *    The `attribute' object indicated by `object' is added and allocated
2273  *    SilcAttributePayload is returned.  The `object' must be of correct
2274  *    type and of correct size.  See the SilcAttribute for object types
2275  *    for different attributes.  You may also get all added attributes
2276  *    from the client with silc_client_attributes_get function.
2277  *
2278  *    Requested Attributes are different personal information about the
2279  *    user, status information and other information which other users
2280  *    may query with WHOIS command.  Application may set these so that
2281  *    if someone sends WHOIS query these attributes will be replied back
2282  *    to the sender.  The library always puts the public key to the
2283  *    Requested Attributes, but if application wishes to add additional
2284  *    public keys (or certificates) it can be done with this interface.
2285  *    Library also always computes digital signature of the attributes
2286  *    automatically, so application does not need to do that.
2287  *
2288  ***/
2289 SilcAttributePayload silc_client_attribute_add(SilcClient client,
2290                                                SilcClientConnection conn,
2291                                                SilcAttribute attribute,
2292                                                void *object,
2293                                                SilcUInt32 object_size);
2294
2295 /****f* silcclient/SilcClientAPI/silc_client_attribute_del
2296  *
2297  * SYNOPSIS
2298  *
2299  *    SilcBool silc_client_attribute_del(SilcClient client,
2300  *                                   SilcClientConnection conn,
2301  *                                   SilcAttribute attribute,
2302  *                                   SilcAttributePayload attr);
2303  *
2304  * DESCRIPTION
2305  *
2306  *    Delete a Requested Attribute from the client.  If the `attribute'
2307  *    is non-zero then all attributes of that type are deleted and the
2308  *    `attr' is ignored.  If `attr' is non-NULL then that specific
2309  *    attribute is deleted and `attribute' is ignored.
2310  *
2311  *    You may get all added attributes with the function
2312  *    silc_client_attributes_get and to get the SilcAttributePayload.
2313  *    This function Returns TRUE if the attribute was found and deleted.
2314  *
2315  ***/
2316 SilcBool silc_client_attribute_del(SilcClient client,
2317                                    SilcClientConnection conn,
2318                                    SilcAttribute attribute,
2319                                    SilcAttributePayload attr);
2320
2321 /****f* silcclient/SilcClientAPI/silc_client_attributes_get
2322  *
2323  * SYNOPSIS
2324  *
2325  *    const SilcHashTable
2326  *    silc_client_attributes_get(SilcClient client,
2327  *                               SilcClientConnection conn);
2328  *
2329  * DESCRIPTION
2330  *
2331  *    Returns pointer to the SilcHashTable which includes all the added
2332  *    Requested Attributes.  The caller must not free the hash table.
2333  *    The caller may use SilcHashTableList and silc_hash_table_list to
2334  *    traverse the table.  Each entry in the hash table is one added
2335  *    SilcAttributePayload.  It is possible to delete a attribute
2336  *    payload while traversing the table.
2337  *
2338  ***/
2339 SilcHashTable silc_client_attributes_get(SilcClient client,
2340                                          SilcClientConnection conn);
2341
2342 /****f* silcclient/SilcClientAPI/silc_client_attributes_request
2343  *
2344  * SYNOPSIS
2345  *
2346  *    SilcBuffer silc_client_attributes_request(SilcAttribute attribute, ...);
2347  *
2348  * DESCRIPTION
2349  *
2350  *    Constructs a Requested Attributes buffer. If the `attribute' is zero (0)
2351  *    then all attributes are requested.  Alternatively, `attribute' and
2352  *    all variable arguments can each be requested attribute.  In this case
2353  *    the last must be set to zero (0) to complete the variable list of
2354  *    requested attributes.  See SilcAttribute for all attributes.
2355  *    You can give the returned buffer as argument to for example
2356  *    silc_client_get_client_by_id_resolve function.
2357  *
2358  * EXAMPLE
2359  *
2360  *    Request all attributes
2361  *    buffer = silc_client_attributes_request(0);
2362  *
2363  *    Request only the following attributes
2364  *    buffer = silc_client_attributes_request(SILC_ATTRIBUTE_USER_INFO,
2365  *                                            SILC_ATTRIBUTE_SERVICE,
2366  *                                            SILC_ATTRIBUTE_MOOD, 0);
2367  *
2368  ***/
2369 SilcBuffer silc_client_attributes_request(SilcAttribute attribute, ...);
2370
2371 /****f* silcclient/SilcClientAPI/silc_client_nickname_format
2372  *
2373  * SYNOPSIS
2374  *
2375  *    SilcClientEntry
2376  *    silc_client_nickname_format(SilcClient client,
2377  *                                SilcClientConnection conn,
2378  *                                SilcClientEntry client_entry,
2379  *                                SilcBool priority);
2380  *
2381  * DESCRIPTION
2382  *
2383  *    Formats the nickname of `client_entry' according to the nickname
2384  *    formatting rules set in SilcClientParams.  If the `priority' is TRUE
2385  *    then the `client_entry' will always get the unformatted nickname.
2386  *    If FALSE and there are more than one same nicknames in the client
2387  *    the nickname will be formatted.
2388  *
2389  *    This returns NULL on error.  Otherwise, the client entry that was
2390  *    formatted is returned.  If `priority' is FALSE this always returns
2391  *    the `client_entry'.  If it is TRUE, this may return the client entry
2392  *    that was formatted after giving the `client_entry' the unformatted
2393  *    nickname.
2394  *
2395  *    Usually application does not need to call this function, as the library
2396  *    automatically formats nicknames.  However, if application wants to
2397  *    for example force the `client_entry' to always have the unformatted
2398  *    nickname it may call this function to do so.
2399  *
2400  ***/
2401 SilcClientEntry silc_client_nickname_format(SilcClient client,
2402                                             SilcClientConnection conn,
2403                                             SilcClientEntry client_entry,
2404                                             SilcBool priority);
2405
2406 /****f* silcclient/SilcClientAPI/silc_client_nickname_parse
2407  *
2408  * SYNOPSIS
2409  *
2410  *    SilcBool silc_client_nickname_parse(SilcClient client,
2411  *                                        SilcClientConnection conn,
2412  *                                        char *nickname,
2413  *                                        char **ret_nick);
2414  *
2415  * DESCRIPTION
2416  *
2417  *    Parses the `nickname' according to the format string given in the
2418  *    SilcClientParams.  Returns the parsed nickname into the `ret_nick'.
2419  *    The caller must free the returned pointer.  Returns FALSE if error
2420  *    occurred during parsing.  Returns TRUE if the nickname was parsed,
2421  *    it was not formatted or if the format string has not been specified
2422  *    in SilcClientParams.
2423  *
2424  ***/
2425 SilcBool silc_client_nickname_parse(SilcClient client,
2426                                     SilcClientConnection conn,
2427                                     char *nickname,
2428                                     char **ret_nick);
2429
2430 #ifdef __cplusplus
2431 }
2432 #endif
2433
2434 #endif /* SILCCLIENT_H */