Function SilcGetChannelCallback
SYNOPSIS
typedef void (*SilcGetChannelCallback)(SilcClient client,
SilcClientConnection conn,
SilcStatus status,
SilcDList channels,
void *context);
DESCRIPTION
Callback function given to various channel resolving functions.
The found entries are included in the `channels' list and each entry
in the list is SilcChannelEntry. If `channels' is NULL then no such
channel exist in the network and the `status' will indicate the error.
NOTES
If the application stores any of the SilcChannelEntry pointers from
the `channels' list it must reference it with silc_client_ref_channel
function.
Application must not free the returned `channels' list.
|