typedef NS_OPTIONS()

in Classes/TLSProtocols.h [25:41]


typedef NS_OPTIONS(NSInteger, TLSFilterStatus)
{
    /** OK means no filtering */
    TLSFilterStatusOK = 0,
    /** The log level prevented logging the message */
    TLSFilterStatusCannotLogLevel = (1 << 0),
    /** The log channel prevented logging the message */
    TLSFilterStatusCannotLogChannel = (1 << 1),
    /** The log context prevented logging the message */
    TLSFilterStatusCannotLogContextObject = (1 << 2),

    /**
     Provide this as the reason if the reason for filtering is not due to the log level,
     log channel or log context object nor due to an exclusive combination of those 3.
     */
    TLSFilterStatusCannotLogExternal = (1 << 7)
};