Hi, I have been trying to use the carinover library which I got from here - Library . Can anyone help me to fix this?
Some relevant information - I am using ASUS X450J windows 10 64bit. Running the code on processing 2.2.1 64bit. I have already installed the wireshark incase that is relevant.
Code -
import org.rsg.carnivore.*;
import org.rsg.lib.Log;
CarnivoreP5 c;
void setup() {
size(600, 400);
background(255);
Log.setDebug(true); // Uncomment for verbose mode
c = new CarnivoreP5(this);
}
void draw() {
}
// Called each time a new packet arrives
void packetEvent(CarnivorePacket p) {
println("(" + p.strTransportProtocol + " packet) " +
p.senderSocket() + " > " + p.receiverSocket());
//println("Payload: " + p.ascii());
//println("---------------------------\n");
}
Error -