1
0
mirror of https://github.com/livingcomputermuseum/IFS.git synced 2026-01-30 05:33:55 +00:00
Files
livingcomputermuseum.IFS/PUP/CopyDiskServer.cs
2015-10-14 16:17:36 -07:00

26 lines
619 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IFS
{
public class CopyDiskServer : PUPProtocolBase
{
/// <summary>
/// Called by dispatcher to send incoming data destined for this protocol.
/// </summary>
/// <param name="p"></param>
public override void RecvData(PUP p)
{
BSPChannel newChannel = BSPManager.RecvData(p);
if (newChannel != null)
{
// spwan new worker thread with new BSP channel
}
}
}
}