apply clang-tidy modernize-use-override
[folly.git] / folly / io / async / AsyncSSLSocket.cpp
2017-06-08 Christopher DykesRefer to nullptr not NULL
2017-05-23 Christopher DykesMake a few implicit truncations either explicit, or...
2017-05-09 Christopher DykesCodemod folly::make_unique to std::make_unique
2017-05-01 Anirudh RamachandranMore OpenSSL 1.1.0 compatibility fixes
2017-04-11 Christopher DykesTreat OpenSSL as a non-portable include
2017-04-04 Anirudh RamachandranOpenSSL 1.1.0 compatibility
2017-03-10 Kyle NekritzFix use after move in AsyncSSLSocket constructor.
2017-03-10 Maxim GeorgievImplementing a callback interface for folly::AsyncSocke...
2017-03-09 Kyle NekritzReplace MSG_PEEK with a pre-received data interface.
2017-03-07 Anirudh RamachandranAdd a few more methods to OpenSSLCertUtils
2017-03-05 Subodh IyengarAdd getTotalConnectTimeout method
2017-03-02 Subodh IyengarAdd a method to AsyncSSLSocket to supply connect timeouts
2017-02-15 Anton LikhtarovFix undefined behaviour
2017-02-01 Christopher DykesSwap a few APIs to reduce sign and implicit truncations...
2017-01-28 Jason RahmanRFC: Include timeout duration in exception message
2017-01-27 Christopher DykesMake most implicit integer truncations and sign convers...
2017-01-24 Ryan WilsonAdd needsPeerVerification function to check if peer...
2017-01-20 Luca NiccoliniRevert D4389970: add an option to clear error before...
2017-01-20 Maxim GeorgievEnable EOR flag configuration for folly::AsyncSocket.
2017-01-13 Dave WatsonAdd AsyncSSLSocket option to turn off transparent tls
2017-01-11 Subodh Iyengaradd an option to clear error before calling ssl methods
2017-01-09 Kyle NekritzAdd pre received data API to AsyncSSLSocket.
2017-01-09 Kyle NekritzSet custom ssl bio read method.
2017-01-08 Igor Sugakremove always true if-predicate (gcc-5 -Wlogical-op)
2017-01-04 Yedidya Feldblum2017
2017-01-02 Zonr ChangAdd FOLLY_OPENSSL_HAS_ALPN and FOLLY_OPENSSL_HAS_SNI.
2016-12-29 Anirudh RamachandranAdd OpenSSL portability layer
2016-12-23 Christopher DykesUse std::chrono for timeouts to sslAccept and sslConn...
2016-12-13 Neel GoyalAdd evb change callback to SSL Socket
2016-12-12 Christopher DykesDon't declare a variable for exceptions we discard
2016-12-12 Christopher DykesFix some implicit truncation and sign coersion in the...
2016-12-10 Kyle NekritzLog supported versions extension in AsyncSSLSocket.
2016-12-01 Subodh IyengarFix assertion in unit test
2016-11-25 Subodh IyengarFix TFO refused case
2016-11-07 Stepan PalamarchukRemove noexcept from AsyncSocket::prepareReadBuffer
2016-10-31 Kyle NekritzUse MSG_MORE instead of 2 setsockopt calls on every...
2016-09-26 Anirudh RamachandranAsyncSSLSocket::getSSLClientCiphers using static map
2016-09-15 Neel GoyalAdd flag to indicate a session resumption attempt
2016-09-08 Denis Samoylovmove AsyncSSLSocket logging level for errors to vlog
2016-08-23 Heng Hong LeeAsyncSSLSocket getRawBytes fix
2016-08-17 Christopher DykesAdd a pair of util functions for getting and setting...
2016-08-17 Subodh IyengarInvoking correct callback during TFO fallback
2016-08-17 Subodh IyengarFix ssl timeouts during TFO
2016-08-16 Kyle NekritzFix extension length counter in client hello parsing.
2016-08-09 Subodh IyengarAdd MSG_NOSIGNAL to AsyncSSLSocket
2016-07-29 Anirudh RamachandranAdd a const getter for X509 used in handshake (server... v2016.07.29.00
2016-07-06 Anirudh RamachandranCleanup of how we use BIO/BIO_METHODs
2016-06-07 Subodh IyengarAdd TFO support to AsyncSSLSocket
2016-06-03 Subodh IyengarAlways override write bio method
2016-05-30 Christopher DykesSwitch uses of networking headers to <folly/portability...
2016-05-30 Christopher DykesSwitch uses of <unistd.h> to <folly/portability/Unistd.h>
2016-04-28 Subodh IyengarStop abusing errno
2016-04-27 Subodh IyengarRemove dead code in AsyncSSLSocket
2016-03-31 Kyle NekritzLog SSL alerts received on the server.
2016-03-20 Mark Reitblattfix typo in log printing in AsyncSSLSocket
2016-03-15 Subodh IyengarAllow httpsession to be movable readCB
2016-03-09 Anirudh RamachandranSSL cleanup: moving some OpenSSL definitions to new...
2016-03-04 Yang ChiRemove persistentCork in native land
2016-03-03 Kyle NekritzFix AsyncSSLSocket handshake error reporting.
2016-02-17 Anirudh RamachandranECDSA async/offloading support for proxygen
2016-02-12 Mark Isaacsonfolly copyright 2015 -> copyright 2016
2016-02-04 Neel GoyalAllow SSLSessionCallbacks to be used on SSL* that isn...
2016-02-01 Igor Sugakfolly: fix one more -Wunused-parameter
2016-01-28 Igor Sugakfolly: build with -Wunused-parameter
2016-01-27 Maxim GeorgievAdd mechanizm for caching local and peer addresses...
2015-12-09 Alan FrindellAdd support for ALPN
2015-12-07 Kyle NekritzFix segfaults in AsyncSSLSocket when used in unencrypte...
2015-11-20 Anirudh RamachandranRemove unnecessary resetClientHelloParsing callback...
2015-11-13 Yang ChiAllow a AsyncSocket to be corked the whole time
2015-11-04 Subodh IyengarAdd ability to get application protocol from AsyncTrans...
2015-10-26 Shijin Kongreturn read error on non EAGAIN errno
2015-10-15 Kyle NekritzAdd framework for switching certs based on signature_al...
2015-10-15 Subodh IyengarAdd handshake and connect times
2015-10-02 Nathan Bronsonfix compiler warnings from gcc-4.9 + -Wunused-variable
2015-09-16 Lucian Grijincufolly: io: SSLContext/AsyncSSLSocket: drop global stati...
2015-08-31 Kyle NekritzLog TLS signature_algorithms extension values.
2015-07-01 Woo Xiecheck ReadCallback before using it
2015-07-01 Woo Xiemove the socket setting into setReadCB()
2015-06-26 Woo Xieopt proxygen with newly added OpenSSL functions
2015-06-22 Igor SugakAdd missing override and remove redundant virtual in...
2015-06-15 Woo Xiedo not suppurt compress and expand
2015-06-12 Alan FrindellTemporarily disable performWriteIovec
2015-06-12 Woo Xieopt proxygen with new SSL_write_iovec function
2015-06-11 Woo Xierefactor the interpretation of SSL errors into a function
2015-06-09 Dave WatsonAsyncSSLSocket StartTLS
2015-06-03 Abhik ChatterjeeComparing against tlsExthostname_
2015-05-12 Sean CannellaLazily initialize AsyncSSLSocket EorBioMethod
2015-04-27 Jun LiMake MIN_WRITE_SIZE configurable for AsyncSSLSocket.
2015-03-03 Nicholas OrmrodCopyright 2014->2015
2015-02-11 Ranjeeth Dasineniremove stray / in include path
2014-12-18 Adam Simpkinsupdate call sites to use SpinLock
2014-11-08 Dave WatsonMove SSL socket to folly