1
0
mirror of https://github.com/livingcomputermuseum/IFS.git synced 2026-01-28 04:57:34 +00:00
Files
livingcomputermuseum.IFS/PUP/Boot/BootServer.cs
2016-02-15 11:01:23 -08:00

25 lines
496 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IFS.Boot
{
public class BootServerProtocol : PUPProtocolBase
{
public BootServerProtocol()
{
}
/// <summary>
/// Called by dispatcher to send incoming data destined for this protocol
/// </summary>
/// <param name="p"></param>
public override void RecvData(PUP p)
{
}
}
}