vote up 0 vote down star

Hi there

I am currently trying to write a network monitoring software for windows mobile 6. I googled a lot and some people say that it is not possible to use a NDIS driver or WinPcap or so for monitoring any network interface. Others say that it is possible. Fact is, that I found no exaples, nor any sourcecode on the net.

Therefore I ask this community: Is it possible to write a packet capturing tool that works on data-link layer for windows mobile in C or C#?

with best regards

flag

67% accept rate

2 Answers

vote up 0 vote down check

Desktop and Server Windows products have a very defined, generic, and pluggable structure into which you can insert hooks into the network layer. (Look up LSP or Layered Service Provider - this is how AntiVirus/Firewall programs plug themselves into monitoring your network traffic). As far as WinPCap, it plugs in one level lower at the NDIS driver level, but regardless, Windows Mobile just is not nearly as flexible when it comes to this. I don't necessarily think it's just Microsoft being short-sighted here, though - it takes much more power to provide a generic and pluggable LSP or NDIS layer that most mobile devices just can't afford.

The most important point here - NDIS Packet Capturing is not supported for Windows Mobile. Closest you can get to a mobile platform with packet capture is Windows Embedded CE.

So, in order to capture network traffic for Windows Mobile you would need to develop your own NDIS driver framework. Not a small task.

link|flag
Okay, thank you for your answer. I think developing a driver framework is a pretty too large task for me. I've given up. – Emiswelt Jul 31 at 19:15
vote up 0 vote down

Windows Mobile uses Windows CE.

NDIS is very much present on Windows Mobile, so you can write an intermediate driver to capture traffic.

However, it already has netlog which should do the work for you: http://msdn.microsoft.com/en-us/library/ms883126.aspx

link|flag
Thanks for your answer, but sorry, this solution does not work on Windows Mobile. – Emiswelt Nov 11 at 8:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.