- Enter kernel source dir
cp net/ipv4/tcp_bbr{,plus}.c
- Apply provided patches
1-tcp_bbrplus_c.patch
,2-tcp_bbrplus_dep.patch
This file contains 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
# User authentication method. Could be set multiple times and in | |
# that case all should succeed. To enable multiple methods use | |
# multiple auth directives. Available options: certificate, certificate[optional], | |
# plain, pam. | |
#auth = "certificate" | |
#auth = "plain[./ocserv-passwd]" | |
#auth = "pam" | |
# This indicates that a user may present a certificate. When that option | |
# is set, individual users or user groups can be forced to present a valid |
This file contains 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
#!/usr/bin/env bash | |
usage () { | |
echo "$0 put <src> <cadaver-args>*" >/dev/stderr; | |
echo "$0 get [more wget arguments] <url>" >/dev/stderr; | |
} | |
error () { echo "$1" >/dev/stderr; usage; exit 1; } | |
test $# '>' 1 || \ |
This file contains 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
#!/usr/bin/env python3 | |
import os | |
from pathlib import Path | |
from chardet.universaldetector import UniversalDetector | |
from binaryornot.check import is_binary | |
base_path = "." | |
encoding_map = { |
This file contains 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
#!/usr/bin/env bash | |
echo "---------------- GET SELF PATH ----------------" | |
echo "NOW \$(pwd) >>> $(pwd)" | |
ORIGINAL_PWD_GETSELFPATHVAR=$(pwd) | |
echo "NOW \$0 >>> $0" | |
echo "NOW \$_ >>> $_" | |
echo "NOW \${0##*/} >>> ${0##*/}" |