Example #1
0
 /// <summary>
 /// Add a packet to this send queue.
 /// </summary>
 /// <param name="packet">The packet to add</param>
 /// <returns>True if success, else false</returns>
 public bool Add(RawCapture packet)
 {
     return(SendQueueExtensions.Add(this, packet));
 }
Example #2
0
 /// <summary>
 /// Add a packet to this send queue.
 /// </summary>
 /// <param name="packet">The packet to add</param>
 /// <param name="seconds">The 'seconds' part of the packet's timestamp</param>
 /// <param name="microseconds">The 'microseconds' part of the packet's timestamp</param>
 /// <returns>True if success, else false</returns>
 public bool Add(byte[] packet, int seconds, int microseconds)
 {
     return(SendQueueExtensions.Add(this, packet, seconds, microseconds));
 }
Example #3
0
 /// <summary>
 /// Add a packet to this send queue.
 /// </summary>
 /// <param name="packet">The packet bytes to add</param>
 /// <returns>True if success, else false</returns>
 public bool Add(byte[] packet)
 {
     return(SendQueueExtensions.Add(this, packet));
 }