pajoye          Sat Jul 29 22:52:48 2006 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/openssl        openssl.c 
  Log:
  - vi happiness++
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/openssl/openssl.c?r1=1.98.2.5.2.2&r2=1.98.2.5.2.3&diff_format=u
Index: php-src/ext/openssl/openssl.c
diff -u php-src/ext/openssl/openssl.c:1.98.2.5.2.2 
php-src/ext/openssl/openssl.c:1.98.2.5.2.3
--- php-src/ext/openssl/openssl.c:1.98.2.5.2.2  Sat Jul 29 22:39:33 2006
+++ php-src/ext/openssl/openssl.c       Sat Jul 29 22:52:48 2006
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: openssl.c,v 1.98.2.5.2.2 2006/07/29 22:39:33 pajoye Exp $ */
+/* $Id: openssl.c,v 1.98.2.5.2.3 2006/07/29 22:52:48 pajoye Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -156,10 +156,11 @@
 static int le_csr;
 static int ssl_stream_data_index;
 
-int php_openssl_get_x509_list_id(void)
+int php_openssl_get_x509_list_id(void) /* {{{ */
 {
        return le_x509;
 }
+/* }}} */
 
 /* {{{ resource destructors */
 static void php_pkey_free(zend_rsrc_list_entry *rsrc TSRMLS_DC)
@@ -202,7 +203,7 @@
 /* true global; readonly after module startup */
 static char default_ssl_conf_filename[MAXPATHLEN];
 
-struct php_x509_request {
+struct php_x509_request { /* {{{ */
        LHASH * global_config;  /* Global SSL config */
        LHASH * req_config;             /* SSL config for this request */
        const EVP_MD * md_alg;
@@ -219,7 +220,7 @@
 
        EVP_PKEY * priv_key;
 };
-
+/* }}} */
 
 static X509 * php_openssl_x509_from_zval(zval ** val, int makeresource, long * 
resourceval TSRMLS_DC);
 static EVP_PKEY * php_openssl_evp_from_zval(zval ** val, int public_key, char 
* passphrase, int makeresource, long * resourceval TSRMLS_DC);
@@ -230,7 +231,7 @@
 static EVP_PKEY * php_openssl_generate_private_key(struct php_x509_request * 
req TSRMLS_DC);
 
 
-static void add_assoc_name_entry(zval * val, char * key, X509_NAME * name, int 
shortname TSRMLS_DC)
+static void add_assoc_name_entry(zval * val, char * key, X509_NAME * name, int 
shortname TSRMLS_DC) /* {{{ */
 {
        zval *subitem, *subentries;
        int i, j = -1, last = -1, obj_cnt = 0;
@@ -285,13 +286,15 @@
        }
        zend_hash_update(HASH_OF(val), key, strlen(key) + 1, (void *)&subitem, 
sizeof(subitem), NULL);
 }
+/* }}} */
 
-static void add_assoc_asn1_string(zval * val, char * key, ASN1_STRING * str)
+static void add_assoc_asn1_string(zval * val, char * key, ASN1_STRING * str) 
/* {{{ */
 {
        add_assoc_stringl(val, key, str->data, str->length, 1);
 }
+/* }}} */
 
-static time_t asn1_time_to_time_t(ASN1_UTCTIME * timestr TSRMLS_DC)
+static time_t asn1_time_to_time_t(ASN1_UTCTIME * timestr TSRMLS_DC) /* {{{ */
 {
 /*
        This is how the time string is formatted:
@@ -359,12 +362,14 @@
 
        return ret;
 }
+/* }}} */
 
 static inline int php_openssl_config_check_syntax(
                const char * section_label,
                const char * config_filename,
                const char * section,
-               LHASH * config TSRMLS_DC)
+               LHASH * config TSRMLS_DC
+               ) /* {{{ */
 {
        X509V3_CTX ctx;
        
@@ -379,8 +384,9 @@
        }
        return SUCCESS;
 }
+/* }}} */
 
