Browse Source

Fix MQTTnet.Server connection validation.

release/3.x.x
Christian Kratky 5 years ago
parent
commit
ce05cc9936
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      Source/MQTTnet.Server/Mqtt/MqttServerConnectionValidator.cs

+ 4
- 2
Source/MQTTnet.Server/Mqtt/MqttServerConnectionValidator.cs View File

@@ -29,10 +29,10 @@ namespace MQTTnet.Server.Mqtt
{ "client_id", context.ClientId }, { "client_id", context.ClientId },
{ "username", context.Username }, { "username", context.Username },
{ "password", context.Password }, { "password", context.Password },
{ "raw_password", new Bytes(context.RawPassword) },
{ "raw_password", new Bytes(context.RawPassword ?? new byte[0]) },
{ "clean_session", context.CleanSession}, { "clean_session", context.CleanSession},
{ "authentication_method", context.AuthenticationMethod}, { "authentication_method", context.AuthenticationMethod},
{ "authentication_data", new Bytes(context.AuthenticationData)},
{ "authentication_data", new Bytes(context.AuthenticationData ?? new byte[0]) },


{ "result", PythonConvert.Pythonfy(context.ReasonCode) } { "result", PythonConvert.Pythonfy(context.ReasonCode) }
}; };
@@ -44,6 +44,8 @@ namespace MQTTnet.Server.Mqtt
catch (Exception exception) catch (Exception exception)
{ {
_logger.LogError(exception, "Error while validating client connection."); _logger.LogError(exception, "Error while validating client connection.");

context.ReasonCode = MqttConnectReasonCode.UnspecifiedError;
} }


return Task.CompletedTask; return Task.CompletedTask;


Loading…
Cancel
Save