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