Skip to content

Commit

Permalink
don't require H.460.22 parameters in ARQs
Browse files Browse the repository at this point in the history
  • Loading branch information
willamowius committed May 22, 2019
1 parent e166171 commit 4cb981a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RasSrv.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -3386,8 +3386,8 @@ bool AdmissionRequestPDU::Process()
if (fs.HasFeature(22)) {
EPSupportsH46022 = true;
H460_FeatureStd * std22 = (H460_FeatureStd *)fs.GetFeature(22);
EPSupportsH46022TLS = std22->Contains(Std22_TLS);
EPSupportsH46022IPSec = std22->Contains(Std22_IPSec);
EPSupportsH46022TLS = RequestingEP->UseTLS();
EPSupportsH46022IPSec = RequestingEP->UseIPSec();
}
#ifdef HAS_H46026
if (fs.HasFeature(26) && Toolkit::Instance()->IsH46026Enabled())
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.2 to 5.3
=======================
- BUGFIX(RasSrv.cxx) don't require H.460.22 parameters in ARQs
- BUGFIX(ProxyChannel.cxx) fix TLS without LARGE_FDSET
- BUGFIX(ProxyChannel.cxx) don't send H.460.22 priority field in SCI
- BUGFIX(gkauth.cxx) free memory from cached and expired passwords
Expand Down

0 comments on commit 4cb981a

Please sign in to comment.