diff options
| author | Robert Gemmell <robbie@apache.org> | 2009-11-30 14:35:43 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2009-11-30 14:35:43 +0000 |
| commit | fd8245ef5198e69277940bc0252d8a6034daa252 (patch) | |
| tree | 99e51da85815f1de13daa3788f682212344b4317 /dotnet/Qpid.Client/Client/Security/CallbackHandlerRegistry.cs | |
| parent | b44a8788b44fc8c530841019b26af64b5fca1c5f (diff) | |
| download | qpid-python-fd8245ef5198e69277940bc0252d8a6034daa252.tar.gz | |
QPID-2222: Added new CramMD5HexSaslClient.cs and registered it in the Sasl Factory and the client CallbackHandler
Merge code changes from M2.x branch r663999,r664020
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@885435 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/Qpid.Client/Client/Security/CallbackHandlerRegistry.cs')
| -rw-r--r-- | dotnet/Qpid.Client/Client/Security/CallbackHandlerRegistry.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dotnet/Qpid.Client/Client/Security/CallbackHandlerRegistry.cs b/dotnet/Qpid.Client/Client/Security/CallbackHandlerRegistry.cs index 85be927ff4..22f1c9d89b 100644 --- a/dotnet/Qpid.Client/Client/Security/CallbackHandlerRegistry.cs +++ b/dotnet/Qpid.Client/Client/Security/CallbackHandlerRegistry.cs @@ -96,6 +96,8 @@ namespace Apache.Qpid.Client.Security _mechanism2HandlerMap.Add(ExternalSaslClient.Mechanism, typeof(UsernamePasswordCallbackHandler));
if ( !_mechanism2HandlerMap.Contains(CramMD5SaslClient.Mechanism) )
_mechanism2HandlerMap.Add(CramMD5SaslClient.Mechanism, typeof(UsernamePasswordCallbackHandler));
+ if ( !_mechanism2HandlerMap.Contains(CramMD5HexSaslClient.Mechanism) )
+ _mechanism2HandlerMap.Add(CramMD5HexSaslClient.Mechanism, typeof(UsernamePasswordCallbackHandler));
if ( !_mechanism2HandlerMap.Contains(PlainSaslClient.Mechanism) )
_mechanism2HandlerMap.Add(PlainSaslClient.Mechanism, typeof(UsernamePasswordCallbackHandler));
|
