curl-local() {
LD_LIBRARY_PATH="$HOME/.local/lib64:$HOME/.local/lib" \
"$HOME/.local/bin/curl" "$@"
}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // qpack_roundtrip.c | |
| #include <nghttp3/nghttp3.h> | |
| #include <inttypes.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| /* rcbuf から (ptr,len) を取り出して表示する */ | |
| static void print_qpack_nv(const nghttp3_qpack_nv *nv) { | |
| nghttp3_vec name = nghttp3_rcbuf_get_buf(nv->name); |