COmment updates.
authorPekka Riikonen <priikone@silcnet.org>
Fri, 1 Jun 2007 16:28:28 +0000 (16:28 +0000)
committerPekka Riikonen <priikone@silcnet.org>
Fri, 1 Jun 2007 16:28:28 +0000 (16:28 +0000)
lib/doc/porting.html
lib/silcclient/silcclient.h
lib/silcclient/silcclient_entry.h

index 8ba22464af37dcf1623a09b297513c7cdd3bea4c..630b3ed25b9c158df860e55d9a258e529f53bc39 100644 (file)
@@ -630,7 +630,7 @@ been moved from lib/silccore into lib/silcapputil/.
 <h3><a name="skr"></a>SILC Key Repository library, lib/silcskr/</h3>
 
 A new SILC Key Repository library has been added.  The library provides
-a SILC Key Repository API (a href="silcskr.html">silcskr.h</a>) which provides
+a SILC Key Repository API (<a href="silcskr.html">silcskr.h</a>) which provides
 a repository for storing and retrieving public keys.
 
 <br />&nbsp;<br />
index c67157e600270ecb418cfe31888872c3df23547f..f0e7fc8ae4ea4691bd391285adc5ae65f0ee9726 100644 (file)
@@ -437,8 +437,7 @@ typedef void (*SilcVerifyPublicKey)(SilcBool success, void *context);
  *
  * SYNOPSIS
  *
- *    typedef void (*SilcGetAuthMeth)(SilcBool success,
- *                                    SilcAuthMethod auth_meth,
+ *    typedef void (*SilcGetAuthMeth)(SilcAuthMethod auth_meth,
  *                                    const void *auth, SilcUInt32 auth_len,
  *                                    void *context);
  *
index 94106badbd4f10ef95a4bc0085de0f20a74e7119..d88bad8e1e39af75f1e2574fb540758ca3c41964 100644 (file)
@@ -442,46 +442,6 @@ SilcDList silc_client_get_clients_local(SilcClient client,
                                        const char *nickname,
                                        SilcBool return_all);
 
-/****f* silcclient/SilcClientAPI/silc_client_get_clients_by_channel
- *
- * SYNOPSIS
- *
- *    void silc_client_get_clients_by_channel(SilcClient client,
- *                                            SilcClientConnection conn,
- *                                            SilcChannelEntry channel,
- *                                            SilcGetClientCallback completion,
- *                                            void *context);
- *
- * DESCRIPTION
- *
- *    Gets client entries by the channel indicated by `channel'. Thus,
- *    it resovles the users currently on that channel. If all users are
- *    already resolved this returns the users from the channel. If the
- *    users are resolved only partially this resolves the complete user
- *    information. If no users are resolved on this channel at all, this
- *    calls USERS command to resolve all users on the channel. The `completion'
- *    will be called after the entries are available. When server returns
- *    the client information it will be cached and can be accessed locally
- *    at a later time.
- *
- *    This function can be used for example in SILC_COMMAND_JOIN command
- *    reply handling in application to resolve users on that channel.  It
- *    also can be used after calling silc_client_get_channel_resolve to
- *    resolve users on that channel.
- *
- * NOTES
- *
- *    The resolving is done with WHOIS command.  For this reason this
- *    command may take a long time because it resolves detailed user
- *    information.
- *
- ***/
-void silc_client_get_clients_by_channel(SilcClient client,
-                                       SilcClientConnection conn,
-                                       SilcChannelEntry channel,
-                                       SilcGetClientCallback completion,
-                                       void *context);
-
 /****f* silcclient/SilcClientAPI/silc_client_get_client_by_id
  *
  * SYNOPSIS