Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add HTTP/3 fuzzing harness #97

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add option to override ngtcp2 directory
  • Loading branch information
elopez committed Jan 5, 2024
commit 418955392f0ebe31a4d56aa957d58ab3190f7d77
6 changes: 4 additions & 2 deletions mainline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,17 @@ INSTALLDIR=/tmp/curl_install
# Parse the options.
OPTIND=1

while getopts "c:n:o:" opt
while getopts "c:n:o:t:" opt
do
case "$opt" in
c) CURLDIR=$OPTARG
;;
n) NGHTTPDIR=$OPTARG
n) NGHTTP2DIR=$OPTARG
;;
o) OPENSSLDIR=$OPTARG
;;
t) NGTCP2DIR=$OPTARG
;;
esac
done
shift $((OPTIND-1))
Expand Down