I'm myself by no means UTF-8 guru but there is some inconsistency with `RFC3629`_:
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
commit 99f490afdc91d4965aafd5629567ef02c515e169 | |
Author: Alexey Ivanov <[email protected]> | |
Date: Tue Apr 17 16:55:10 2012 +0400 | |
YANDEX: tcpm: Added TCP sysctl tunables | |
I made following constants tunable for internal testing: | |
TCP_DELACK_MIN -> net.ipv4.tcp_delack_min | |
TCP_DELACK_MAX -> net.ipv4.tcp_delack_max | |
TCP_ATO_MIN -> net.ipv4.tcp_ato_min |
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 python | |
import logging as log | |
from fileinput import input | |
from collections import namedtuple, defaultdict | |
from pprint import pprint | |
if __debug__: | |
log_level = log.DEBUG | |
else: |