views:

29

answers:

0

I'm currently working on a high performance Raw socket application.

I'm using ReceiveFromAsync to receive packets. This may sound like a silly question, but is this implicitly threaded? I'm not sure if i need to take the received packet and thread off the handling to ensure I'm not blocking any additional packets while i handle the current one. The documentation does not really mention that. The sample code for the 3.5 sockets does not thread it so my initial guess was that its implicitly handled.

Thanks