mirror of
https://github.com/LANCommander/IPXRelay.git
synced 2026-08-01 01:53:15 -04:00
17 lines
434 B
C#
17 lines
434 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IPXRelayDotNet
|
|
{
|
|
public class OnSendPacketErrorEventArgs : EventArgs
|
|
{
|
|
public IPEndPoint RemoteEndPoint { get; set; }
|
|
public IPEndPoint LocalEndPoint { get; set; }
|
|
public byte[] Data { get; set; }
|
|
public Exception Exception { get; set; }
|
|
}
|
|
}
|