Thomas - Thanks for the prompt reply. By the way - I have found your samples an excellent help/guide to TDI. In any case, it seems from your comments & my...
What troubles me is that the ProtocolReceive can not get the packets that physical NIC indicates up. It gets the packets that were previously sent down. Here...
With the emulated NIC (DC211x40) and unmodified passthru code on Platform Builder 4.1 emulator, I have this issue. Since I don't have an actual CE .NET device,...
May 2, 2003 - PCAUSA is pleased to announce an update to the Advanced TDI Samples for Windows NT. This is a fairly extensive update and includes bug fixes...
thanks "Thomas F. Divine" <tdivine@...> wrote:May 2, 2003 - PCAUSA is pleased to announce an update to the Advanced TDI Samples for Windows NT. This is...
Duong Chien Thang
thangdc2002@...
May 3, 2003 2:30 am
2691
One other point about the new TDI Samples release. I have changed the TDI Samples product definitions a little. The low-end Bookshelf Edition will now include...
I'm thinking of porting a routing protocol written as loadable linux kernel module to win32 platform. It actually implements a routing algorithm to determine...
I think this doesn't need any kernel driver, maybe. Run udp application in user space, and that program itself can alter routing table. I don't know how to...
... Intresting requirement. I'll have to give it some thought. In the mean time, the diagram at <http://www.ndis.com/papers/winpktfilter.htm> gives a picture...
I am in the process of writing a layered miniport driver for pocket pc 2002. I can get the driverentry function to work, but NDIS does not call any of my...
May 4, 2003 - Just a heads-up that you may encounter problems accessing PCAUSA web and FTP sites over the period Tuesday, May 6, 2003 through Monday, May 12,...
This seems like it is very, very similar to a message posted here 4/1/03 with the subject "The RNdis problems with Win98SE", although all the underlying code...
You might try the newer Rawether downloadable sample exectuables. That may be able to tell you if your specific problem has been addressed. You should also...
If your packet forwarding uses only one NIC, then I guess the forwarding algorithm involves primarily altering the destination of selected outgoing Ethernet...
We use TDIQ as a cross-platform version of ipconfig. Unfortunately, some times when the program is automatically called upon by our software to grab an IP...
Some other folks that reported problems with TDIQ. I have not debugged it here. I wouldn't be suppressed if TDIQ didn't handle multiple interfaces totally...
Is it possible to drop an IRP in a TDI filter driver, basically just letting the I/O manager know that we processed the IRP, but internally we do something to...
PCATTCP is a great program because it has the ability to do a continuous output which is great for some of the testing I am doing with it. But I seem to have a...
This sort of functionality is certainly possible. However, the details are messy. You must study IRP handling in filter drivers in books or classes. In...
Mstef, Thanks for the feedback. It is interesting that the PCATTCP utility is fairly popular. It is apparently used in some college curriculum as well as by a...
Thank you for your response. I would also like to see if possible and not too difficult if the output rate could be controllable. ... an look ... when you ... ...
Hi, This is my first message on your forum so please be gentle .I am trying to make an NDIS IM driver to communicate with a user space application. I know I...
Hi Thomas, Thanks for yr reply. Basically, in my case, what I need to do is -pend an IRP, -send the data in the IRP to an user mode application (thru some ...
Dear All: I am writing one IM driver. In the protocolreceive function, sometimes I have to chain two NdisBuffers to one NdisPacket . one buffer is for...
Hi everyone, could anyone advise me on how to use the Miniport and protocol reserved part of an NDIS_PACKET. I am new to driver writing . so would prefer if ...
All DDK NDIS samples use these reserved areas in one way or another. Looking at the DDK PassThrough NDIS IM driver sample would probably be the most useful. ...
This isn't too tough. The NDIS_PACKET contains a list for keeping track of NDIS_BUFFERS. You can chain buffers at the front or the back of the list. There are...