1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

For #1304, Default HSTRS to on. 2.0.264

This commit is contained in:
winlin 2019-04-06 15:35:12 +08:00
parent ffe4ac654d
commit a8781aee3e
3 changed files with 7 additions and 5 deletions

View file

@ -4351,20 +4351,20 @@ bool SrsConfig::get_vhost_http_remux_hstrs(string vhost)
{
SrsConfDirective* conf = get_vhost(vhost);
if (!conf) {
return false;
return true;
}
conf = conf->get("http_remux");
if (!conf) {
return false;
return true;
}
conf = conf->get("hstrs");
if (!conf || conf->arg0().empty()) {
return false;
return true;
}
return SRS_CONF_PERFER_FALSE(conf->arg0());
return SRS_CONF_PERFER_TRUE(conf->arg0());
}
SrsConfDirective* SrsConfig::get_heartbeart()

View file

@ -31,7 +31,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// current release version
#define VERSION_MAJOR 2
#define VERSION_MINOR 0
#define VERSION_REVISION 263
#define VERSION_REVISION 264
// generated by configure, only macros.
#include <srs_auto_headers.hpp>