Skip to content

Commit

Permalink
fix config file setting
Browse files Browse the repository at this point in the history
  • Loading branch information
davehorton committed Feb 5, 2024
1 parent c066ded commit 3b787d7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/drachtio-config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,10 @@ namespace drachtio {
return false;
}

bool rejectRegisterWithNoRealm() const {
return m_bRejectRegisterWithNoRealm;
}

private:

bool getXmlAttribute( ptree::value_type const& v, const string& attrName, string& value ) {
Expand Down Expand Up @@ -632,7 +636,7 @@ namespace drachtio {
}

bool DrachtioConfig::rejectRegisterWithNoRealm() const {
return false;
return m_pimpl->rejectRegisterWithNoRealm();
}


Expand Down

0 comments on commit 3b787d7

Please sign in to comment.