Quote:
1. would Sudppipe use a myproxocket type plugin, or is it something else?
proxocket can use only the plugins written for itself (myproxocket.dll) while sudppipe can use both those for proxocket (probably with some limitations in some complex things I guess) and those for itself.
I have not added the support for sudppipe plugins in proxocket because they are mainly "view-only" plugins useful for example for decompressing the packets or doing some other very very basic operations (indeed you can't even know if they are incoming or outgoing packets).
Quote:
2. With Proxocket, if I'm using myrecvfrom to figure out when a certain packet arrives, how do I cause the app to send a new packet that I build?
you can do it by using that part of code in the myproxocket.c example located in proxocket.zip
I refer to the part that goes from line 123 to 166 (remember to call init_myproxocket and free_myproxocket in DllMain), so that when you want to send a packet in any moment you can use real_sendto... it should work (not tested):
Code:
real_sendto(s, "DATA", 4, flags, from, *fromlen);