Roxen.git/
server/
base_server/
roxen.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2015-06-16
2015-06-16 13:56:53 by Martin Karlgren <marty@roxen.com>
8468d07e63a61e80c5a7916ab61c0f25135ac2fc (
13
lines) (+
7
/-
6
)
[
Show
|
Annotate
]
Branch:
6.0
SSL.sslfile -> SSL.File
2332:
} }
-
#if constant(SSL.
sslfile
)
+
#if constant(SSL.
File
)
class SSLContext { #if constant(SSL.Context)
2926:
{ inherit StartTLSProtocol;
-
SSL.
sslfile
accept()
+
SSL.
File
accept()
{ Stdio.File q = ::accept(); if (q) {
-
SSL.
sslfile
ssl = SSL.
sslfile
(q, ctx);
+
SSL.
File
ssl = SSL.
File
(q, ctx);
if (ssl->accept) ssl->accept(); return ssl; }
2994:
foreach( glob( "prot_*.pike", get_dir("protocols") ), string s ) { sscanf( s, "prot_%s.pike", s );
-
#if !constant(SSL.
sslfile
)
+
#if !constant(SSL.
File
)
switch( s ) { case "https":
3016:
foreach( glob("prot_*.pike",get_dir("../local/protocols")||({})), string s ) { sscanf( s, "prot_%s.pike", s );
-
#if !constant(SSL.
sslfile
)
+
#if !constant(SSL.
File
)
switch( s ) { case "https":
6458:
call_out( show_timers, 30 ); #endif
-
#if constant(SSL.
sslfile
)
+
#if constant(SSL.
File
)
add_constant( "StartTLSProtocol", StartTLSProtocol ); add_constant( "SSLProtocol", SSLProtocol ); #endif