The problem was that the pcap_send_queue->len field was not properly initialized. The work around is to issue setLen(0) on the queue right after its created here is an example:
WinPcapSendQueue queue = WinPcap.sendQueueAlloc(512);
queue.setLen(0); // Temporary work around a bug in the implementation
This should properly initialize the structure. This is fixed in next 1.3 update.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The problem was that the pcap_send_queue->len field was not properly initialized. The work around is to issue setLen(0) on the queue right after its created here is an example:
WinPcapSendQueue queue = WinPcap.sendQueueAlloc(512);
queue.setLen(0); // Temporary work around a bug in the implementation
This should properly initialize the structure. This is fixed in next 1.3 update.