Software / code / prosody
Comparison
prosodyctl @ 9795:02735bc82126
mod_websocket: Drop CORS code in favor of that in mod_http
Like for mod_bosh, deprecates consider_websocket_secure and depend on
mod_http_crossdomain if it is set.
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Thu, 04 Oct 2018 12:24:08 +0200 |
| parent | 9794:4b5c24f13d4a |
| child | 9798:7ce7ee9cd1c5 |
comparison
equal
deleted
inserted
replaced
| 9794:4b5c24f13d4a | 9795:02735bc82126 |
|---|---|
| 804 end | 804 end |
| 805 if not what or what == "config" then | 805 if not what or what == "config" then |
| 806 print("Checking config..."); | 806 print("Checking config..."); |
| 807 local deprecated = set.new({ | 807 local deprecated = set.new({ |
| 808 "bosh_ports", "disallow_s2s", "no_daemonize", "anonymous_login", "require_encryption", | 808 "bosh_ports", "disallow_s2s", "no_daemonize", "anonymous_login", "require_encryption", |
| 809 "vcard_compatibility", "cross_domain_bosh", | 809 "vcard_compatibility", "cross_domain_bosh", "cross_domain_websocket" |
| 810 }); | 810 }); |
| 811 local known_global_options = set.new({ | 811 local known_global_options = set.new({ |
| 812 "pidfile", "log", "plugin_paths", "prosody_user", "prosody_group", "daemonize", | 812 "pidfile", "log", "plugin_paths", "prosody_user", "prosody_group", "daemonize", |
| 813 "umask", "prosodyctl_timeout", "use_ipv6", "use_libevent", "network_settings", | 813 "umask", "prosodyctl_timeout", "use_ipv6", "use_libevent", "network_settings", |
| 814 "network_backend", "http_default_host", | 814 "network_backend", "http_default_host", |