Example #1
0
 /// <summary> Create a new IP packet.</summary>
 public IPPacket(int lLen, byte[] bytes, Timeval tv)
     : this(lLen, bytes)
 {
     this._timeval = tv;
 }
Example #2
0
 /// <summary> Create a new ARP packet.</summary>
 public ARPPacket(int lLen, byte[] bytes, Timeval tv)
     : base(lLen, bytes, tv)
 {
 }
Example #3
0
 public IGMPPacket(int lLen, byte[] bytes, Timeval tv)
     : this(lLen, bytes)
 {
     this._timeval = tv;
 }
Example #4
0
 /// <summary> Construct a new ethernet packet, including the capture time.</summary>
 public EthernetPacket(int lLen, byte[] bytes, Timeval tv)
     : this(lLen, bytes)
 {
     this._timeval = tv;
 }
Example #5
0
 /// <summary> Create a new ARP packet.</summary>
 public ARPPacket(int lLen, byte[] bytes, Timeval tv)
     : base(lLen, bytes, tv)
 {
 }