Hello All, How to check whether my device is conected to some device in ad hoc mode to other device. Usuallly if only one device is there in ad hoc mode it ...
I want to know which type of authentication is configured on APs that are listed in OID_802_11_BSSID_LIST I have checked Information Elements it is comming...
I have I driver I based on one of the NDISIM samples that looks for TCP and UDP packtes on various ports coming down the stack. When PC user has also connected...
Don't think so. I never managed (and never really tried to) get behind the binding behaviour of different NDIS IM drivers on one NIC (assuming the VPN driver...
... The facilities of a Notify Object may help you manage the bindings. The DDK includes a sample Notify Object for the MUX NDIS IM driver. It is a little...
It Looks like the Microsoft VPN client is above NDIS either in a TDI filter or firewall hook or packet filter area, so I don't think the binding order will...
Hello, I am Monica. I have a problem about WLANTool on the pocket pc toshiba e800. The application WLANTool by NDISTool function, but WLANTool.exe directly...
Hi, After installing the NDIS IM driver (Modified passthru), there seems to be excessive packet loss on some adapters. I haven't encountered this problem on...
IM drivers shouldn't cause packet loss. How are you measuring that packets are being dropped? Inbound or outbound, or both? Assuming you're working from...
... If you are a PCAUSA customer, then please contact PCAUSA directly with your serial number. There is an as yet unreleased update to fix this problem. If you...
If it's not your driver, Check your duplex settings on any switches and your NICs. Often even autodetect everywhere has problems with duplex mismatches, even...
Hi, The details of the problem encountered is as follows: 1>When I install the NDIS IM driver, all IP packets like UDP, ICMP etc work as expected. 2>However...
... Unfortunately, it looks like you have a bug in your driver. You might try testing with a simple Winsock application instead of something as uncontrollable...
Hi, The problem seems to be what you have told. On 2K PtReceive is being called instead of PtReceivePacket. PtReceive is indicating up the packet using...
Howdy, Does anyone happen to know how to detect and renable a network adapter that is present but disabled? Jim Howard Senior Software Developer Affinegy LLC,...
_____ From: discussion-pcausa@yahoogroups.com [mailto:discussion-pcausa@yahoogroups.com] On Behalf Of sf wy Sent: Friday, October 07, 2005 10:23 PM To:...
... I know that the SNetCfg API can enumerate devices that are disabled. Don't know if it can tell whether a disabled device is present or not, though. Good...
Hi everyone, does anyone know how to make an Ndis Query on OID_802_11_BSSID_LIST_SCAN. I'm trying to peridically, with a timer tick event (say every second or...
I want to use strtok fuction in my NDIS IM driver, I have include #include <string.h> #include <stdio.h> in my file but the following error still exist. error...
... Basically, using CRT functions in kernel mode isn't the way to go. Examine the KM Rtl family of functions. They are actually pretty powerful. Thomas F....
... You should almost certainly not use str* functions in your driver. Most strings are UNICODE in drivers, except where explicitly indicated by the DDK. The...
... driver. ... strings. ... the ... and ... strtok ... to ... you ... DDK. ... Thank you very much! I have read MSDN (safe string fuction)before use strtok,...
... It would be better to do as much of that tokenizing work in usermode and then IOCTL the parsed strings into the kernel. It's better in general to take care...
... Steve is certainly right that it is best to do this in user-mode if possible. And, it is easy to really screw things up. However, if you are parsing HTTP...
... Dispensa ... implement ... from the ... practical. ... be L'\0' if ... order ... can use ... Thank you!I will try to use Rtl* first. If failed ,I will try...