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
Each brick have a burst callback which should in most case have a completely different behaviours depending of the direction of packets passing though the brick so,
on a lot of brick the first job of the callback is to determine where the packet come from with that kind of code:
if (sate->output == from)
return sub-function-1(...);
else
return sub-function-2(...);
So maybe it would be faster if instead of having a callback that check the output at each call, we have one callback for each sides.
The simplest way to start implementing thi, would be to replace
Each brick have a burst callback which should in most case have a completely different behaviours depending of the direction of packets passing though the brick so,
on a lot of brick the first job of the callback is to determine where the packet come from with that kind of code:
So maybe it would be faster if instead of having a callback that check the output at each call, we have one callback for each sides.
The simplest way to start implementing thi, would be to replace
per
The text was updated successfully, but these errors were encountered: