Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Layered Service Provider in C#

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. :)

like image 364
caesay Avatar asked Apr 16 '11 23:04

caesay


1 Answers

You can view example of code (c#) for LSP at https://github.com/SOLON7/HTTPSniffer. It is used for 32 Windows OS, but you can port it easely to 64 (set LspCatalog64Only during installation)

And you should remember, that you have to generate new GUID for your provider in a case of collisions with another LSP providers.

like image 184
Serge P Avatar answered Sep 22 '22 19:09

Serge P