Allows formatted nicknames as input for silc_client_get_clients
[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 is called after the client is running after
758  *    silc_client_run or silc_client_run_one has been called.  Application
759  *    may start using the Client library API after that.  Setting the
760  *    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.
1053  *
1054  *    Returns SilcAsyncOperation which can be used to cancel the connecting,
1055  *    or NULL on error.  Note that the returned pointer becomes invalid
1056  *    after the `callback' is called.
1057  *
1058  * EXAMPLE
1059  *
1060  *    int sock;
1061  *
1062  *    // Create remote connection stream.  Resolve hostname and IP also.
1063  *    sock = create_connection(remote_host, port);
1064  *    silc_socket_tcp_stream_create(sock, TRUE, FALSE, schedule,
1065  *                                  stream_create_cb, app);
1066  *
1067  *    // Stream callback delivers our new SilcStream context
1068  *    void stream_create_cb(SilcSocketStreamStatus status, SilcStream stream,
1069  *                          void *context)
1070  *    {
1071  *      ...
1072  *      if (status != SILC_SOCKET_OK)
1073  *        error(status);
1074  *
1075  *      // Start key exchange
1076  *      silc_client_key_exchange(client, NULL, public_key, private_key,
1077  *                               stream, SILC_CONN_SERVER, connection_cb, app);
1078  *      ...
1079  *    }
1080  *
1081  ***/
1082 SilcAsyncOperation
1083 silc_client_key_exchange(SilcClient client,
1084                          SilcClientConnectionParams *params,
1085                          SilcPublicKey public_key,
1086                          SilcPrivateKey private_key,
1087                          SilcStream stream,
1088                          SilcConnectionType conn_type,
1089                          SilcClientConnectCallback callback,
1090                          void *context);
1091
1092 /****f* silcclient/SilcClientAPI/silc_client_close_connection
1093  *
1094  * SYNOPSIS
1095  *
1096  *    void silc_client_close_connection(SilcClient client,
1097  *                                      SilcClientConnection conn);
1098  *
1099  * DESCRIPTION
1100  *
1101  *    Closes the remote connection `conn'.  The `conn' will become invalid
1102  *    after this call.  Usually this function is called only when explicitly
1103  *    closing connection for example in case of error, or when the remote
1104  *    connection was created by the application or when the remote is client
1105  *    connection.  Server connections are usually closed by sending QUIT
1106  *    command to the server.  However, this call may also be used.
1107  *
1108  ***/
1109 void silc_client_close_connection(SilcClient client,
1110                                   SilcClientConnection conn);
1111
1112 /* Message sending functions */
1113
1114 /****f* silcclient/SilcClientAPI/silc_client_send_channel_message
1115  *
1116  * SYNOPSIS
1117  *
1118  *    SilcBool silc_client_send_channel_message(SilcClient client,
1119  *                                              SilcClientConnection conn,
1120  *                                              SilcChannelEntry channel,
1121  *                                              SilcChannelPrivateKey key,
1122  *                                              SilcMessageFlags flags,
1123  *                                              SilcHash hash,
1124  *                                              unsigned char *data,
1125  *                                              SilcUInt32 data_len);
1126  *
1127  * DESCRIPTION
1128  *
1129  *    Sends encrypted message to the `channel'.  The plaintext message is
1130  *    the `data' of `data_len' bytes in length.
1131  *
1132  *    If `key' is provided then that private channel message key is used to
1133  *    encrypt the message.  If it is not provided and the `channel' does not
1134  *    have SILC_CHANNEL_MODE_PRIVKEY set, the curent channel key is used
1135  *    instead.  If the mode is set but `key' is NULL the key that was added
1136  *    first as private channel message key will be used.
1137  *
1138  *    If the `flags' includes SILC_MESSAGE_FLAG_SIGNED the message will be
1139  *    digitally signed with the SILC key pair associated with the `conn'.
1140  *    In this case the `hash' pointer must be provided as well.
1141  *
1142  *    Returns TRUE if the message was sent, and FALSE if error occurred or
1143  *    the sending is not allowed due to channel modes (like sending is
1144  *    blocked).  This function is thread safe and private messages can be
1145  *    sent from multiple threads.
1146  *
1147  ***/
1148 SilcBool silc_client_send_channel_message(SilcClient client,
1149                                           SilcClientConnection conn,
1150                                           SilcChannelEntry channel,
1151                                           SilcChannelPrivateKey key,
1152                                           SilcMessageFlags flags,
1153                                           SilcHash hash,
1154                                           unsigned char *data,
1155                                           SilcUInt32 data_len);
1156
1157 /****f* silcclient/SilcClientAPI/silc_client_send_private_message
1158  *
1159  * SYNOPSIS
1160  *
1161  *    SilcBool silc_client_send_private_message(SilcClient client,
1162  *                                              SilcClientConnection conn,
1163  *                                              SilcClientEntry client_entry,
1164  *                                              SilcMessageFlags flags,
1165  *                                              SilcHash hash,
1166  *                                              unsigned char *data,
1167  *                                              SilcUInt32 data_len);
1168  *
1169  * DESCRIPTION
1170  *
1171  *    Sends private message to remote client. If private message key has
1172  *    not been set with this client then the message will be encrypted using
1173  *    the session keys used in `conn' connection.  If the `flags' includes
1174  *    SILC_MESSAGE_FLAG_SIGNED the message will be digitally signed with the
1175  *    SILC key pair associated with `conn'.  In this case the caller must also
1176  *    provide the `hash' pointer.
1177  *
1178  *    Returns TRUE if the message was sent, and FALSE if error occurred.
1179  *    This function is thread safe and private messages can be sent from
1180  *    multiple threads.
1181  *
1182  ***/
1183 SilcBool silc_client_send_private_message(SilcClient client,
1184                                           SilcClientConnection conn,
1185                                           SilcClientEntry client_entry,
1186                                           SilcMessageFlags flags,
1187                                           SilcHash hash,
1188                                           unsigned char *data,
1189                                           SilcUInt32 data_len);
1190
1191 /****f* silcclient/SilcClientAPI/silc_client_private_message_wait_init
1192  *
1193  * SYNOPSIS
1194  *
1195  *    SilcBool
1196  *    silc_client_private_message_wait_init(SilcClient client,
1197  *                                          SilcClientConnection conn);
1198  *
1199  * DESCRIPTION
1200  *
1201  *    Initializes private message waiting functionality for the connection
1202  *    indicated by `conn'.  Once this is called private message from remote
1203  *    connection indicated by `conn' for any client entry beloning to that
1204  *    connection may be waited for, for example in a thread.  The function
1205  *    silc_client_private_message_wait is used to block the current thread
1206  *    until a private message is received from a specified client entry.
1207  *    Return FALSE in case an internal error occurred.
1208  *
1209  ***/
1210 SilcBool silc_client_private_message_wait_init(SilcClient client,
1211                                                SilcClientConnection conn);
1212
1213 /****f* silcclient/SilcClientAPI/silc_client_private_message_wait_uninit
1214  *
1215  * SYNOPSIS
1216  *
1217  *    void
1218  *    silc_client_private_message_wait_uninit(SilcClient client,
1219  *                                            SilcClientConnection conn);
1220  *
1221  * DESCRIPTION
1222  *
1223  *    Unintializes private message waiting for connection indicated by
1224  *    `conn'.  After this call private message cannot be waited anymore.
1225  *    This call may be called from any thread.  This call will signal all
1226  *    private message waiting threads to stop waiting.
1227  *
1228  ***/
1229 void silc_client_private_message_wait_uninit(SilcClient client,
1230                                              SilcClientConnection conn);
1231
1232 /****f* silcclient/SilcClientAPI/silc_client_private_message_wait
1233  *
1234  * SYNOPSIS
1235  *
1236  *    SilcBool
1237  *    silc_client_private_message_wait(SilcClient client,
1238  *                                     SilcClientConnection conn,
1239  *                                     SilcClientEntry client_entry,
1240  *                                     SilcMessagePayload *payload);
1241  *
1242  * DESCRIPTION
1243  *
1244  *    Blocks current thread or process until a private message has been
1245  *    received from the remote client indicated by `client_entry'.  Before
1246  *    private messages can be waited the silc_client_private_message_wait_init
1247  *    must be called.  This function can be used from a thread to wait for
1248  *    private message from the specified client.  Multiple threads can be
1249  *    created to wait messages from multiple clients.  Any other private
1250  *    message received from the connection indicated by `conn' will be
1251  *    forwarded to the normal `private_message' client operation callback.
1252  *    The private messages from `client_entry' will not be delivered to the
1253  *    `private_message' client operation callback.
1254  *
1255  *    Returns TRUE and the received private message into `payload'.  The caller
1256  *    must free the returned SilcMessagePayload.  If this function returns
1257  *    FALSE the private messages cannot be waited anymore.  This happens
1258  *    when some other thread calls silc_client_private_message_wait_uninit.
1259  *    This returns FALSE also if silc_client_private_message_wait_init has
1260  *    not been called.
1261  *
1262  ***/
1263 SilcBool silc_client_private_message_wait(SilcClient client,
1264                                           SilcClientConnection conn,
1265                                           SilcClientEntry client_entry,
1266                                           SilcMessagePayload *payload);
1267
1268 /****f* silcclient/SilcClientAPI/silc_client_on_channel
1269  *
1270  * SYNOPSIS
1271  *
1272  *    SilcChannelUser silc_client_on_channel(SilcChannelEntry channel,
1273  *                                           SilcClientEntry client_entry);
1274  *
1275  * DESCRIPTION
1276  *
1277  *    Returns the SilcChannelUser entry if the `client_entry' is joined on the
1278  *    channel indicated by the `channel'. NULL if client is not joined on
1279  *    the channel.
1280  *
1281  ***/
1282 SilcChannelUser silc_client_on_channel(SilcChannelEntry channel,
1283                                        SilcClientEntry client_entry);
1284
1285
1286 /* Command management */
1287
1288 /****f* silcclient/SilcClientAPI/silc_client_command_call
1289  *
1290  * SYNOPSIS
1291  *
1292  *    SilcUInt16 silc_client_command_call(SilcClient client,
1293  *                                        SilcClientConnection conn,
1294  *                                        const char *command_line, ...);
1295  *
1296  * DESCRIPTION
1297  *
1298  *    Calls and executes the command indicated by the `command_name'.
1299  *    The `command_line' is a string which includes the command's name and
1300  *    its arguments separated with whitespaces (' ').  If `command_line'
1301  *    is non-NULL then all variable arguments are ignored by default.
1302  *
1303  *    If `command_line' is NULL, then the variable arguments define the
1304  *    command's name and its arguments.  The first variable argument must
1305  *    be the command name.  The variable argument list must be terminated
1306  *    with NULL.
1307  *
1308  *    Returns FALSE if the command is not known and TRUE after command.
1309  *    execution.  The `command' client operation callback will be called when
1310  *    the command is executed to indicate whether or not the command executed
1311  *    successfully.
1312  *
1313  *    The `command_reply' client operation callbak will be called when reply
1314  *    is received from the server to the command.  Application may also use
1315  *    the silc_client_command_pending to attach to the command reply.
1316  *    The command identifier for silc_client_command_pending function after
1317  *    this function call is conn->cmd_ident, which application may use.
1318  *
1319  * EXAMPLE
1320  *
1321  *    silc_client_command_call(client, conn, NULL, "PING", "silc.silcnet.org",
1322  *                             NULL);
1323  *    silc_client_command_call(client, conn, "PING silc.silcnet.org");
1324  *
1325  * NOTES
1326  *
1327  *    This command executes the commands implemented inside the client
1328  *    library.  These commands are designed for command line applications,
1329  *    but GUI application may call them too if needed.  Alternatively
1330  *    application may override the library and use silc_client_command_send
1331  *    function instead.
1332  *
1333  ***/
1334 SilcUInt16 silc_client_command_call(SilcClient client,
1335                                     SilcClientConnection conn,
1336                                     const char *command_line, ...);
1337
1338 /****f* silcclient/SilcClientAPI/SilcClientCommandReply
1339  *
1340  * SYNOPSIS
1341  *
1342  *    typedef SilcBool (*SilcClientCommandReply)(SilcClient client,
1343  *                                               SilcClientConnection conn,
1344  *                                               SilcCommand command,
1345  *                                               SilcStatus status,
1346  *                                               SilcStatus error,
1347  *                                               void *context,
1348  *                                               va_list ap);
1349  *
1350  * DESCRIPTION
1351  *
1352  *    The command reply callback function given as argument to functions
1353  *    silc_client_command_send and silc_client_command_pending.  This is
1354  *    called to deliver the command replies to the caller.  Each command
1355  *    reply received from the server to the `command' will be delivered
1356  *    separately to the caller by calling this callback.  The `status' will
1357  *    indicate whether there is only one reply or multiple replies.  The
1358  *    `error' will indicate if an error occurred.  The `ap' will include
1359  *    command reply arguments.  They are the same arguments as for
1360  *    `command_reply' client operation callback in SilcClientOperations.
1361  *
1362  *    If `status' is SILC_STATUS_OK only one reply was received and error
1363  *    did not occur.  If it is SILC_STATUS_LIST_START, SILC_STATUS_LIST_ITEM
1364  *    or SILC_STATUS_LIST_END, there are will be two or more replies.  The
1365  *    first reply is SILC_STATUS_LIST_START and last one SILC_STATUS_LIST_END.
1366  *
1367  *    If FALSE is returned in this function this callback will not be called
1368  *    again for `command' even if there are more comand replies.  By returning
1369  *    FALSE the caller my stop the command reply handling when needed.
1370  *
1371  ***/
1372 typedef SilcBool (*SilcClientCommandReply)(SilcClient client,
1373                                            SilcClientConnection conn,
1374                                            SilcCommand command,
1375                                            SilcStatus status,
1376                                            SilcStatus error,
1377                                            void *context,
1378                                            va_list ap);
1379
1380 /****f* silcclient/SilcClientAPI/silc_client_command_send
1381  *
1382  * SYNOPSIS
1383  *
1384  *    SilcUInt16 silc_client_command_send(SilcClient client,
1385  *                                        SilcClientConnection conn,
1386  *                                        SilcCommand command,
1387  *                                        SilcClientCommandReply reply,
1388  *                                        void *reply_context,
1389  *                                        SilcUInt32 argc, ...);
1390  *
1391  * DESCRIPTION
1392  *
1393  *    Generic function to send any command.  The arguments must be given
1394  *    already encoded into correct format and in correct order. If application
1395  *    wants to perform the commands by itself, it can do so and send the data
1396  *    directly to the server using this function.  If application is using
1397  *    the silc_client_command_call, this function is usually not used.
1398  *    Programmer should get familiar with the SILC protocol commands
1399  *    specification when using this function, as the arguments needs to
1400  *    be encoded as specified in the protocol.
1401  *
1402  *    The variable arguments are a set of { type, data, data_length },
1403  *    and the `argc' is the number of these sets.
1404  *
1405  *    The `reply' callback must be provided, and it is called when the
1406  *    command reply is received from the server.  Note that, when using this
1407  *    function the default `command_reply' client operation callback will not
1408  *    be called when reply is received.
1409  *
1410  *    Returns command identifier for this sent command.  It can be used
1411  *    to additionally attach to the command reply using the function
1412  *    silc_client_command_pending, if needed.  Returns 0 on error.
1413  *
1414  * EXAMPLE
1415  *
1416  *    silc_client_command_send(client, conn, SILC_COMMAND_WHOIS,
1417  *                             my_whois_command_reply, cmd_ctx,
1418  *                             1, 1, nickname, strlen(nickname));
1419  *
1420  ***/
1421 SilcUInt16 silc_client_command_send(SilcClient client,
1422                                     SilcClientConnection conn,
1423                                     SilcCommand command,
1424                                     SilcClientCommandReply reply,
1425                                     void *reply_context,
1426                                     SilcUInt32 argc, ...);
1427
1428 /****f* silcclient/SilcClientAPI/silc_client_command_pending
1429  *
1430  * SYNOPSIS
1431  *
1432  *    void silc_client_command_pending(SilcClientConnection conn,
1433  *                                     SilcCommand command,
1434  *                                     SilcUInt16 cmd_ident,
1435  *                                     SilcClientCommandReply reply,
1436  *                                     void *context);
1437  *
1438  * DESCRIPTION
1439  *
1440  *    This function can be used to add pending command callback to be
1441  *    called when an command reply is received to an earlier sent command.
1442  *    The `command' is the command that must be received in order for
1443  *    the pending command callback indicated by `callback' to be called.
1444  *
1445  *    The `cmd_ident' is a command identifier which was set for the earlier
1446  *    sent command.  The command reply will include the same identifier
1447  *    and pending command callback will be called when the reply is
1448  *    received with the same command identifier.  It is possible to
1449  *    add multiple pending command callbacks for same command and for
1450  *    same identifier.
1451  *
1452  *    Application may use this function to add its own command reply
1453  *    handlers if it wishes not to use the standard `command_reply'
1454  *    client operation.
1455  *
1456  *    Note also that the application is notified about the received command
1457  *    reply through the `command_reply' client operation before calling
1458  *    the `callback` pending command callback.  That is the normal
1459  *    command reply handling, and is called regardless whether pending
1460  *    command callbacks are used or not.
1461  *
1462  * EXAMPLE
1463  *
1464  *    SilcUInt16 cmd_ident;
1465  *    cmd_ident = silc_client_command_call(client, conn,
1466  *                                         "PING silc.silcnet.org");
1467  *    silc_client_command_pending(conn, SILC_COMMAND_PING, cmd_ident,
1468  *                                my_ping_handler, my_ping_context);
1469  *
1470  ***/
1471 SilcBool silc_client_command_pending(SilcClientConnection conn,
1472                                      SilcCommand command,
1473                                      SilcUInt16 cmd_ident,
1474                                      SilcClientCommandReply reply,
1475                                      void *context);
1476
1477
1478 /* Private Message key management */
1479
1480 /****f* silcclient/SilcClientAPI/silc_client_add_private_message_key
1481  *
1482  * SYNOPSIS
1483  *
1484  *    SilcBool
1485  *    silc_client_add_private_message_key(SilcClient client,
1486  *                                        SilcClientConnection conn,
1487  *                                        SilcClientEntry client_entry,
1488  *                                        const char *cipher,
1489  *                                        const char *hmac,
1490  *                                        unsigned char *key,
1491  *                                        SilcUInt32 key_len);
1492  *
1493  * DESCRIPTION
1494  *
1495  *    Adds a static private message key to the client library.  The key
1496  *    will be used to encrypt all private message between the client and
1497  *    the remote client indicated by the `client_entry'.  The `key' can
1498  *    be for example a pre-shared-key, passphrase or similar shared secret
1499  *    string.  The `cipher' and `hmac' MAY be provided but SHOULD be NULL
1500  *    to assure that the requirements of the SILC protocol are met. The
1501  *    API, however, allows to allocate any cipher and HMAC.
1502  *
1503  *    If the private message key is added to client without first receiving
1504  *    a request for it from the remote `client_entry' this function will
1505  *    send the request to `client_entry'.  Note that, the actual key is
1506  *    not sent to the network.
1507  *
1508  *    It is not necessary to set key for normal private message usage. If the
1509  *    key is not set then the private messages are encrypted using normal
1510  *    session keys.  Setting the private key, however, increases security.
1511  *
1512  *    Returns FALSE if the key is already set for the `client_entry', TRUE
1513  *    otherwise.
1514  *
1515  ***/
1516 SilcBool silc_client_add_private_message_key(SilcClient client,
1517                                              SilcClientConnection conn,
1518                                              SilcClientEntry client_entry,
1519                                              const char *cipher,
1520                                              const char *hmac,
1521                                              unsigned char *key,
1522                                              SilcUInt32 key_len);
1523
1524 /****f* silcclient/SilcClientAPI/silc_client_add_private_message_key_ske
1525  *
1526  * SYNOPSIS
1527  *
1528  *    SilcBool
1529  *    silc_client_add_private_message_key_ske(SilcClient client,
1530  *                                            SilcClientConnection conn,
1531  *                                            SilcClientEntry client_entry,
1532  *                                            const char *cipher,
1533  *                                            const char *hmac,
1534  *                                            SilcSKEKeyMaterial key);
1535  *
1536  * DESCRIPTION
1537  *
1538  *    Same as silc_client_add_private_message_key but takes the key material
1539  *    from the SKE key material structure.  This structure is received if
1540  *    the application uses the silc_client_send_key_agreement to negotiate
1541  *    the key material.  The `cipher' and `hmac' SHOULD be provided as it is
1542  *    negotiated also in the SKE protocol.
1543  *
1544  ***/
1545 SilcBool silc_client_add_private_message_key_ske(SilcClient client,
1546                                                  SilcClientConnection conn,
1547                                                  SilcClientEntry client_entry,
1548                                                  const char *cipher,
1549                                                  const char *hmac,
1550                                                  SilcSKEKeyMaterial key);
1551
1552 /****f* silcclient/SilcClientAPI/silc_client_del_private_message_key
1553  *
1554  * SYNOPSIS
1555  *
1556  *    SilcBool
1557  *    silc_client_del_private_message_key(SilcClient client,
1558  *                                        SilcClientConnection conn,
1559  *                                        SilcClientEntry client_entry);
1560  *
1561  * DESCRIPTION
1562  *
1563  *    Removes the private message from the library. The key won't be used
1564  *    after this to protect the private messages with the remote `client_entry'
1565  *    client. Returns FALSE on error, TRUE otherwise.
1566  *
1567  ***/
1568 SilcBool silc_client_del_private_message_key(SilcClient client,
1569                                              SilcClientConnection conn,
1570                                              SilcClientEntry client_entry);
1571
1572 /****f* silcclient/SilcClientAPI/silc_client_list_private_message_keys
1573  *
1574  * SYNOPSIS
1575  *
1576  *    SilcPrivateMessageKeys
1577  *    silc_client_list_private_message_keys(SilcClient client,
1578  *                                          SilcClientConnection conn,
1579  *                                          SilcUInt32 *key_count);
1580  *
1581  * DESCRIPTION
1582  *
1583  *    Returns array of set private message keys associated to the connection
1584  *    `conn'. Returns allocated SilcPrivateMessageKeys array and the array
1585  *    count to the `key_count' argument. The array must be freed by the caller
1586  *    by calling the silc_client_free_private_message_keys function. Note:
1587  *    the keys returned in the array is in raw format. It might not be desired
1588  *    to show the keys as is. The application might choose not to show the keys
1589  *    at all or to show the fingerprints of the keys.
1590  *
1591  ***/
1592 SilcPrivateMessageKeys
1593 silc_client_list_private_message_keys(SilcClient client,
1594                                       SilcClientConnection conn,
1595                                       SilcUInt32 *key_count);
1596
1597 /****f* silcclient/SilcClientAPI/silc_client_free_private_message_keys
1598  *
1599  * SYNOPSIS
1600  *
1601  *    void silc_client_free_private_message_keys(SilcPrivateMessageKeys keys,
1602  *                                               SilcUInt32 key_count);
1603  *
1604  * DESCRIPTION
1605  *
1606  *    Frees the SilcPrivateMessageKeys array returned by the function
1607  *    silc_client_list_private_message_keys.
1608  *
1609  ***/
1610 void silc_client_free_private_message_keys(SilcPrivateMessageKeys keys,
1611                                            SilcUInt32 key_count);
1612
1613
1614 /* Channel private key management */
1615
1616 /****f* silcclient/SilcClientAPI/silc_client_add_channel_private_key
1617  *
1618  * SYNOPSIS
1619  *
1620  *    SilcBool
1621  *    silc_client_add_channel_private_key(SilcClient client,
1622  *                                        SilcClientConnection conn,
1623  *                                        SilcChannelEntry channel,
1624  *                                        const char *name,
1625  *                                        char *cipher,
1626  *                                        char *hmac,
1627  *                                        unsigned char *key,
1628  *                                        SilcUInt32 key_len,
1629  *                                        SilcChannelPrivateKey *ret_key);
1630  *
1631  * DESCRIPTION
1632  *
1633  *    Adds private key for channel. When channel has private key then the
1634  *    messages are encrypted using that key. All clients on the channel
1635  *    must also know the key in order to decrypt the messages. However,
1636  *    it is possible to have several private keys per one channel. In this
1637  *    case only some of the clients on the channel may know the one key
1638  *    and only some the other key.  The `name' can be application given
1639  *    name for the key.  This returns the created key to the 'ret_key'
1640  *    pointer if it is non-NULL;
1641  *
1642  *    If `cipher' and/or `hmac' is NULL then default values will be used
1643  *    (aes-256-cbc for cipher and hmac-sha1-96 for hmac).
1644  *
1645  *    The private key for channel is optional. If it is not set then the
1646  *    channel messages are encrypted using the channel key generated by the
1647  *    server. However, setting the private key (or keys) for the channel
1648  *    significantly adds security. If more than one key is set the library
1649  *    will automatically try all keys at the message decryption phase. Note:
1650  *    setting many keys slows down the decryption phase as all keys has to
1651  *    be tried in order to find the correct decryption key. However, setting
1652  *    a few keys does not have big impact to the decryption performace.
1653  *
1654  * NOTES
1655  *
1656  *    NOTE: This is entirely local setting. The key set using this function
1657  *    is not sent to the network at any phase.
1658  *
1659  *    NOTE: If the key material was originated by the SKE protocol (using
1660  *    silc_client_send_key_agreement) then the `key' MUST be the
1661  *    key->send_enc_key as this is dictated by the SILC protocol. However,
1662  *    currently it is not expected that the SKE key material would be used
1663  *    as channel private key. However, this API allows it.
1664  *
1665  ***/
1666 SilcBool silc_client_add_channel_private_key(SilcClient client,
1667                                              SilcClientConnection conn,
1668                                              SilcChannelEntry channel,
1669                                              const char *name,
1670                                              char *cipher,
1671                                              char *hmac,
1672                                              unsigned char *key,
1673                                              SilcUInt32 key_len,
1674                                              SilcChannelPrivateKey *ret_key);
1675
1676 /****f* silcclient/SilcClientAPI/silc_client_del_channel_private_keys
1677  *
1678  * SYNOPSIS
1679  *
1680  *    SilcBool silc_client_del_channel_private_keys(SilcClient client,
1681  *                                                  SilcClientConnection conn,
1682  *                                                  SilcChannelEntry channel);
1683  *
1684  * DESCRIPTION
1685  *
1686  *    Removes all private keys from the `channel'. The old channel key is used
1687  *    after calling this to protect the channel messages. Returns FALSE on
1688  *    on error, TRUE otherwise.
1689  *
1690  ***/
1691 SilcBool silc_client_del_channel_private_keys(SilcClient client,
1692                                               SilcClientConnection conn,
1693                                               SilcChannelEntry channel);
1694
1695 /****f* silcclient/SilcClientAPI/silc_client_del_channel_private_key
1696  *
1697  * SYNOPSIS
1698  *
1699  *    SilcBool silc_client_del_channel_private_key(SilcClient client,
1700  *                                                 SilcClientConnection conn,
1701  *                                                 SilcChannelEntry channel,
1702  *                                                 SilcChannelPrivateKey key);
1703  *
1704  * DESCRIPTION
1705  *
1706  *    Removes and frees private key `key' from the channel `channel'.
1707  *    The `key' is retrieved by calling the function
1708  *    silc_client_list_channel_private_keys. The key is not used after
1709  *    this. If the key was last private key then the old channel key is
1710  *    used hereafter to protect the channel messages. This returns FALSE
1711  *    on error, TRUE otherwise.
1712  *
1713  ***/
1714 SilcBool silc_client_del_channel_private_key(SilcClient client,
1715                                              SilcClientConnection conn,
1716                                              SilcChannelEntry channel,
1717                                              SilcChannelPrivateKey key);
1718
1719 /****f* silcclient/SilcClientAPI/silc_client_list_channel_private_keys
1720  *
1721  * SYNOPSIS
1722  *
1723  *    SilcDList
1724  *    silc_client_list_channel_private_keys(SilcClient client,
1725  *                                          SilcClientConnection conn,
1726  *                                          SilcChannelEntry channel);
1727  *
1728  * DESCRIPTION
1729  *
1730  *    Returns list of private keys associated to the `channel'.  The caller
1731  *    must free the returned list with silc_dlist_uninit.  The pointers in
1732  *    the list may be used to delete the specific key by giving the pointer
1733  *    as argument to the function silc_client_del_channel_private_key.  Each
1734  *    entry in the list is SilcChannelPrivateKey.
1735  *
1736  ***/
1737 SilcDList silc_client_list_channel_private_keys(SilcClient client,
1738                                                 SilcClientConnection conn,
1739                                                 SilcChannelEntry channel);
1740
1741 /****f* silcclient/SilcClientAPI/silc_client_current_channel_private_key
1742  *
1743  * SYNOPSIS
1744  *
1745  *    void silc_client_current_channel_private_key(SilcClient client,
1746  *                                                 SilcClientConnection conn,
1747  *                                                 SilcChannelEntry channel,
1748  *                                                 SilcChannelPrivateKey key);
1749  *
1750  * DESCRIPTION
1751  *
1752  *    Sets the `key' to be used as current channel private key on the
1753  *    `channel'.  Packet sent after calling this function will be secured
1754  *    with `key'.
1755  *
1756  ***/
1757 void silc_client_current_channel_private_key(SilcClient client,
1758                                              SilcClientConnection conn,
1759                                              SilcChannelEntry channel,
1760                                              SilcChannelPrivateKey key);
1761
1762
1763 /* Key Agreement routines */
1764
1765 /****f* silcclient/SilcClientAPI/silc_client_send_key_agreement
1766  *
1767  * SYNOPSIS
1768  *
1769  *    void silc_client_send_key_agreement(SilcClient client,
1770  *                                        SilcClientConnection conn,
1771  *                                        SilcClientEntry client_entry,
1772  *                                        SilcClientConnectionParams *params,
1773  *                                        SilcPublicKey public_key,
1774  *                                        SilcPrivateKey private_key,
1775  *                                        SilcKeyAgreementCallback completion,
1776  *                                        void *context);
1777  *
1778  * DESCRIPTION
1779  *
1780  *    Sends key agreement request to the remote client indicated by the
1781  *    `client_entry'.
1782  *
1783  *    If `params' is non-NULL and it has the `local_ip' and `local_port' set
1784  *    the caller will provide the connection endpoint for the key agreement
1785  *    connection.  The `bind_ip' can be used to bind to that IP instead of
1786  *    `local_ip'.  If the `udp' is set to TRUE the connection will be UDP
1787  *    instead of TCP.  Caller may also set the `repository', `verify_notfound'
1788  *    and `timeout_secs' fields in `params'.  Other fields are ignored.
1789  *    If `params' is NULL, then the `client_entry' is expected to provide
1790  *    the connection endpoint for us.  It is recommended the `timeout_secs'
1791  *    is specified in case the remote client does not reply anything to
1792  *    the request.
1793  *
1794  *    The `public_key' and `private_key' is our identity in the key agreement.
1795  *
1796  *    In case we do not provide the connection endpoint, we will receive
1797  *    the `key_agreement' client operation when the remote send its own
1798  *    key agreement request packet.  We may then there start the key
1799  *    agreement with silc_client_perform_key_agreement.  If we provided the
1800  *    the connection endpoint, the client operation will not be called.
1801  *
1802  *    There can be only one active key agreement for `client_entry'.  Old
1803  *    key agreement may be aborted by calling silc_client_abort_key_agreement.
1804  *
1805  * EXAMPLE
1806  *
1807  *    // Send key agreement request (we don't provide connection endpoint)
1808  *    silc_client_send_key_agreement(client, conn, remote_client,
1809  *                                   NULL, public_key, private_key,
1810  *                                   my_keyagr_completion, my_context);
1811  *
1812  *    // Another example where we provide connection endpoint (TCP).
1813  *    SilcClientConnectionParams params;
1814  *    memset(&params, 0, sizeof(params));
1815  *    params.local_ip = local_ip;
1816  *    params.local_port = local_port;
1817  *    params.timeout_secs = 60;
1818  *    silc_client_send_key_agreement(client, conn, remote_client,
1819  *                                   &params, public_key, private_key,
1820  *                                   my_keyagr_completion, my_context);
1821  *
1822  ***/
1823 void silc_client_send_key_agreement(SilcClient client,
1824                                     SilcClientConnection conn,
1825                                     SilcClientEntry client_entry,
1826                                     SilcClientConnectionParams *params,
1827                                     SilcPublicKey public_key,
1828                                     SilcPrivateKey private_key,
1829                                     SilcKeyAgreementCallback completion,
1830                                     void *context);
1831
1832 /****f* silcclient/SilcClientAPI/silc_client_perform_key_agreement
1833  *
1834  * SYNOPSIS
1835  *
1836  *    void
1837  *    silc_client_perform_key_agreement(SilcClient client,
1838  *                                      SilcClientConnection conn,
1839  *                                      SilcClientEntry client_entry,
1840  *                                      SilcClientConnectionParams *params,
1841  *                                      SilcPublicKey public_key,
1842  *                                      SilcPrivateKey private_key,
1843  *                                      char *hostname, int port,
1844  *                                      SilcKeyAgreementCallback completion,
1845  *                                      void *context);
1846  *
1847  * DESCRIPTION
1848  *
1849  *    Performs the key agreement protocol.  Application may use this to
1850  *    initiate the key agreement protocol.  Usually this is called after
1851  *    receiving the `key_agreement' client operation.
1852  *
1853  *    The `hostname' is the remote hostname (or IP address) and the `port'
1854  *    is the remote port.  The `completion' callback with the `context' will
1855  *    be called after the key agreement protocol.
1856  *
1857  *    The `params' is connection parameters and it may be used to define
1858  *    the key agreement connection related parameters.  It may be NULL.
1859  *
1860  ***/
1861 void silc_client_perform_key_agreement(SilcClient client,
1862                                        SilcClientConnection conn,
1863                                        SilcClientEntry client_entry,
1864                                        SilcClientConnectionParams *params,
1865                                        SilcPublicKey public_key,
1866                                        SilcPrivateKey private_key,
1867                                        char *hostname, int port,
1868                                        SilcKeyAgreementCallback completion,
1869                                        void *context);
1870
1871 /****f* silcclient/SilcClientAPI/silc_client_perform_key_agreement_stream
1872  *
1873  * SYNOPSIS
1874  *
1875  *    void
1876  *    silc_client_perform_key_agreement_stream(
1877  *                                      SilcClient client,
1878  *                                      SilcClientConnection conn,
1879  *                                      SilcClientEntry client_entry,
1880  *                                      SilcClientConnectionParams *params,
1881  *                                      SilcPublicKey public_key,
1882  *                                      SilcPrivateKey private_key,
1883  *                                      SilcStream stream,
1884  *                                      SilcKeyAgreementCallback completion,
1885  *                                      void *context);
1886  *
1887  * DESCRIPTION
1888  *
1889  *    Same as silc_client_perform_key_agreement but the caller has created
1890  *    the connection to remote client.  The `stream' is the created
1891  *    connection.
1892  *
1893  ***/
1894 void
1895 silc_client_perform_key_agreement_stream(SilcClient client,
1896                                          SilcClientConnection conn,
1897                                          SilcClientEntry client_entry,
1898                                          SilcClientConnectionParams *params,
1899                                          SilcPublicKey public_key,
1900                                          SilcPrivateKey private_key,
1901                                          SilcStream stream,
1902                                          SilcKeyAgreementCallback completion,
1903                                          void *context);
1904
1905 /****f* silcclient/SilcClientAPI/silc_client_abort_key_agreement
1906  *
1907  * SYNOPSIS
1908  *
1909  *    void silc_client_abort_key_agreement(SilcClient client,
1910  *                                         SilcClientConnection conn,
1911  *                                         SilcClientEntry client_entry);
1912  *
1913  * DESCRIPTION
1914  *
1915  *    This function can be called to unbind the hostname and the port for
1916  *    the key agreement protocol. However, this function has effect only
1917  *    before the key agreement protocol has been performed. After it has
1918  *    been performed the library will automatically unbind the port. The
1919  *    `client_entry' is the client to which we sent the key agreement
1920  *    request.  The key agreement completion callback will be called
1921  *    with SILC_KEY_AGREEMENT_ABORTED status.
1922  *
1923  ***/
1924 void silc_client_abort_key_agreement(SilcClient client,
1925                                      SilcClientConnection conn,
1926                                      SilcClientEntry client_entry);
1927
1928
1929 /* Misc functions */
1930
1931 /****f* silcclient/SilcClientAPI/silc_client_set_away_message
1932  *
1933  * SYNOPSIS
1934  *
1935  *    SilcBool silc_client_set_away_message(SilcClient client,
1936  *                                          SilcClientConnection conn,
1937  *                                          char *message);
1938  *
1939  * DESCRIPTION
1940  *
1941  *    Sets away `message'.  The away message may be set when the client's
1942  *    mode is changed to SILC_UMODE_GONE and the client whishes to reply
1943  *    to anyone who sends private message.  The `message' will be sent
1944  *    automatically back to the the client who send private message.  If
1945  *    away message is already set this replaces the old message with the
1946  *    new one.  If `message' is NULL the old away message is removed.
1947  *    The sender may freely free the memory of the `message'.  Returns
1948  *    FALSE on error.
1949  *
1950  ***/
1951 SilcBool silc_client_set_away_message(SilcClient client,
1952                                       SilcClientConnection conn,
1953                                       char *message);
1954
1955 /****d* silcclient/SilcClientAPI/SilcClientMonitorStatus
1956  *
1957  * NAME
1958  *
1959  *    typedef enum { ... } SilcClientMonitorStatus;
1960  *
1961  * DESCRIPTION
1962  *
1963  *    File transmission session status types.  These will indicate
1964  *    the status of the file transmission session.
1965  *
1966  *    The SILC_CLIENT_FILE_MONITOR_KEY_AGREEMENT is called when session
1967  *    is key exchange phase.
1968  *
1969  *    The SILC_CLIENT_FILE_MONITOR_SEND is called when data is being sent
1970  *    to remote client.
1971  *
1972  *    The SILC_CLIENT_FILE_MONITOR_RECEIVE is called when data is being
1973  *    recieved from remote client.
1974  *
1975  *    The SILC_CLIENT_FILE_MONITOR_CLOSED will be called when the user
1976  *    issues silc_client_file_close.  If needed, it may be ignored in the
1977  *    monitor callback.
1978  *
1979  *    The SILC_CLIENT_FILE_MONITOR_DISCONNECT will be called if remote
1980  *    disconnects the session connection.  The silc_client_file_close must
1981  *    be called when this status is received.  The session is over when
1982  *    this is received.
1983  *
1984  *    The SILC_CLIENLT_FILE_MONITOR_ERROR is called in case some error
1985  *    occured.  The SilcClientFileError will indicate more detailed error
1986  *    condition.  The silc_client_file_close must be called when this status
1987  *    is received.  The session is over when this is received.
1988  *
1989  * SOURCE
1990  */
1991 typedef enum {
1992   SILC_CLIENT_FILE_MONITOR_KEY_AGREEMENT,    /* In key agreemenet phase */
1993   SILC_CLIENT_FILE_MONITOR_SEND,             /* Sending file */
1994   SILC_CLIENT_FILE_MONITOR_RECEIVE,          /* Receiving file */
1995   SILC_CLIENT_FILE_MONITOR_GET,              /* Unsupported */
1996   SILC_CLIENT_FILE_MONITOR_PUT,              /* Unsupported */
1997   SILC_CLIENT_FILE_MONITOR_CLOSED,           /* Session closed */
1998   SILC_CLIENT_FILE_MONITOR_DISCONNECT,       /* Session disconnected */
1999   SILC_CLIENT_FILE_MONITOR_ERROR,            /* Error during session */
2000 } SilcClientMonitorStatus;
2001 /***/
2002
2003 /****d* silcclient/SilcClientAPI/SilcClientFileError
2004  *
2005  * NAME
2006  *
2007  *    typedef enum { ... } SilcClientFileError;
2008  *
2009  * DESCRIPTION
2010  *
2011  *    File transmission error types.  These types are returned by
2012  *    some of the file transmission functions, and by the monitor
2013  *    callback to indicate error.
2014  *
2015  * SOURCE
2016  */
2017 typedef enum {
2018   SILC_CLIENT_FILE_OK,
2019   SILC_CLIENT_FILE_ERROR,                    /* Generic error */
2020   SILC_CLIENT_FILE_UNKNOWN_SESSION,          /* Unknown session ID */
2021   SILC_CLIENT_FILE_ALREADY_STARTED,          /* Session already started */
2022   SILC_CLIENT_FILE_NO_SUCH_FILE,             /* No such file */
2023   SILC_CLIENT_FILE_PERMISSION_DENIED,        /* Permission denied */
2024   SILC_CLIENT_FILE_KEY_AGREEMENT_FAILED,     /* Key exchange failed */
2025   SILC_CLIENT_FILE_CONNECT_FAILED,           /* Error during connecting */
2026   SILC_CLIENT_FILE_TIMEOUT,                  /* Connecting timedout */
2027   SILC_CLIENT_FILE_NO_MEMORY,                /* System out of memory */
2028 } SilcClientFileError;
2029 /***/
2030
2031 /****f* silcclient/SilcClientAPI/SilcClientFileMonitor
2032  *
2033  * SYNOPSIS
2034  *
2035  *    typedef void (*SilcClientFileMonitor)(SilcClient client,
2036  *                                          SilcClientConnection conn,
2037  *                                          SilcClientMonitorStatus status,
2038  *                                          SilcClientFileError error,
2039  *                                          SilcUInt64 offset,
2040  *                                          SilcUInt64 filesize,
2041  *                                          SilcClientEntry client_entry,
2042  *                                          SilcUInt32 session_id,
2043  *                                          const char *filepath,
2044  *                                          void *context);
2045  *
2046  * DESCRIPTION
2047  *
2048  *    Monitor callback that is called during the file transmission to
2049  *    monitor the transmission process.  The `status' indicates the current
2050  *    monitoring process.  The `error' will indicate the error type
2051  *    if `status' is SILC_CLIENT_FILE_MONITOR_ERROR.  The `offset' is the
2052  *    currently transmitted amount of total `filesize'.  The `client_entry'
2053  *    indicates the remote client, and the transmission session ID is the
2054  *    `session_id'.  The filename being transmitted is indicated by the
2055  *    `filepath'.  The `conn' is NULL if the connection to remote client
2056  *    does not exist yet.
2057  *
2058  ***/
2059 typedef void (*SilcClientFileMonitor)(SilcClient client,
2060                                       SilcClientConnection conn,
2061                                       SilcClientMonitorStatus status,
2062                                       SilcClientFileError error,
2063                                       SilcUInt64 offset,
2064                                       SilcUInt64 filesize,
2065                                       SilcClientEntry client_entry,
2066                                       SilcUInt32 session_id,
2067                                       const char *filepath,
2068                                       void *context);
2069
2070 /****f* silcclient/SilcClientAPI/SilcClientFileName
2071  *
2072  * SYNOPSIS
2073  *
2074  *    typedef void (*SilcClientFileName)(const char *filepath,
2075  *                                       void *context);
2076  *
2077  * DESCRIPTION
2078  *
2079  *    Completion callback for the SilcClientFileAskName callback function.
2080  *    Application calls this to deliver the filepath and filename where
2081  *    the downloaded file is to be saved.
2082  *
2083  ***/
2084 typedef void (*SilcClientFileName)(const char *filepath,
2085                                    void *context);
2086
2087 /****f* silcclient/SilcClientAPI/SilcClientFileAskName
2088  *
2089  * SYNOPSIS
2090  *
2091  *    typedef void (*SilcClientFileAskName)(SilcClient client,
2092  *                                          SilcClientConnection conn,
2093  *                                          SilcUInt32 session_id,
2094  *                                          const char *remote_filename,
2095  *                                          SilcClientFileName completion,
2096  *                                          void *completion_context,
2097  *                                          void *context);
2098  *
2099  * DESCRIPTION
2100  *
2101  *    File name asking callback that is called if it is given to the
2102  *    silc_client_file_receive and the path given to that as argument was
2103  *    NULL.  The library calls this to ask the filename and filepath to
2104  *    where the file is to be saved.  The 'remote_filename' is the file
2105  *    that is being downloaded.  Application must call the 'completion'
2106  *    with 'completion_context' to continue with the file downloading.
2107  *    It is not mandatory to provide this to the silc_client_file_receive.
2108  *
2109  ***/
2110 typedef void (*SilcClientFileAskName)(SilcClient client,
2111                                       SilcClientConnection conn,
2112                                       SilcUInt32 session_id,
2113                                       const char *remote_filename,
2114                                       SilcClientFileName completion,
2115                                       void *completion_context,
2116                                       void *context);
2117
2118 /****f* silcclient/SilcClientAPI/silc_client_file_send
2119  *
2120  * SYNOPSIS
2121  *
2122  *    SilcClientFileError
2123  *    silc_client_file_send(SilcClient client,
2124  *                          SilcClientConnection conn,
2125  *                          SilcClientEntry client_entry,
2126  *                          SilcClientConnectionParams *params,
2127  *                          SilcPublicKey public_key,
2128  *                          SilcPrivateKey private_key,
2129  *                          SilcClientFileMonitor monitor,
2130  *                          void *monitor_context,
2131  *                          const char *filepath,
2132  *                          SilcUInt32 *session_id);
2133  *
2134  * DESCRIPTION
2135  *
2136  *    Sends a file indicated by the `filepath' to the remote client
2137  *    indicated by the `client_entry'.  This will negotiate a secret key
2138  *    with the remote client before actually starting the transmission of
2139  *    the file.  The `monitor' callback will be called to monitor the
2140  *    transmission of the file.
2141  *
2142  *    This returns a file session ID for the file transmission to the
2143  *    `session_id' pointer.  It can be used to close the session (and
2144  *    abort the file transmission) by calling the silc_client_file_close
2145  *    function.  The session ID is also returned in the `monitor' callback.
2146  *
2147  *    If `params' is non-NULL and it has the `local_ip' and `local_port' set
2148  *    the caller will provide the connection endpoint for the key agreement
2149  *    connection.  The `bind_ip' can be used to bind to that IP instead of
2150  *    `local_ip'.  Caller may also set the `repository', `verify_notfound'
2151  *    and `timeout_secs' fields in `params'.  Other fields are ignored.
2152  *    If `params' is NULL, then the `client_entry' is expected to provide
2153  *    the connection endpoint for us.  It is recommended the `timeout_secs'
2154  *    is specified in case the remote client does not reply anything to
2155  *    the request.
2156  *
2157  *    The `public_key' and `private_key' is our identity in the key agreement.
2158  *
2159  *    If error will occur during the file transfer process the error status
2160  *    will be returned in the monitor callback.  In this case the application
2161  *    must call silc_client_file_close to close the session.
2162  *
2163  ***/
2164 SilcClientFileError
2165 silc_client_file_send(SilcClient client,
2166                       SilcClientConnection conn,
2167                       SilcClientEntry client_entry,
2168                       SilcClientConnectionParams *params,
2169                       SilcPublicKey public_key,
2170                       SilcPrivateKey private_key,
2171                       SilcClientFileMonitor monitor,
2172                       void *monitor_context,
2173                       const char *filepath,
2174                       SilcUInt32 *session_id);
2175
2176 /****f* silcclient/SilcClientAPI/silc_client_file_receive
2177  *
2178  * SYNOPSIS
2179  *
2180  *    SilcClientFileError
2181  *    silc_client_file_receive(SilcClient client,
2182  *                             SilcClientConnection conn,
2183  *                             SilcClientConnectionParams *params,
2184  *                             SilcPublicKey public_key,
2185  *                             SilcPrivateKey private_key,
2186  *                             SilcClientFileMonitor monitor,
2187  *                             void *monitor_context,
2188  *                             const char *path,
2189  *                             SilcUInt32 session_id,
2190  *                             SilcClientFileAskName ask_name,
2191  *                             void *ask_name_context);
2192  *
2193  * DESCRIPTION
2194  *
2195  *    Receives a file from a client indicated by the `client_entry'.  The
2196  *    `session_id' indicates the file transmission session and it has been
2197  *    received in the `ftp' client operation callback.  This will actually
2198  *    perform the key agreement protocol with the remote client before
2199  *    actually starting the file transmission.  The `monitor' callback
2200  *    will be called to monitor the transmission.  If `path' is non-NULL
2201  *    the file will be saved into that directory.  If NULL the file is
2202  *    saved in the current working directory, unless the 'ask_name'
2203  *    callback is non-NULL.  In this case the callback is called to ask
2204  *    the path and filename from application.
2205  *
2206  *    The `params' is the connection related parameters.  If the remote client
2207  *    provided connection point the `params' will be used when creating
2208  *    connection to the remote client.  If remote client did not provide
2209  *    connection point the `params' is used to provide connection point
2210  *    locally for the remote client.  See silc_client_file_send for more
2211  *    information on providing connection point for remote client.
2212  *
2213  *    The `public_key' and `private_key' is our identity in the key agreement.
2214  *
2215  *    If error will occur during the file transfer process the error status
2216  *    will be returned in the monitor callback.  In this case the application
2217  *    must call silc_client_file_close to close the session.
2218  *
2219  ***/
2220 SilcClientFileError
2221 silc_client_file_receive(SilcClient client,
2222                          SilcClientConnection conn,
2223                          SilcClientConnectionParams *params,
2224                          SilcPublicKey public_key,
2225                          SilcPrivateKey private_key,
2226                          SilcClientFileMonitor monitor,
2227                          void *monitor_context,
2228                          const char *path,
2229                          SilcUInt32 session_id,
2230                          SilcClientFileAskName ask_name,
2231                          void *ask_name_context);
2232
2233 /****f* silcclient/SilcClientAPI/silc_client_file_close
2234  *
2235  * SYNOPSIS
2236  *
2237  *    SilcClientFileError silc_client_file_close(SilcClient client,
2238  *                                               SilcClientConnection conn,
2239  *                                               SilcUInt32 session_id);
2240  *
2241  * DESCRIPTION
2242  *
2243  *    Closes file transmission session indicated by the `session_id'.
2244  *    If file transmission is being conducted it will be aborted
2245  *    automatically. This function is also used to close the session
2246  *    after successful file transmission. This function can be used
2247  *    also to reject incoming file transmission request.  If the
2248  *    session was already started and the monitor callback was set
2249  *    the monitor callback will be called with the monitor status
2250  *    SILC_CLIENT_FILE_MONITOR_CLOSED.
2251  *
2252  ***/
2253 SilcClientFileError silc_client_file_close(SilcClient client,
2254                                            SilcClientConnection conn,
2255                                            SilcUInt32 session_id);
2256
2257 /****f* silcclient/SilcClientAPI/silc_client_attribute_add
2258  *
2259  * SYNOPSIS
2260  *
2261  *    SilcAttributePayload
2262  *    silc_client_attribute_add(SilcClient client,
2263  *                              SilcClientConnection conn,
2264  *                              SilcAttribute attribute,
2265  *                              void *object,
2266  *                              SilcUInt32 object_size);
2267  *
2268  * DESCRIPTION
2269  *
2270  *    Add new Requsted Attribute for WHOIS command to the client library.
2271  *    The `attribute' object indicated by `object' is added and allocated
2272  *    SilcAttributePayload is returned.  The `object' must be of correct
2273  *    type and of correct size.  See the SilcAttribute for object types
2274  *    for different attributes.  You may also get all added attributes
2275  *    from the client with silc_client_attributes_get function.
2276  *
2277  *    Requested Attributes are different personal information about the
2278  *    user, status information and other information which other users
2279  *    may query with WHOIS command.  Application may set these so that
2280  *    if someone sends WHOIS query these attributes will be replied back
2281  *    to the sender.  The library always puts the public key to the
2282  *    Requested Attributes, but if application wishes to add additional
2283  *    public keys (or certificates) it can be done with this interface.
2284  *    Library also always computes digital signature of the attributes
2285  *    automatically, so application does not need to do that.
2286  *
2287  ***/
2288 SilcAttributePayload silc_client_attribute_add(SilcClient client,
2289                                                SilcClientConnection conn,
2290                                                SilcAttribute attribute,
2291                                                void *object,
2292                                                SilcUInt32 object_size);
2293
2294 /****f* silcclient/SilcClientAPI/silc_client_attribute_del
2295  *
2296  * SYNOPSIS
2297  *
2298  *    SilcBool silc_client_attribute_del(SilcClient client,
2299  *                                   SilcClientConnection conn,
2300  *                                   SilcAttribute attribute,
2301  *                                   SilcAttributePayload attr);
2302  *
2303  * DESCRIPTION
2304  *
2305  *    Delete a Requested Attribute from the client.  If the `attribute'
2306  *    is non-zero then all attributes of that type are deleted and the
2307  *    `attr' is ignored.  If `attr' is non-NULL then that specific
2308  *    attribute is deleted and `attribute' is ignored.
2309  *
2310  *    You may get all added attributes with the function
2311  *    silc_client_attributes_get and to get the SilcAttributePayload.
2312  *    This function Returns TRUE if the attribute was found and deleted.
2313  *
2314  ***/
2315 SilcBool silc_client_attribute_del(SilcClient client,
2316                                    SilcClientConnection conn,
2317                                    SilcAttribute attribute,
2318                                    SilcAttributePayload attr);
2319
2320 /****f* silcclient/SilcClientAPI/silc_client_attributes_get
2321  *
2322  * SYNOPSIS
2323  *
2324  *    const SilcHashTable
2325  *    silc_client_attributes_get(SilcClient client,
2326  *                               SilcClientConnection conn);
2327  *
2328  * DESCRIPTION
2329  *
2330  *    Returns pointer to the SilcHashTable which includes all the added
2331  *    Requested Attributes.  The caller must not free the hash table.
2332  *    The caller may use SilcHashTableList and silc_hash_table_list to
2333  *    traverse the table.  Each entry in the hash table is one added
2334  *    SilcAttributePayload.  It is possible to delete a attribute
2335  *    payload while traversing the table.
2336  *
2337  ***/
2338 SilcHashTable silc_client_attributes_get(SilcClient client,
2339                                          SilcClientConnection conn);
2340
2341 /****f* silcclient/SilcClientAPI/silc_client_attributes_request
2342  *
2343  * SYNOPSIS
2344  *
2345  *    SilcBuffer silc_client_attributes_request(SilcAttribute attribute, ...);
2346  *
2347  * DESCRIPTION
2348  *
2349  *    Constructs a Requested Attributes buffer. If the `attribute' is zero (0)
2350  *    then all attributes are requested.  Alternatively, `attribute' and
2351  *    all variable arguments can each be requested attribute.  In this case
2352  *    the last must be set to zero (0) to complete the variable list of
2353  *    requested attributes.  See SilcAttribute for all attributes.
2354  *    You can give the returned buffer as argument to for example
2355  *    silc_client_get_client_by_id_resolve function.
2356  *
2357  * EXAMPLE
2358  *
2359  *    Request all attributes
2360  *    buffer = silc_client_attributes_request(0);
2361  *
2362  *    Request only the following attributes
2363  *    buffer = silc_client_attributes_request(SILC_ATTRIBUTE_USER_INFO,
2364  *                                            SILC_ATTRIBUTE_SERVICE,
2365  *                                            SILC_ATTRIBUTE_MOOD, 0);
2366  *
2367  ***/
2368 SilcBuffer silc_client_attributes_request(SilcAttribute attribute, ...);
2369
2370 /****f* silcclient/SilcClientAPI/silc_client_nickname_format
2371  *
2372  * SYNOPSIS
2373  *
2374  *    SilcClientEntry
2375  *    silc_client_nickname_format(SilcClient client,
2376  *                                SilcClientConnection conn,
2377  *                                SilcClientEntry client_entry,
2378  *                                SilcBool priority);
2379  *
2380  * DESCRIPTION
2381  *
2382  *    Formats the nickname of `client_entry' according to the nickname
2383  *    formatting rules set in SilcClientParams.  If the `priority' is TRUE
2384  *    then the `client_entry' will always get the unformatted nickname.
2385  *    If FALSE and there are more than one same nicknames in the client
2386  *    the nickname will be formatted.
2387  *
2388  *    This returns NULL on error.  Otherwise, the client entry that was
2389  *    formatted is returned.  If `priority' is FALSE this always returns
2390  *    the `client_entry'.  If it is TRUE, this may return the client entry
2391  *    that was formatted after giving the `client_entry' the unformatted
2392  *    nickname.
2393  *
2394  *    Usually application does not need to call this function, as the library
2395  *    automatically formats nicknames.  However, if application wants to
2396  *    for example force the `client_entry' to always have the unformatted
2397  *    nickname it may call this function to do so.
2398  *
2399  ***/
2400 SilcClientEntry silc_client_nickname_format(SilcClient client,
2401                                             SilcClientConnection conn,
2402                                             SilcClientEntry client_entry,
2403                                             SilcBool priority);
2404
2405 /****f* silcclient/SilcClientAPI/silc_client_nickname_parse
2406  *
2407  * SYNOPSIS
2408  *
2409  *    SilcBool silc_client_nickname_parse(SilcClient client,
2410  *                                        SilcClientConnection conn,
2411  *                                        char *nickname,
2412  *                                        char **ret_nick);
2413  *
2414  * DESCRIPTION
2415  *
2416  *    Parses the `nickname' according to the format string given in the
2417  *    SilcClientParams.  Returns the parsed nickname into the `ret_nick'.
2418  *    The caller must free the returned pointer.  Returns FALSE if error
2419  *    occurred during parsing.  Returns TRUE if the nickname was parsed,
2420  *    it was not formatted or if the format string has not been specified
2421  *    in SilcClientParams.
2422  *
2423  ***/
2424 SilcBool silc_client_nickname_parse(SilcClient client,
2425                                     SilcClientConnection conn,
2426                                     char *nickname,
2427                                     char **ret_nick);
2428
2429 #ifdef __cplusplus
2430 }
2431 #endif
2432
2433 #endif /* SILCCLIENT_H */