Package org.jnetpcap

Examples of org.jnetpcap.PcapExtensionNotAvailableException


   * @see #sendQueueTransmit(WinPcapSendQueue, int)
   */
  public static WinPcapSendQueue sendQueueAlloc(final int size) {

    if (isSupported() == false) {
      throw new PcapExtensionNotAvailableException();
    }

    return new WinPcapSendQueue(size);
  }
View Full Code Here


   *          the queue to free up
   */
  public static void sendQueueDestroy(final WinPcapSendQueue queue) {

    if (isSupported() == false) {
      throw new PcapExtensionNotAvailableException();
    }

    // Memory is recaptured during GC
  }
View Full Code Here

TOP

Related Classes of org.jnetpcap.PcapExtensionNotAvailableException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.