Mississippi State University is conducting some sort of survey about eGroups, and it would help them if a few more members took a few moments to fill out their...
Hello, I need to find out the physical medium over which an adapter runs, I am especially interested in detecting wireless devices. Can I use the variable...
Your driver can make a query to the lower-level on OID_GEN_PHYSICAL_MEDIUM. This query will almost always fail. The exception is that it will always succeed on...
I am using OID_GEN_PHYSICAL_MEDIUM to detect WiFi and Ethernet cards. Is there any way to detect WiMax/Infrared/Bluetooth/3G cards? Regards, Hardik On Fri, Jun...
I don't have a good answer for this question. If the NIC NDIS medium is actually supported natively by NDIS, then one approach is to select a query that is: ...
Is is possible to implement a transport protocol like SCTP and DCCP and use them instead of TCP in windows?? I read from DDK that it is possible to implement...
I am not familiar with the protocols you are thinking of. Sorry. In any event, replacing TCP/IP would be almost impossible. There are several possibilities....
Hello, I am filtering TDI_CONNECT in a TDI driver and I need the local address of the connection point. Using the following code: PIO_STACK_LOCATION pIOSL =...
You need to understand that most TCP/IP applications and services don't really care about the local host IP address. If you examine lots of Winsock code you...
Thanks, Thomas... I am using a NDIS intermediate driver together with my TDI driver. How safe is to use PsGetCurrentProcessId from NDIS IM driver to find out...
I wouldn't recommend using PsGetCurrentProcessId in an NDIS IM driver. It may work in some situations, but fail mysteriously in others. On the other hand, in...
So, you suggest creating a map ( ( LocalPort, RemotePort, RemoteIP ) -> Process ) and keep it in the TDI driver? When the TCP SYN packet leaves a network card,...
My two drivers implement the kernel part of a windows firewall. I need to filter applications traffic based on local address and local port. ... how they ... ...
The INF files must be updated to work with AMD64: NETIM.INF changes (Additions In RED): [Manufacturer] %PcaUsa% = PCAUSA,NTamd64 [ControlFlags] [PCAUSA] ...
Dear Thomas I success to installation PCASIM.sys in x64(server 2003)environment. but I fail to run sample application(prtest2.exe) in x64. I compiled dll and...
I've just known that the windows CE and windows Mobile are different today. I was planning to develop an ndis virtual miniport driver on windows CE platform. ...
The tools and information that you need are at: http://www.microsoft.com/windows/embedded/default.mspx I believe that there are links that will let you...
InterlockedExchangeAdd is defined in NDIS.h for Windows XP and higher. Just use it. If you must use Windows 2000, then put this in a header file somewhere ...
Hi All, Why MUX IM is not using DataBackFillSize and request VLAN tag header size in backfill? Instead it is allocating from look aside list every time there...
Perhaps in creating the NDIS 6 MUX sample they adapted it from the existing NDIS 5 MUX sample and simply overlooked illustrating this new NDIS 6 feature. ...
Hi, In continuation to signed driver in following message: http://tech.groups.yahoo.com/group/discussion-pcausa/message/8257 Whenever we try to install or...
Hello Thomas, I have a TDI hook driver based on TDIPASSH ( we bought it from you), and it works well with windows xp sp3, but as we know it is not working with...
On Windows XP the driver stack is torn down (unbound) and then restored (bound) when a filter driver is added to the system. A continuous ping (ping -t) would...
WFP will do the job. You need to study the API carefully and then review the examples. Most operations are actually at the datagram level - not the packet...
See the PktRedirEx sample. Thomas F. Divine From: discussion-pcausa@yahoogroups.com [mailto:discussion- pcausa@yahoogroups.com] On Behalf Of glove Sent:...