Skip to content

Commit

Permalink
set altGKisPermanent=true when redirecting endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
willamowius committed May 25, 2020
1 parent b9dbca7 commit b119927
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion RasSrv.h
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ class RasServer : public Singleton<RasServer>, public SocketsReader {
if (alternates.GetSize() > 0) {
// add alternates by IP
ras.IncludeOptionalField(RAS::e_altGKInfo);
ras.m_altGKInfo.m_altGKisPermanent = (redirectGK == e_permanentRedirect);
ras.m_altGKInfo.m_altGKisPermanent = true; // not just for this message
ras.m_altGKInfo.m_alternateGatekeeper = alternates;
} else if (altGKs.GetSize() > 0) {
// use global configuration
Expand Down
1 change: 1 addition & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Changes from 5.4 to 5.5
=======================
- BUGFIX(RasSrv.h) set altGKisPermanent=true when redirecting endpoints
- BUGFIX(RasSrv.cxx) fix RRJ to include alternates when RedirectGK=Endpoints limit is reached
- manual translated into Simplified Chinese by Zhang Tao
- BUGFIX(ProxyChannel.cxx) fix reading of AllowSignaledIPs= switch
Expand Down

0 comments on commit b119927

Please sign in to comment.