pike.git
/
lib
/
modules
/
SSL.pmod
/
https.pike
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/lib/modules/SSL.pmod/https.pike:211:
// Make sure all cipher suites are available. ctx->preferred_suites = ctx->get_suites(CIPHER_BITS, KE_MODE); SSL3_DEBUG_MSG("Cipher suites:\n%s", .Constants.fmt_cipher_suites(ctx->preferred_suites)); SSL3_DEBUG_MSG("Certs:\n%O\n", ctx->get_certificates()); port = SSL.Port(ctx); werror("Starting\n");
-
if (!port->bind(PORT, my_accept_callback,
"::"
))
+
if (!port->bind(PORT, my_accept_callback,
Netutils.ANY
))
exit(1, "Failed to bind port %d.\n", PORT); werror("Listening on port %d.\n", PORT); return -1; #endif }