remove pre-built eBPF programs
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Steven Polley 2024-04-25 21:37:15 -06:00
parent 92f5c579e6
commit 390fabe1b4
4 changed files with 4 additions and 3 deletions

4
.gitignore vendored
View File

@ -3,4 +3,6 @@ hyp.secret
hypd/hypd
hyp/hyp
hypd/hypdconfig.json
hypd/secrets/
hypd/secrets/
hypd/server/*.o
env.sh

View File

@ -35,7 +35,7 @@ int xdp_prog_func(struct xdp_md *ctx) {
// A knock should not contain any data
if (data_end - data > 60) {
goto done;
return XDP_PASS;
}
// parse ethernet header
@ -60,7 +60,6 @@ int xdp_prog_func(struct xdp_md *ctx) {
}
}
}
done:
// We send everything to XDP_PASS
return XDP_PASS;
}

Binary file not shown.

Binary file not shown.