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

44 lines
1.1 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; }
private readonly HttpResponseMessage _Message;
5 years ago
private readonly IPEndPoint _ReceivedFrom;
/// <summary>
/// Full constructor.
/// </summary>
public ResponseReceivedEventArgs(HttpResponseMessage message, IPEndPoint receivedFrom)
{
_Message = message;
_ReceivedFrom = receivedFrom;
}
/// <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; }
}
}
}