I'm looking to write a LSP in C# to capture and re-direct UDP packets..

I have little experience with LSP's but I've heard they can do this sort of thing, please correct me if I'm wrong, but is this possible?

I would love some example code but I will take any information or advice anyone can give on the topic. :)

link|improve this question

feedback

4 Answers

Do you definitely want to write your own?

WinPCap does an excellent job of capturing packets. SharpPcap does an equally excellent job of letting you use WinPCap from C#. Both are free and, I think, open-source.

(I'm not sure if WinPCap uses LSP under the hood, but the final result is that you can inspect packets, so might be just the thing you want)

link|improve this answer
I need to intercept/redirect packets. this possible? – caesay Apr 17 '11 at 6:03
@Tommy no, it isn't. I should have paid closer attention to your "redirect" requirement... – enverpex Apr 17 '11 at 11:03
feedback

If I am not mistaken, you will need to use the winsock API --Ws2.dll. I have not used SharpPCap, but it probably does all of the platform invoke and marshalling of with winsock library for you (this is just an educated assumption), since it is open source, you could grab the code and see how they do the PInvoke (that would save you time if you do not need all of the SharpPCap functionality). Otherwise, you will need to spend some time on MSDN reading the WinSock API documentation. Also, I found a few links for you:

http://www.codeproject.com/KB/IP/packetfilteringnet.aspx

http://blogs.msdn.com/b/mzammuto/archive/2005/12/16/504868.aspx

I hope this helps,

If you need any further help in implementing winsock let me know, but this should point you in the right direction.

P.S. In .net, the System.Net and System.Net.Sockets namespaces encapsulate most of the functionality of Ws2.dll. I doubt that it has enough to implement something as low-level as an LSP but it is worth a shot.

link|improve this answer
feedback

have a look at komodia there is an article + example about LSP, unfortunaltly in C++.

But it should not be impossible to convert it.

link|improve this answer
feedback

Easy to do with WCF... Microsoft have even written the code for you, here is the url with exmaple location at bottom of page: http://msdn.microsoft.com/en-us/library/ms751494.aspx

Fun times await, good luck!

link|improve this answer
This is a custom transport type for WCF - not even close to an LSP : ) Caesay is basically asking for a packet router using c#. – Adam Tuliper Jun 8 '11 at 14:07
feedback

Your Answer

 
or
required, but never shown

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