ruby-changes:21793
From: emboss <ko1@a...>
Date: Sat, 26 Nov 2011 10:25:18 +0900 (JST)
Subject: [ruby-changes:21793] emboss:r33842 (trunk): * ext/openssl/ossl_ssl.c: add comment on where to find implementation
emboss 2011-11-26 10:25:07 +0900 (Sat, 26 Nov 2011) New Revision: 33842 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=33842 Log: * ext/openssl/ossl_ssl.c: add comment on where to find implementation of OpenSSL::SSL::SSLSocket#session. Modified files: trunk/ChangeLog trunk/ext/openssl/ossl_ssl.c Index: ChangeLog =================================================================== --- ChangeLog (revision 33841) +++ ChangeLog (revision 33842) @@ -1,3 +1,8 @@ +Sat Nov 26 10:22:28 2011 Martin Bosslet <Martin.Bosslet@g...> + + * ext/openssl/ossl_ssl.c: add comment on where to find implementation + of OpenSSL::SSL::SSLSocket#session. + Sat Nov 26 05:00:25 2011 Nobuyoshi Nakada <nobu@r...> * configure.in (--no-undefined): RUBY_TRY_CFLAGS does nothing for Index: ext/openssl/ossl_ssl.c =================================================================== --- ext/openssl/ossl_ssl.c (revision 33841) +++ ext/openssl/ossl_ssl.c (revision 33842) @@ -1956,6 +1956,7 @@ rb_define_method(cSSLSocket, "state", ossl_ssl_get_state, 0); rb_define_method(cSSLSocket, "pending", ossl_ssl_pending, 0); rb_define_method(cSSLSocket, "session_reused?", ossl_ssl_session_reused, 0); + /* implementation of OpenSSL::SSL::SSLSocket#session is in lib/openssl/ssl.rb */ rb_define_method(cSSLSocket, "session=", ossl_ssl_set_session, 1); rb_define_method(cSSLSocket, "verify_result", ossl_ssl_get_verify_result, 0); rb_define_method(cSSLSocket, "client_ca", ossl_ssl_get_client_ca_list, 0); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/