Skip to content

Commit 432dfc6

Browse files
committed
Merge remote-tracking branch 'origin/master' into 2095-error-while-authenticating-extended-authentication-handler-is-not-yet-supported-with-azure-event-grid-mqtt-broker
# Conflicts: # Source/MQTTnet.Server/Events/ValidatingConnectionEventArgs.cs
2 parents 4ae2073 + 8089c6b commit 432dfc6

25 files changed

+298
-232
lines changed

Source/MQTTnet.AspnetCore/MqttConnectionContext.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,21 +61,21 @@ public X509Certificate2 ClientCertificate
6161
}
6262
}
6363

64-
public string Endpoint
64+
public EndPoint RemoteEndPoint
6565
{
6666
get
6767
{
6868
// mqtt over tcp
6969
if (_connection.RemoteEndPoint != null)
7070
{
71-
return _connection.RemoteEndPoint.ToString();
71+
return _connection.RemoteEndPoint;
7272
}
7373

7474
// mqtt over websocket
7575
var httpFeature = _connection.Features.Get<IHttpConnectionFeature>();
7676
if (httpFeature?.RemoteIpAddress != null)
7777
{
78-
return new IPEndPoint(httpFeature.RemoteIpAddress, httpFeature.RemotePort).ToString();
78+
return new IPEndPoint(httpFeature.RemoteIpAddress, httpFeature.RemotePort);
7979
}
8080

8181
return null;

Source/MQTTnet.AspnetCore/MqttWebSocketServerAdapter.cs

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// See the LICENSE file in the project root for more information.
44

55
using System;
6+
using System.Net;
67
using System.Net.WebSockets;
78
using System.Threading.Tasks;
89
using Microsoft.AspNetCore.Http;
@@ -28,7 +29,8 @@ public async Task RunWebSocketConnectionAsync(WebSocket webSocket, HttpContext h
2829
{
2930
ArgumentNullException.ThrowIfNull(webSocket);
3031

31-
var endpoint = $"{httpContext.Connection.RemoteIpAddress}:{httpContext.Connection.RemotePort}";
32+
var remoteAddress = httpContext.Connection.RemoteIpAddress;
33+
var remoteEndPoint = remoteAddress == null ? null : new IPEndPoint(remoteAddress, httpContext.Connection.RemotePort);
3234

3335
var clientCertificate = await httpContext.Connection.GetClientCertificateAsync().ConfigureAwait(false);
3436
try
@@ -39,7 +41,7 @@ public async Task RunWebSocketConnectionAsync(WebSocket webSocket, HttpContext h
3941
if (clientHandler != null)
4042
{
4143
var formatter = new MqttPacketFormatterAdapter(new MqttBufferWriter(4096, 65535));
42-
var channel = new MqttWebSocketChannel(webSocket, endpoint, isSecureConnection, clientCertificate);
44+
var channel = new MqttWebSocketChannel(webSocket, remoteEndPoint, isSecureConnection, clientCertificate);
4345

4446
using (var channelAdapter = new MqttChannelAdapter(channel, formatter, _logger))
4547
{

Source/MQTTnet.Benchmarks/SerializerBenchmark.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
using BenchmarkDotNet.Jobs;
1616
using MQTTnet.Diagnostics.Logger;
1717
using System.Buffers;
18+
using System.Net;
1819

1920
namespace MQTTnet.Benchmarks
2021
{
@@ -76,7 +77,7 @@ public BenchmarkMqttChannel(ArraySegment<byte> buffer)
7677
_position = _buffer.Offset;
7778
}
7879

79-
public string Endpoint { get; } = string.Empty;
80+
public EndPoint RemoteEndPoint { get; set; }
8081

8182
public bool IsSecureConnection { get; } = false;
8283

Source/MQTTnet.Server/Events/ClientConnectedEventArgs.cs

+7-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using System;
66
using System.Collections;
77
using System.Collections.Generic;
8+
using System.Net;
89
using MQTTnet.Formatter;
910
using MQTTnet.Packets;
1011

@@ -14,11 +15,11 @@ public sealed class ClientConnectedEventArgs : EventArgs
1415
{
1516
readonly MqttConnectPacket _connectPacket;
1617

17-
public ClientConnectedEventArgs(MqttConnectPacket connectPacket, MqttProtocolVersion protocolVersion, string endpoint, IDictionary sessionItems)
18+
public ClientConnectedEventArgs(MqttConnectPacket connectPacket, MqttProtocolVersion protocolVersion, EndPoint remoteEndPoint, IDictionary sessionItems)
1819
{
1920
_connectPacket = connectPacket ?? throw new ArgumentNullException(nameof(connectPacket));
2021
ProtocolVersion = protocolVersion;
21-
Endpoint = endpoint;
22+
RemoteEndPoint = remoteEndPoint;
2223
SessionItems = sessionItems ?? throw new ArgumentNullException(nameof(sessionItems));
2324
}
2425

@@ -35,7 +36,10 @@ public ClientConnectedEventArgs(MqttConnectPacket connectPacket, MqttProtocolVer
3536
/// <summary>
3637
/// Gets the endpoint of the connected client.
3738
/// </summary>
38-
public string Endpoint { get; }
39+
public EndPoint RemoteEndPoint { get; }
40+
41+
[Obsolete("Use RemoteEndPoint instead.")]
42+
public string Endpoint => RemoteEndPoint?.ToString();
3943

4044
/// <summary>
4145
/// Gets the protocol version which is used by the connected client.

Source/MQTTnet.Server/Events/ClientDisconnectedEventArgs.cs

+7-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using System;
66
using System.Collections;
77
using System.Collections.Generic;
8+
using System.Net;
89
using MQTTnet.Packets;
910
using MQTTnet.Protocol;
1011

@@ -18,12 +19,12 @@ public ClientDisconnectedEventArgs(
1819
string clientId,
1920
MqttDisconnectPacket disconnectPacket,
2021
MqttClientDisconnectType disconnectType,
21-
string endpoint,
22+
EndPoint remoteEndPoint,
2223
IDictionary sessionItems)
2324
{
2425
ClientId = clientId ?? throw new ArgumentNullException(nameof(clientId));
2526
DisconnectType = disconnectType;
26-
Endpoint = endpoint;
27+
RemoteEndPoint = remoteEndPoint;
2728
SessionItems = sessionItems ?? throw new ArgumentNullException(nameof(sessionItems));
2829

2930
// The DISCONNECT packet can be null in case of a non clean disconnect or session takeover.
@@ -38,7 +39,10 @@ public ClientDisconnectedEventArgs(
3839

3940
public MqttClientDisconnectType DisconnectType { get; }
4041

41-
public string Endpoint { get; }
42+
public EndPoint RemoteEndPoint { get; }
43+
44+
[Obsolete("Use RemoteEndPoint instead.")]
45+
public string Endpoint => RemoteEndPoint?.ToString();
4246

4347
/// <summary>
4448
/// Gets the reason code sent by the client.

Source/MQTTnet.Server/Events/InterceptingPacketEventArgs.cs

+7-3
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,19 @@
44

55
using System;
66
using System.Collections;
7+
using System.Net;
78
using System.Threading;
89
using MQTTnet.Packets;
910

1011
namespace MQTTnet.Server
1112
{
1213
public sealed class InterceptingPacketEventArgs : EventArgs
1314
{
14-
public InterceptingPacketEventArgs(CancellationToken cancellationToken, string clientId, string endpoint, MqttPacket packet, IDictionary sessionItems)
15+
public InterceptingPacketEventArgs(CancellationToken cancellationToken, string clientId, EndPoint remoteEndPoint, MqttPacket packet, IDictionary sessionItems)
1516
{
1617
CancellationToken = cancellationToken;
1718
ClientId = clientId ?? throw new ArgumentNullException(nameof(clientId));
18-
Endpoint = endpoint;
19+
RemoteEndPoint = remoteEndPoint;
1920
Packet = packet ?? throw new ArgumentNullException(nameof(packet));
2021
SessionItems = sessionItems;
2122
}
@@ -34,7 +35,10 @@ public InterceptingPacketEventArgs(CancellationToken cancellationToken, string c
3435
/// <summary>
3536
/// Gets the endpoint of the sending or receiving client.
3637
/// </summary>
37-
public string Endpoint { get; }
38+
public EndPoint RemoteEndPoint { get; }
39+
40+
[Obsolete("Use RemoteEndPoint instead.")]
41+
public string Endpoint => RemoteEndPoint?.ToString();
3842

3943
/// <summary>
4044
/// Gets or sets the MQTT packet which was received or will be sent.

0 commit comments

Comments
 (0)