index
:
~steering
/
inspircd++.git
this commit
insp2
insp4
Unnamed repository; edit this file 'description' to name the repository.
steering7253
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
modules
/
extra
/
m_ssl_openssl.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Merge insp20
Attila Molnar
2016-08-17
1
-1
/
+7
|
\
|
*
m_ssl_openssl Verify DH params being non-NULL before setting it on the context
•••
Fixes issue reported by @m4rkw on IRC
Attila Molnar
2016-07-22
1
-4
/
+11
|
*
m_ssl_gnutls, m_ssl_openssl After a read schedule another read if data remain...
Attila Molnar
2016-06-21
1
-1
/
+8
*
|
m_ssl_* Add option to sslprofile controlling whether to request client certif...
Attila Molnar
2016-08-08
1
-1
/
+10
*
|
Add StreamSocket::GetModHook() for obtaining the IOHook belonging to a given ...
•••
Use it to simplify logic in all modules using or providing IOHooks
Attila Molnar
2016-08-08
1
-8
/
+4
*
|
Pass sendq to OnStreamSocketWrite
Attila Molnar
2016-08-08
1
-2
/
+1
*
|
Deduplicate code for on connect SSL ciphersuite NOTICE by moving it into m_ss...
Attila Molnar
2016-04-28
1
-22
/
+0
*
|
Export the GetCiphersuite() method from the SSL modules
Attila Molnar
2016-04-28
1
-1
/
+3
*
|
m_ssl_openssl Disable compression and SSL v3 by default
Attila Molnar
2015-11-10
1
-2
/
+2
*
|
m_ssl_openssl Add workaround for a memory leak in OpenSSL
Attila Molnar
2015-11-10
1
-1
/
+9
*
|
m_ssl_openssl Implement custom BIO methods that call SocketEngine methods
Attila Molnar
2015-07-07
1
-3
/
+86
*
|
m_ssl_openssl Remove NULL check of the session in OpenSSLIOHook constructor
Attila Molnar
2015-07-07
1
-2
/
+0
*
|
m_ssl_openssl Use SSL_MODE_RELEASE_BUFFERS if available
Attila Molnar
2015-07-06
1
-1
/
+6
*
|
m_ssl_openssl Enable ECDH when acting as a server on OpenSSL 1.0.0 and later
Attila Molnar
2015-07-06
1
-0
/
+5
*
|
m_ssl_openssl Unconditionally compile code for detecting renegotiation and di...
Attila Molnar
2015-07-06
1
-9
/
+1
*
|
m_ssl_gnutls, m_ssl_openssl Log library version information on load
Attila Molnar
2015-06-22
1
-0
/
+2
*
|
Call OnStreamSocketWrite() once per write event
•••
Do sendq flattening in SSL modules, move code for it into class SSLIOHook from core
Attila Molnar
2015-06-06
1
-3
/
+8
*
|
Add max outgoing record size option to sslprofile config
Attila Molnar
2015-06-06
1
-0
/
+6
*
|
Convert all code to use StreamSocket::SendQueue
•••
Let OnStreamSocketWrite see the entire sendq instead of one element at a time
Attila Molnar
2015-06-06
1
-2
/
+4
*
|
Merge insp20
Attila Molnar
2015-05-10
1
-0
/
+14
|
\
|
*
|
m_ssl_openssl Remove OpenSSLIOHook::outbound and is_outbound constructor para...
Attila Molnar
2015-03-05
1
-5
/
+3
*
|
m_ssl_openssl Specify TLS client/server role on session creation, switch to S...
Attila Molnar
2015-03-05
1
-11
/
+14
*
|
m_ssl_gnutls, m_ssl_openssl Deduplicate Handshake() calling code
Attila Molnar
2015-03-05
1
-25
/
+23
*
|
m_ssl_gnutls, m_ssl_openssl Simplify status handling in IOHook read/write han...
•••
Remove states ISSL_CLOSING and ISSL_CLOSED from m_ssl_gnutls
Attila Molnar
2015-03-05
1
-8
/
+3
*
|
m_ssl_gnutls, m_ssl_openssl Simplify Handshake() result handling
Attila Molnar
2015-03-05
1
-21
/
+13
*
|
m_ssl_gnutls, m_ssl_openssl Prepend TLS protocol version to ciphersuite string
Attila Molnar
2015-01-27
1
-0
/
+1
*
|
m_ssl_gnutls, m_ssl_openssl Extract code that builds a ciphersuite string int...
Attila Molnar
2015-01-27
1
-1
/
+8
*
|
Reduce std::string::substr() usage
•••
substr() returns a new string while erase() and assign() modify the existing one
Attila Molnar
2015-01-10
1
-1
/
+1
*
|
Fix warnings in m_ssl_openssl about the use of `long long` on C++03.
Peter Powell
2014-12-07
1
-0
/
+7
*
|
Merge insp20
Attila Molnar
2014-10-27
1
-8
/
+147
|
\
|
|
*
Remove some dead code found by Coverity
Attila Molnar
2014-10-26
1
-3
/
+1
|
*
m_ssl_openssl Add compile time option that allows disabling renegotiations
Attila Molnar
2014-10-20
1
-0
/
+61
|
*
m_ssl_openssl Add compile time option to enable ECDH
Attila Molnar
2014-10-20
1
-0
/
+36
|
*
Initialize all fields of issl_session on module load in SSL modules
Attila Molnar
2014-10-16
1
-0
/
+2
|
*
Add interface to SSL modules that allows other modules to obtain the raw SSL ...
Attila Molnar
2014-10-16
1
-0
/
+6
|
*
m_ssl_openssl Fix debug message
Attila Molnar
2014-10-15
1
-1
/
+1
|
*
m_ssl_openssl Reset data_to_write for new sessions
Attila Molnar
2014-10-15
1
-0
/
+2
|
*
m_ssl_openssl Free the ssl_cert object as soon as the session is closed inste...
Attila Molnar
2014-10-15
1
-1
/
+1
|
*
m_ssl_openssl Remove bogus errno assignment from CloseSession()
Attila Molnar
2014-10-15
1
-1
/
+0
|
*
m_ssl_openssl Return an error from the IOHook read and write functions if the...
•••
The meaning of a 0 return value quoted from the manual: The TLS/SSL handshake was not successful but was shut down controlled and by the specifications of the TLS/SSL protocol.
Attila Molnar
2014-10-14
1
-1
/
+1
|
*
m_ssl_openssl Add user-friendly config options for setting a few OpenSSL cont...
Attila Molnar
2014-10-14
1
-0
/
+14
|
*
m_ssl_openssl Allow configuring raw OpenSSL context options
Attila Molnar
2014-10-10
1
-2
/
+27
|
*
m_ssl_openssl Disable session caching and session tickets
Attila Molnar
2014-10-10
1
-2
/
+5
|
*
m_ssl_openssl Enable single (EC)DH use and disable SSL v2
•••
Options enabled: - SSL_OP_NO_SSLv2 - SSL_OP_SINGLE_DH_USE - SSL_OP_SINGLE_ECDH_USE (if it exists) Partial backport of #856 by @jvehent
Attila Molnar
2014-10-10
1
-0
/
+9
|
*
m_ssl_openssl Clear the error queue before every SSL_* call
Attila Molnar
2014-10-08
1
-0
/
+9
*
|
m_ssl_openssl Store a pointer to the OpenSSLIOHook object in SSL objects
Attila Molnar
2014-10-27
1
-0
/
+8
*
|
m_ssl_openssl Read the DH params file using the BIO API on all OSes
Attila Molnar
2014-07-25
1
-10
/
+2
*
|
Merge insp20
Attila Molnar
2014-07-25
1
-7
/
+17
|
\
|
|
*
Make sure the DN strings obtained from the SSL mods are always valid
Attila Molnar
2014-07-24
1
-0
/
+6
|
*
Change Windows libraries to be dynamically linked
Adam
2014-04-13
1
-7
/
+2
[next]