Search the web
Sign In
New User? Sign Up
discussion-pcausa · PCAUSA Discussion List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 4896 - 4925 of 8586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4896
... I also did in the PtSendComplete(...). ... protocol only chained one ndis buffer, then repackaging ndis packet works OK! otherwise there maybe something...
hardy_hardeep
Offline Send Email
Jun 1, 2004
11:47 am
4897
... You should NOT need to tinker with the ValidCounts field, or so forth. Find the original packet TotalPacketLength using NdisQueryPacket. Now you must...
Thomas F. Divine
pcatom
Offline Send Email
Jun 1, 2004
10:13 pm
4898
Howdy, I'm writing a wireless application using Rawether. It would be really great if I could get an event that told me that the wireless network adapter has ...
Jim Howard
centexjim
Offline Send Email
Jun 1, 2004
10:53 pm
4899
You can certainly monitor (by polling) media sense with Rawether by querying OID_GEN_MEDIA_CONNECT_STATUS. I guess I could invent an addition to Rawether that...
Thomas F. Divine
pcatom
Offline Send Email
Jun 1, 2004
10:59 pm
4900
Thomas, Your answer is very helpful. We use a monitor thread, but were wondering if there was a way to catch messages when the connection state changes. ...
Jim Howard
centexjim
Offline Send Email
Jun 1, 2004
11:38 pm
4901
Dear Thomas: Can I need not to call NdisCopyFromPacketToPacket function, only to copy datas from the original packet buffers to ONE new ndis buffer(allocate...
Richard Zhang
richardone163
Offline Send Email
Jun 2, 2004
3:36 am
4902
In the general case you cannot assume how many buffers are in the original packet. You may see one most of the time, but that may not really be true all of the...
Thomas F. Divine
pcatom
Offline Send Email
Jun 2, 2004
3:57 am
4903
Hi Thomas Thanks for the info on NdisCopyFromPacketToPacket. I too was not sure on the validcounts issue.Maybe it is required when you are addding buffers...
hardeep makkar
hardy_hardeep
Offline Send Email
Jun 2, 2004
5:05 am
4904
Hi all, I am a little confused about what PtReceive comments say in the Extended Passthru Sample. It starts by trying to get at the packet indicated up by the...
yasser_toor
Offline Send Email
Jun 2, 2004
12:07 pm
4905
... Re-read the DDK ProtocolReceive documentation. In particular, read the portions that describe what to do in the case where NdisGetReceivedPacket returns...
Thomas F. Divine
pcatom
Offline Send Email
Jun 2, 2004
12:26 pm
4906
Dear Thomas: When re-use the ndis buffer allocated from the ndis buffer pool, does it need to re-initialize? such as the buffer length or some others? By the...
Richard Zhang
richardone163
Offline Send Email
Jun 3, 2004
11:18 am
4907
Dear Thomas: When I use NdisCopyFromPacketToPacket, but the destination packet size is not equal the original packet! Although I have called...
Richard Zhang
richardone163
Offline Send Email
Jun 3, 2004
11:19 am
4908
... From: Richard Zhang [mailto:richardone163@...] Sent: Thursday, June 03, 2004 1:37 AM To: discussion-pcausa@yahoogroups.com Subject: RE:...
Thomas F. Divine
pcatom
Offline Send Email
Jun 3, 2004
1:23 pm
4909
... From: Richard Zhang [mailto:richardone163@...] Sent: Thursday, June 03, 2004 5:41 AM To: discussion Subject: [discussion-pcausa] How to set Packet...
Thomas F. Divine
pcatom
Offline Send Email
Jun 3, 2004
1:27 pm
4910
MessageHello All, I have been searching for a guide to learn about writing something with NDIS. I can not believe this but there is nothing!!! I am a very very...
Kerem Onal
kerem.onal@...
Send Email
Jun 4, 2004
12:23 pm
4911
Hello all, I'm new to NDIS stuff, so excuse-me if my questions are too basic (and they are for sure :-)). When getting an interface/adapter, how do you...
free2dev2004
Offline Send Email
Jun 4, 2004
1:11 pm
4912
First make the OID_GEN_PHYSICAL_MEDIUM query. This _should_ return the value NdisPhysicalMediumWirelessLan for 802.11 adapters. Alternatively, simply select a...
Thomas F. Divine
pcatom
Offline Send Email
Jun 4, 2004
2:05 pm
4913
Ken, Sorry to hear of your grief. Unfortunately, I certainly can't fix it... Several folks have thought about writing a book to help understand the NDIS world....
Thomas F. Divine
pcatom
Offline Send Email
Jun 4, 2004
4:10 pm
4914
Hi ... When I add the following member: unsigned long member[4][256]; to a structure defined in passthru.h (in the passthru sample), and used by MpSend...
Firas Rasmy
firasrasmy
Offline Send Email
Jun 6, 2004
10:22 am
4915
It has been a long time since I have seen __chkstk. In fact, I have never seen it at all related to kernel-mode code. First of all, __chkstk is a function that...
Thomas F. Divine
pcatom
Offline Send Email
Jun 6, 2004
2:55 pm
4916
Thanks a lot for your help. I'm not using one of the batch files that let me use the Visual Studio IDE to build drivers. I use Visual C++ developing...
Firas Rasmy
firasrasmy
Offline Send Email
Jun 6, 2004
10:44 pm
4917
... From: Firas Rasmy [mailto:firasrasmy@...] Sent: Sunday, June 06, 2004 6:45 PM To: discussion-pcausa@yahoogroups.com Subject: RE: [discussion-pcausa]...
Thomas F. Divine
pcatom
Offline Send Email
Jun 6, 2004
11:09 pm
4918
Dear Thomas, First of all, thank you very much! But I find that it's obviously that the network speed becomes more slower when installed the passthru driver...
Richard Zhang
richardone163
Offline Send Email
Jun 7, 2004
3:53 am
4919
Hello Ken It isn’t that difficult I too am a beginner in NDIS world .I just completed a project on NDIS IM Driver and this was my first real life project. ...
hardeep makkar
hardy_hardeep
Offline Send Email
Jun 7, 2004
12:30 pm
4920
Hi, I am trying to write to a file using my IM driver. The code i am using is the following: UNICODE_STRING   FilePath;  UNICODE_STRING   pData; ...
Ashish Batra
ash1378
Offline Send Email
Jun 7, 2004
3:20 pm
4921
Hi, Could anyone give me some idea about the logging mechanisms i can build for the traces i write from my driver. i tried writing everything to a file, but it...
Ashish Batra
ash1378
Offline Send Email
Jun 7, 2004
3:21 pm
4922
Thanks... Firas. ... From: Firas Rasmy [mailto:firasrasmy@...] Sent: Sunday, June 06, 2004 6:45 PM To: discussion-pcausa@yahoogroups.com Subject: RE:...
Firas Rasmy
firasrasmy
Offline Send Email
Jun 7, 2004
4:53 pm
4923
Have you looked at NdisWriteEventLogEntry , NdisWriteErrorLogEntry or (NdisMCreateLog, NdisMWriteLogData). However, I haven't used these functions before. ...
Firas Rasmy
firasrasmy
Offline Send Email
Jun 7, 2004
5:13 pm
4924
Hi Ashish... Are you sure the file was created by your driver?!! Your file path is wrong. The object names as represented in the kernel should be in kernel...
Firas Rasmy
firasrasmy
Offline Send Email
Jun 7, 2004
5:43 pm
4925
I, too, went through this about a year and a half ago (before I joined Microsoft). My approach was to step through the PassThru IM Driver, using WinDbg; then I...
antognini10605
Offline Send Email
Jun 8, 2004
2:52 am
Messages 4896 - 4925 of 8586   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help