Roxen.git
/
server
/
plugins
/
protocols
/
prot_https.pike
version
»
Context lines:
10
20
40
80
file
none
3
Roxen.git/server/plugins/protocols/prot_https.pike:1:
-
// This is a
roxen
protocol module.
+
// This is a
ChiliMoon
protocol module.
// Copyright © 2001, Roxen IS.
-
// $Id: prot_https.pike,v 2.
7
2002
/
10
/
25
20
:
04
:
55
nilsson
Exp $
+
// $Id: prot_https.pike,v 2.
8
2003
/
01
/
23
16
:
21
:
02
mani
Exp $
// --- Debug defines --- #ifdef SSL3_DEBUG # define SSL3_WERR(X) werror("SSL3: "+X+"\n") #else # define SSL3_WERR(X) #endif inherit SSLProtocol;
Roxen.git/server/plugins/protocols/prot_https.pike:171:
int set_cookie, set_cookie_only_once; void fix_cvars( Variable.Variable a ) { set_cookie = query( "set_cookie" ); set_cookie_only_once = query( "set_cookie_only_once" ); } void create( mixed ... args ) {
-
roxen
.set_up_http_variables( this_object() );
+
core
.set_up_http_variables( this_object() );
if( variables[ "set_cookie" ] ) variables[ "set_cookie" ]->set_changed_callback( fix_cvars ); if( variables[ "set_cookie_only_once" ] ) variables[ "set_cookie_only_once" ]->set_changed_callback( fix_cvars ); fix_cvars(0); ::create( @args ); }