Repository

facebook/folly

An open-source C++ library developed and used at Facebook.
25224 5023 1037 1031
  • 000
I have initialized a AsyncSSLSocket and then Accepting a connection using AsyncSSLSocket.sslAccept() function, but in that function ssl is not being initialized which is causing AsyncSSLSocket.sslAccept() to fail. Example.cpp SSL_CTX* ctx = SSL_CTX_new(TLS_server_method()); SSL_CTX_set_cipher_list(c...
  • 000
find_package(Threads REQUIRED) find_package(gflags REQUIRED) find_package(glog REQUIRED) add_subdirectory(third_party/folly) if(TARGET Folly::folly) message(STATUS "Folly found") else() message(STATUS "Folly not found") endif() Folly::folly not found by using above commands in CMakeList.txt. What sh...