From 31bdb76a97a80a48f37f1d30292ce0c8316f2c4e Mon Sep 17 00:00:00 2001 From: Username Date: Tue, 17 Feb 2026 21:06:10 +0100 Subject: [PATCH] config: add fingerprint option for protocol probing --- config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/config.py b/config.py index 04e985c..d366cd1 100644 --- a/config.py +++ b/config.py @@ -123,6 +123,7 @@ class Config(ComboParser): self.add_item(section, 'checktype', str, 'head', 'secondary check type: head, irc, judges, none/false (none = SSL-only)', False) self.add_item(section, 'ssl_first', bool, True, 'try SSL handshake first, fallback to checktype on failure (default: True)', False) self.add_item(section, 'ssl_only', bool, False, 'when ssl_first enabled, skip secondary check on SSL failure (default: False)', False) + self.add_item(section, 'fingerprint', bool, True, 'probe proxy protocol before testing (default: True)', False) self.add_item(section, 'scale_cooldown', int, 10, 'seconds between thread scaling decisions (default: 10)', False) self.add_item(section, 'scale_threshold', float, 10.0, 'min success rate % to scale up threads (default: 10.0)', False)