You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using MQTTnet.Core.Packets;
- using MQTTnet.Core.Protocol;
-
- namespace MQTTnet.Core.Server
- {
- public sealed class MqttServerOptions
- {
- public DefaultEndpointOptions DefaultEndpointOptions { get; } = new DefaultEndpointOptions();
-
- public MqttServerTlsEndpointOptions TlsEndpointOptions { get; } = new MqttServerTlsEndpointOptions();
-
- public int ConnectionBacklog { get; set; } = 10;
-
- public TimeSpan DefaultCommunicationTimeout { get; set; } = TimeSpan.FromSeconds(10);
-
- public Func<MqttConnectPacket, MqttConnectReturnCode> ConnectionValidator { get; set; }
- }
- }
|