pike.git/
lib/
modules/
Protocols.pmod/
HTTP.pmod/
Server.pmod/
SSLPort.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2014-09-30
2014-09-30 16:20:55 by Martin Nilsson <nilsson@opera.com>
8e06a314e54f9a8534ad54281290bfc1966159be (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
8.0
this_program:: -> this::
43:
::create(); portno = port || 443;
-
this
_program
::callback=callback;
-
this
_program
::interface=interface;
+
this::callback=callback;
+
this::interface=interface;
if( key && certificate ) {
55:
else set_default_keycert();
-
if (!bind(portno, new_connection, this
_program
::interface, share))
+
if (!bind(portno, new_connection, this::interface, share))
error("Failed to bind port %s%d: %s\n", interface?interface+":":"", portno, strerror(errno())); }