SilcLocalNetSecurity

NAME

    typedef enum { ... } SilcLocalNetSecurity

DESCRIPTION

The security flags for the local network listener. They specify how the listener can be accessed. The flags are a bitmasks and can be combined. Note that, these flags apply only when this API is used. Anyone in local machine is able to see the network listener port by checking all bound network listeners and thus are able to connect to it.

SOURCE

typedef enum {
  SILC_LOCAL_NET_ALL    = 0x0000,     /* Anyone in local machine can connect */
  SILC_LOCAL_NET_USER   = 0x0001,     /* Same user can connect */
  SILC_LOCAL_NET_GROUP  = 0x0002,     /* Same group can connect */
} SilcLocalNetSecurity;