certmanager, hostmanager: Rename get_context() to create_context() to be more explicit about what it does

Sat, 13 Feb 2010 16:08:43 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Sat, 13 Feb 2010 16:08:43 +0000
changeset 2628
04958fb28c44
parent 2627
ce5b5d7f87c3
child 2629
fe207a2c5cef

certmanager, hostmanager: Rename get_context() to create_context() to be more explicit about what it does

core/certmanager.lua file | annotate | diff | comparison | revisions
core/hostmanager.lua file | annotate | diff | comparison | revisions
--- a/core/certmanager.lua	Sat Feb 13 15:34:33 2010 +0000
+++ b/core/certmanager.lua	Sat Feb 13 16:08:43 2010 +0000
@@ -18,7 +18,7 @@
 -- Global SSL options if not overridden per-host
 local default_ssl_config = configmanager.get("*", "core", "ssl");
 
-function get_context(host, mode, config)
+function create_context(host, mode, config)
 	local ssl_config = config and config.core.ssl or default_ssl_config;
 	if ssl and ssl_config then
 		return ssl_newcontext(setmetatable(ssl_config, mode == "client" and default_ssl_ctx_mt or default_ssl_ctx_in_mt));
--- a/core/hostmanager.lua	Sat Feb 13 15:34:33 2010 +0000
+++ b/core/hostmanager.lua	Sat Feb 13 16:08:43 2010 +0000
@@ -65,8 +65,8 @@
 		end
 	end
 	
-	hosts[host].ssl_ctx = certmanager.get_context(host, "client", host_config); -- for outgoing connections
-	hosts[host].ssl_ctx_in = certmanager.get_context(host, "server", host_config); -- for incoming connections
+	hosts[host].ssl_ctx = certmanager.create_context(host, "client", host_config); -- for outgoing connections
+	hosts[host].ssl_ctx_in = certmanager.create_context(host, "server", host_config); -- for incoming connections
 	
 	log((hosts_loaded_once and "info") or "debug", "Activated host: %s", host);
 	eventmanager.fire_event("host-activated", host, host_config);

mercurial