OpenSSL.Core.Native.SSL_CTX_set_options C# (CSharp) Method

SSL_CTX_set_options() public static method

//#define SSL_CTX_set_options in ssl.h - calls SSL_CTX_ctrl
public static SSL_CTX_set_options ( IntPtr ctx, int op ) : int
ctx IntPtr
op int
return int
        public static int SSL_CTX_set_options(IntPtr ctx, int op)
        {
            return SSL_CTX_ctrl(ctx, SSL_CTRL_OPTIONS, op, IntPtr.Zero);
        }
Native