Latest update
This commit is contained in:
+2
-2
@@ -94,7 +94,7 @@ SSL_SESSION *SSL_SESSION_new(void)
|
||||
return ss;
|
||||
}
|
||||
|
||||
SSL_SESSION *SSL_SESSION_dup(SSL_SESSION *src)
|
||||
SSL_SESSION *SSL_SESSION_dup(const SSL_SESSION *src)
|
||||
{
|
||||
return ssl_session_dup(src, 1);
|
||||
}
|
||||
@@ -103,7 +103,7 @@ SSL_SESSION *SSL_SESSION_dup(SSL_SESSION *src)
|
||||
* Create a new SSL_SESSION and duplicate the contents of |src| into it. If
|
||||
* ticket == 0 then no ticket information is duplicated, otherwise it is.
|
||||
*/
|
||||
SSL_SESSION *ssl_session_dup(SSL_SESSION *src, int ticket)
|
||||
SSL_SESSION *ssl_session_dup(const SSL_SESSION *src, int ticket)
|
||||
{
|
||||
SSL_SESSION *dest;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user