From: Todd O. <to...@us...> - 2006-04-11 20:34:39
|
Update of /cvsroot/yassl/yassl/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26097/include Modified Files: yassl_int.hpp yassl_types.hpp Log Message: merge updates from Magnus with current Index: yassl_types.hpp =================================================================== RCS file: /cvsroot/yassl/yassl/include/yassl_types.hpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** yassl_types.hpp 28 Mar 2006 23:56:41 -0000 1.1.1.1 --- yassl_types.hpp 11 Apr 2006 20:34:30 -0000 1.2 *************** *** 35,38 **** --- 35,43 ---- namespace yaSSL { + + // Delete static singleton memory holders + void CleanUp(); + + #ifdef YASSL_PURE_C Index: yassl_int.hpp =================================================================== RCS file: /cvsroot/yassl/yassl/include/yassl_int.hpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** yassl_int.hpp 28 Mar 2006 23:56:41 -0000 1.1.1.1 --- yassl_int.hpp 11 Apr 2006 20:34:30 -0000 1.2 *************** *** 122,127 **** friend sslFactory& GetSSL_Factory(); // singleton creator private: - static sslFactory instance_; - sslFactory(const sslFactory&); // hide copy sslFactory& operator=(const sslFactory&); // and assign --- 122,125 ---- *************** *** 215,220 **** friend Sessions& GetSessions(); // singleton creator private: - static Sessions instance_; - Sessions(const Sessions&); // hide copy Sessions& operator=(const Sessions&); // and assign --- 213,216 ---- |