1
0
mirror of https://github.com/livingcomputermuseum/IFS.git synced 2026-01-30 13:36:27 +00:00
Files
livingcomputermuseum.IFS/PUP/Transport/PacketInterface.cs
2015-10-14 16:17:36 -07:00

17 lines
363 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IFS.Transport
{
/// <summary>
/// PacketInterface provides an abstraction over a transport (Ethernet, IP, Carrier Pigeon)
/// which can provide raw packets.
/// </summary>
interface IPacketInterface
{
}
}