blob: c64e15c85f340c7c4874133fa1626cf7594ac12d [file] [log] [blame]
//
// Copyright (c) 2010-2020 Antmicro
//
// This file is licensed under the MIT License.
// Full license text is available in 'licenses/MIT.txt'.
//
using System;
using System.Net;
using System.Collections.Generic;
using PacketDotNet;
namespace Antmicro.Renode.Network
{
public interface IServerModule
{
void HandleUdp(IPEndPoint source, UdpPacket packet, Action<IPEndPoint, UdpPacket> callback);
}
}