| SilcSFTPMonitors
 
 NAME
 
    typedef enum { ... } SilcSFTPMonitors;
DESCRIPTION
    SFTP server monitor types. These can be masked together to monitor
    various client requests.
SOURCE    typedef enum {
      SILC_SFTP_MONITOR_INIT        = 0x0001,
      SILC_SFTP_MONITOR_OPEN        = 0x0002,
      SILC_SFTP_MONITOR_CLOSE       = 0x0004,
      SILC_SFTP_MONITOR_READ        = 0x0008,
      SILC_SFTP_MONITOR_WRITE       = 0x0010,
      SILC_SFTP_MONITOR_REMOVE      = 0x0020,
      SILC_SFTP_MONITOR_RENAME      = 0x0040,
      SILC_SFTP_MONITOR_MKDIR       = 0x0080,
      SILC_SFTP_MONITOR_RMDIR       = 0x0100,
      SILC_SFTP_MONITOR_OPENDIR     = 0x0200,
      SILC_SFTP_MONITOR_READDIR     = 0x0400,
      SILC_SFTP_MONITOR_STAT        = 0x0800,
      SILC_SFTP_MONITOR_LSTAT       = 0x1000,
      SILC_SFTP_MONITOR_FSTAT       = 0x2000,
      SILC_SFTP_MONITOR_SETSTAT     = 0x4000,
      SILC_SFTP_MONITOR_FSETSTAT    = 0x8000,
      SILC_SFTP_MONITOR_READLINK    = 0x10000,
      SILC_SFTP_MONITOR_SYMLINK     = 0x20000,
      SILC_SFTP_MONITOR_REALPATH    = 0x40000,
      SILC_SFTP_MONITOR_EXTENDED    = 0x80000,
    } SilcSFTPMonitors;
 
 
 
 |