downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

EventUtil> <EventSslContext
[edit] Last updated: Fri, 17 May 2013

view this page in

EventSslContext::__construct

(PECL event >= 1.2.6-beta)

EventSslContext::__constructConstructs an OpenSSL context for use with Event classes

Description

public EventSslContext::__construct ( string $method , string $options )

Creates SSL context holding pointer to SSL_CTX (see the system manual).

Warning

This function is currently not documented; only its argument list is available.

Parameters

method

One of EventSslContext::*_METHOD constants .

options

Associative array of SSL context options One of EventSslContext::OPT_* constants .

Return Values

Returns EventSslContext object.

Examples

Example #1 EventSslContext::__construct() example

<?php
$ctx 
= new EventSslContext(EventSslContext::SSLv3_SERVER_METHOD, array (
         
EventSslContext::OPT_LOCAL_CERT  => $local_cert,
         
EventSslContext::OPT_LOCAL_PK    => $local_pk,
         
//EventSslContext::OPT_PASSPHRASE  => "echo server",
         
EventSslContext::OPT_VERIFY_PEER => true,
         
EventSslContext::OPT_ALLOW_SELF_SIGNED => false,
         ));
?>


add a note add a note User Contributed Notes EventSslContext::__construct - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites