SILC Core Library
    SILC Auth API
    SILC Channel API
    SILC Command API
    SILC ID API
    SILC ID Cache API
    SILC Modes
    SILC Notify API
    SILC Packet API
    SILC Payload API
    SILC Private API
SILC Math Library
    SILC Math API
    SILC MP API
SILC SFTP Library
    SILC SFTP API
    SILC SFTP Filesystems
SILC Utility Library
    SILC Buffer API
    SILC Buffer Format API
    SILC Buffer Utility API
    SILC Hash Table API
    SILC Log and Debug API
    SILC Memory API
    SILC Mutex API
    SILC Thread API
    SILC Net API
    SILC Schedule API
    SILC Socket Connection API
    SILC Protocol API
    SILC Util API
    SILC Zip API
    SILC List API
    SILC Dynamic List API
SILC Key Exchange Library
    SILC SKE API
    SILC SKE Status
SILC Client Library
    SILC Client API
SILC Crypto Library
    SILC Cipher API
    SILC Hash API
    SILC HMAC API
    SILC PKCS API
    SILC RNG API
SilcCommandFlags

NAME
 
    typedef enum { ... } SilcCommandFlags;

DESCRIPTION

    Command flags that set how the commands behave on different
    situations. These can be OR'es together to set multiple flags.
    The application is resoponsible of implementing the behaviour
    of these flags. These are here just to define generic flags.
    The server usually makes use of these flags.

SOURCE
    typedef enum {
      SILC_CF_NONE           = 0,
    
      /* Command may only be used once per (about) 2 seconds. Bursts up
         to 5 commands are allowed though. */
      SILC_CF_LAG            = (1L << 1),
    
      /* Command may only be used once per (about) 2 seconds. No bursts
         are allowed at all. */
      SILC_CF_LAG_STRICT     = (1L << 2),
    
      /* Command is available for registered connections (connections
         whose ID has been created. */
      SILC_CF_REG            = (1L << 3),
    
      /* Command is available only for server operators */
      SILC_CF_OPER           = (1L << 4),
    
      /* Command is available only for SILC (router) operators. If this 
         is set SILC_CF_OPER is not necessary to be set. */
      SILC_CF_SILC_OPER      = (1L << 5),
    
    } SilcCommandFlag;
>> SilcCommandAPI
>> SilcCommandCb
>> SilcCommandPayload
>> SilcCommandFlags
>> SilcCommand
>> SilcCommandStatus
>> silc_command_payload_parse
>> silc_command_payload_encode
>> silc_command_payload_encode_payload
>> silc_command_payload_encode_va
>> silc_command_payload_encode_vap
>> silc_command_reply_payload_encode_va
>> silc_command_free
>> silc_command_get
>> silc_command_get_args
>> silc_command_get_ident
>> silc_command_set_ident
>> silc_command_set_command