TCP/IP Packet analysis

  • Thread starter Thread starter Jonny
  • Start date Start date
J

Jonny

Hi all,

I am wondering if its possible to create a program to
analyse tcp/ip packets over a network in c#? If so how? I
have no idea where i would/should start.

Any hints/tips/tricks much appreciated thanks !

/Jonny
 
Jonny,

There isn't anything in the framework per se. You can probably fiddle
with some of the settings through the Socket class, but I think ultimately,
you will have to do some low-level manipulation. Fortunately, you can use
the Handle property to get the handle to the socket, which you can set the
properties on. You might also want to tinker with the SetSocketOption
method on the Socket class, as it might help with getting low-level access.

Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top