Function silc_client_get_channel_by_id_resolve
SYNOPSIS
SilcUInt16
silc_client_get_channel_by_id_resolve(SilcClient client,
SilcClientConnection conn,
SilcChannelID *channel_id,
SilcGetClientCallback completion,
void *context);
DESCRIPTION
Resolves the channel information (its name mainly) from the server
by the `channel_id'. Use this only if you know that you do not have
the entry cached locally. The resolving is done with IDENTIFY command.
Returns command identifier for the resolving. It can be used to attach
a pending command to it, if needed. Returns 0 on error.
Note that users on the channel are not resolved at the same time.
Use for example USERS command to resolve all users on a channel.
|