Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/b94afc597c4d51f67552c9ba2c25bdb8df6d8599/RSSDP/ResponseReceivedEventArgs.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/RSSDP/ResponseReceivedEventArgs.cs

56 lines
1.3 KiB

using System;
using System.Net;
using System.Net.Http;
namespace Rssdp.Infrastructure
{
/// <summary>
/// Provides arguments for the <see cref="ISsdpCommunicationsServer.ResponseReceived"/> event.
/// </summary>
public sealed class ResponseReceivedEventArgs : EventArgs
{
public IPAddress LocalIpAddress { get; set; }
#region Fields
private readonly HttpResponseMessage _Message;
private readonly IPEndPoint _ReceivedFrom;
#endregion
#region Constructors
/// <summary>
/// Full constructor.
/// </summary>
public ResponseReceivedEventArgs(HttpResponseMessage message, IPEndPoint receivedFrom)
{
_Message = message;
_ReceivedFrom = receivedFrom;
}
#endregion
#region Public Properties
/// <summary>
/// The <see cref="HttpResponseMessage"/> that was received.
/// </summary>
public HttpResponseMessage Message
{
get { return _Message; }
}
/// <summary>
/// The <see cref="UdpEndPoint"/> the response came from.
/// </summary>
public IPEndPoint ReceivedFrom
{
get { return _ReceivedFrom; }
}
#endregion
}
}