quote:
Originally posted by CookieRevised
When it doesn't work (you get the WSAIoctl error) it means a raw socket couldn't be made which is needed to sniff incomming packets.
On my Laptop at home I originally got an error about WSAIoctl, but then I wrapped the line in a try statement and now it works fine with my wireless connection, not sure if it will work for others.
code:
function OnEvent_Initialize(MessengerStart){
if(Messenger.MyStatus > 0){
try {
xniff.Start();
}catch(e){
Debug.Trace('Error in xniff.Start(): '+e);
}
}
}