Skip to content
Snippets Groups Projects
Commit 5b1d8571 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Implemented work-around for bug in SSLeay 0.9.

The identity is now 16 bytes (only 8 variant).

Rev: lib/modules/SSL.pmod/context.pike:1.5
parent ff7bbaef
No related branches found
No related tags found
No related merge requests found
/* $Id: context.pike,v 1.4 1997/05/31 22:03:54 grubba Exp $
/* $Id: context.pike,v 1.5 1998/06/23 13:46:39 grubba Exp $
*
* Keeps track of global data for an SSL server,
* such as preferred encryption algorithms and session cache.
......@@ -72,7 +72,8 @@ object lookup_session(string id)
object new_session()
{
object s = Session();
s->identity = (use_cache) ? sprintf("%4c%4c", time(), session_number++) : "";
s->identity = (use_cache) ? sprintf("%4cPikeSSL3%4c",
time(), session_number++) : "";
return s;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment