DragonFlyBSD Kernel Audit
DF-0518 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
8
#!/bin/sh
# DF-0518 build script — compiles the ICMP-error-flood demonstrator.
# Run on guest as the maxx user.
set -e
cd "$(dirname "$0")"
cc -O2 -o df0518 df0518.c
echo "BUILD_EXIT=$?"
ls -l df0518