mirror of
https://github.com/livingcomputermuseum/IFS.git
synced 2026-01-30 13:36:27 +00:00
17 lines
363 B
C#
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
|
|
{
|
|
}
|
|
}
|