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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 8362 - 8391 of 8586   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8362
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...
Thomas F. Divine
pcatom
Offline Send Email
Jun 11, 2008
12:56 pm
8363
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...
Cristi
wtherapy
Online Now Send Email
Jun 13, 2008
12:28 pm
8364
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...
Thomas F. Divine
pcatom
Offline Send Email
Jun 13, 2008
12:55 pm
8365
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...
Hardik Belani
hardikbelani
Offline Send Email
Jun 13, 2008
1:42 pm
8366
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: ...
Thomas F. Divine
pcatom
Offline Send Email
Jun 13, 2008
2:05 pm
8367
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...
ryujin_ssdt
Offline Send Email
Jun 17, 2008
12:56 pm
8368
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....
Thomas F. Divine
pcatom
Offline Send Email
Jun 17, 2008
7:44 pm
8369
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 =...
Cristi
wtherapy
Online Now Send Email
Jun 23, 2008
11:17 am
8370
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...
Thomas F. Divine
pcatom
Offline Send Email
Jun 23, 2008
7:13 pm
8371
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...
Cristi
wtherapy
Online Now Send Email
Jun 24, 2008
1:19 pm
8372
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...
Thomas F. Divine
pcatom
Offline Send Email
Jun 24, 2008
1:29 pm
8373
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,...
Cristi
wtherapy
Online Now Send Email
Jun 25, 2008
12:17 pm
8374
Something like that... I don't know the goal of your set of drivers, so I couldn't suggest how they should cooperate. Thomas F. Divine...
Thomas F. Divine
pcatom
Offline Send Email
Jun 25, 2008
12:55 pm
8375
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 ... ...
Cristi
wtherapy
Online Now Send Email
Jun 25, 2008
1:24 pm
8376
Dear all I want to run PCASIM.sys(pktRedir) and sample application(prtest2.exe) in windows 2003 server 64bit environment. I success to complie...
glove
inyouris
Offline Send Email
Jul 4, 2008
6:47 am
8377
The INF files must be updated to work with AMD64: NETIM.INF changes (Additions In RED): [Manufacturer] %PcaUsa% = PCAUSA,NTamd64 [ControlFlags] [PCAUSA] ...
Thomas F. Divine
pcatom
Offline Send Email
Jul 4, 2008
3:54 pm
8378
it's my mistake in installation. sample application work well in x64. thanks for your help. ... º¸³½ÀÌ: "Thomas F. Divine" <tdivine@...> ³¯Â¥:...
glove
inyouris
Offline Send Email
Jul 6, 2008
3:10 pm
8379
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...
inyouris
Offline Send Email
Jul 6, 2008
3:11 pm
8380
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. ...
SeongMoon
seongjoy
Offline Send Email
Jul 7, 2008
1:25 pm
8381
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...
Thomas F. Divine
pcatom
Offline Send Email
Jul 7, 2008
1:56 pm
8382
Hi All Is there any Ndis equivalent for InterlockedExchangeAdd that does not use spin locks? Thanks Arun...
Arun
anthem151078
Offline Send Email
Jul 7, 2008
8:48 pm
8383
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 ...
Thomas F. Divine
pcatom
Offline Send Email
Jul 7, 2008
8:53 pm
8384
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...
Arun
anthem151078
Offline Send Email
Jul 8, 2008
1:11 am
8385
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. ...
Thomas F. Divine
pcatom
Offline Send Email
Jul 8, 2008
3:55 am
8386
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...
ketan_kamat
Offline Send Email
Jul 8, 2008
1:29 pm
8387
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...
ajithk_2004
Offline Send Email
Jul 8, 2008
1:29 pm
8388
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...
Thomas F. Divine
pcatom
Offline Send Email
Jul 8, 2008
2:29 pm
8389
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...
Thomas F. Divine
pcatom
Offline Send Email
Jul 8, 2008
2:31 pm
8390
Dear Thomas I open virtual adapter handle using pcaim.sys(pktRedir). I want to read only tcp packet from among outgoing packets. if I use...
glove
inyouris
Offline Send Email
Jul 9, 2008
1:40 am
8391
See the PktRedirEx sample. Thomas F. Divine From: discussion-pcausa@yahoogroups.com [mailto:discussion- pcausa@yahoogroups.com] On Behalf Of glove Sent:...
Thomas F. Divine
pcatom
Offline Send Email
Jul 9, 2008
1:45 am
Messages 8362 - 8391 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