Skip to content

Commit

Permalink
loxilb-io/loxilb#836 fixes issue with out-of-order fin packets causin…
Browse files Browse the repository at this point in the history
…g problems with LB end-point selection
  • Loading branch information
TrekkieCoder committed Nov 8, 2024
1 parent 7bca92d commit 67fdfef
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions kernel/llb_kern_natlbfwd.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ dp_do_nat(void *ctx, struct xfi *xf)
struct dp_proxy_tacts *act;
int sel;

if (xf->pm.l4fin || xf->pm.il4fin) {
return 0;
}

memset(&key, 0, sizeof(key));
key.mark = (__u16)(xf->pm.dp_mark & 0xffff);

Expand Down

0 comments on commit 67fdfef

Please sign in to comment.