You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can this design be scaled up to support multiple streams? I would like to use this design to consume 2 or more UDP streams, is it possible to update the existing design for this ?
The text was updated successfully, but these errors were encountered:
Though I am not 100% positive, but I think it should work if you consume the UDP packets fast enough. Say, for example, you want to match on two different ports. So, when you match one or the other, you copy the FIFO to the appropriate consumer, and then go back and listen again.
My experience that leads to this conclusion was that when I was working with it when I was testing my application, I accidentally didn't consume (throw away) a bunch of UDP packets that preceded a needed ARP response packet to resolve a sender's IP address, and the UDP receive FIFO filled up and the ARP packet got lost.
Can this design be scaled up to support multiple streams? I would like to use this design to consume 2 or more UDP streams, is it possible to update the existing design for this ?
The text was updated successfully, but these errors were encountered: