//
// PcapPacketProvider.cs
//
// Copyright (c) František Boháček. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Threading.Tasks;
using NosSmooth.Core.Client;
using ReactiveUI;
using Remora.Results;
namespace PacketLogger.Models.Packets;
///
/// A packet provider using pcap.
///
public class PcapPacketProvider : ClientPacketProvider
{
///
/// Initializes a new instance of the class.
///
/// The nostale process.
/// The pcap client.
public PcapPacketProvider(NostaleProcess process, INostaleClient client)
: base(process, client)
{
}
///
public override bool IsOpen => true;
}