How to listen to a Port in PPC

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I'm trying to listen to a port and get all the incomming packets.
It's a kind of sniffer.

Let's say i want to be able to see all data going through port 80.

Is that possible on pocket framework ?

Thanks
 
Not from application-level code. You'd have to create a driver to sit
between the Ethernet driver and the TCP/IP stack. You can't create drivers
in managed code, at this point, so you can't do this without some C/C++
programming.

Paul T.
 
Back
Top