-static int add_oid_section(struct php_x509_request * req TSRMLS_DC)
+static int add_oid_section(struct php_x509_request * req TSRMLS_DC) /* {{{ */
 {
        char * str;
        STACK_OF(CONF_VALUE) * sktmp;
@@ -405,6 +411,7 @@
        }
        return SUCCESS;
 }
+/* }}} */
 
 #define PHP_SSL_REQ_INIT(req)          memset(req, 0, sizeof(*req))
 #define PHP_SSL_REQ_DISPOSE(req)       php_openssl_dispose_config(req 
TSRMLS_CC)
@@ -431,7 +438,7 @@
                struct php_x509_request * req,
                zval * optional_args
                TSRMLS_DC
-               )
+               ) /* {{{ */
 {
        char * str;
        zval ** item;
@@ -509,8 +516,9 @@
        
        return SUCCESS;
 }
+/* }}} */
 
-static void php_openssl_dispose_config(struct php_x509_request * req TSRMLS_DC)
+static void php_openssl_dispose_config(struct php_x509_request * req 
TSRMLS_DC) /* {{{ */
 {
        if (req->priv_key) {
                EVP_PKEY_free(req->priv_key);
@@ -525,8 +533,9 @@
                req->req_config = NULL;
        }
 }
+/* }}} */
 
-static int php_openssl_load_rand_file(const char * file, int *egdsocket, int 
*seeded)
+static int php_openssl_load_rand_file(const char * file, int *egdsocket, int 
*seeded) /* {{{ */
 {
        char buffer[MAXPATHLEN];
 
@@ -556,8 +565,9 @@
        *seeded = 1;
        return SUCCESS;
 }
+/* }}} */
 
-static int php_openssl_write_rand_file(const char * file, int egdsocket, int 
seeded)
+static int php_openssl_write_rand_file(const char * file, int egdsocket, int 
seeded) /* {{{ */
 {
        char buffer[MAXPATHLEN];
 
@@ -577,6 +587,7 @@
        }
        return SUCCESS;
 }
+/* }}} */
 
 static EVP_MD * php_openssl_get_evp_md_from_algo(long algo) { /* {{{ */
        EVP_MD *mdtype;
@@ -3156,7 +3167,7 @@
 #define GET_VER_OPT(name)               (stream->context && SUCCESS == 
php_stream_context_get_option(stream->context, "ssl", name, &val))
 #define GET_VER_OPT_STRING(name, str)   if (GET_VER_OPT(name)) { 
convert_to_string_ex(val); str = Z_STRVAL_PP(val); }
 
-static int verify_callback(int preverify_ok, X509_STORE_CTX *ctx)
+static int verify_callback(int preverify_ok, X509_STORE_CTX *ctx) /* {{{ */
 {
        php_stream *stream;
        SSL *ssl;
@@ -3193,8 +3204,9 @@
        return ret;
 
 }
+/* }}} */
 
-int php_openssl_apply_verification_policy(SSL *ssl, X509 *peer, php_stream 
*stream TSRMLS_DC)
+int php_openssl_apply_verification_policy(SSL *ssl, X509 *peer, php_stream 
*stream TSRMLS_DC) /* {{{ */
 {
        zval **val = NULL;
        char *cnmatch = NULL;
@@ -3262,8 +3274,9 @@
 
        return SUCCESS;
 }
+/* }}} */
 
-static int passwd_callback(char *buf, int num, int verify, void *data)
+static int passwd_callback(char *buf, int num, int verify, void *data) /* {{{ 
*/
 {
     php_stream *stream = (php_stream *)data;
     zval **val = NULL;
@@ -3280,8 +3293,9 @@
     }
     return 0;
 }
+/* }}} */
 
-SSL *php_SSL_new_from_context(SSL_CTX *ctx, php_stream *stream TSRMLS_DC)
+SSL *php_SSL_new_from_context(SSL_CTX *ctx, php_stream *stream TSRMLS_DC) /* 
{{{ */
 {
        zval **val = NULL;
        char *cafile = NULL;
@@ -3371,7 +3385,7 @@
 
        return NULL;
 }
-
+/* }}} */
 
 /*
  * Local variables:

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to