| // | |
| // 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); | |
| } | |
| } | |