Github user nsuke commented on a diff in the pull request:

    https://github.com/apache/thrift/pull/930#discussion_r55929034
  
    --- Diff: lib/c_glib/src/thrift/c_glib/transport/thrift_ssl_socket.c ---
    @@ -0,0 +1,700 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one
    + * or more contributor license agreements. See the NOTICE file
    + * distributed with this work for additional information
    + * regarding copyright ownership. The ASF licenses this file
    + * to you under the Apache License, Version 2.0 (the
    + * "License"); you may not use this file except in compliance
    + * with the License. You may obtain a copy of the License at
    + *
    + *   http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing,
    + * software distributed under the License is distributed on an
    + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    + * KIND, either express or implied. See the License for the
    + * specific language governing permissions and limitations
    + * under the License.
    + */
    +
    +#include <errno.h>
    +#include <netdb.h>
    +#include <stdlib.h>
    +#include <string.h>
    +#include <unistd.h>
    +#include <sys/socket.h>
    +#include <netinet/in.h>
    +#include <openssl/ssl.h>
    +
    +#include <thrift/c_glib/thrift.h>
    +#include <thrift/c_glib/transport/thrift_transport.h>
    +#include <thrift/c_glib/transport/thrift_socket.h>
    +#include <thrift/c_glib/transport/thrift_ssl_socket.h>
    +
    +#define OPENSSL_VERSION_NO_THREAD_ID 0x10000000L
    +
    +
    +/* object properties */
    +enum _ThriftSSLSocketProperties
    +{
    +   PROP_THRIFT_SSL_SOCKET_CONTEXT = 3
    +};
    +
    +/* for errors coming from socket() and connect() */
    +// extern int errno;
    +
    +// To hold a global state management of openssl for all instances
    +static gboolean thrift_ssl_socket_openssl_initialized=FALSE;
    +static SSL_CTX* thrift_ssl_socket_global_context=NULL; // Should this be 
keept at class level?
    +
    +#if (OPENSSL_VERSION_NUMBER < OPENSSL_VERSION_NO_THREAD_ID)
    +static unsigned long callbackThreadID() {
    +   return (unsigned long)pthread_self();
    +}
    +#endif
    +
    +
    +static void thrift_ssl_socket_static_locking_callback(int mode, int n, 
const char* unk, int id) {
    +   if (mode & CRYPTO_LOCK) {
    +           //              g_printf("We should lock thread %d\n", n);
    +           //mutexes[n].lock();
    +   } else {
    +           //              g_printf("We should unlock thread %d\n", n);
    +           //mutexes[n].unlock();
    +   }
    +}
    --- End diff --
    
    Why you commented out entire method body ?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to