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

feat(fastpath): recognize tls blocking type #793

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions fastpath/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
fastpath (0.85) unstable; urgency=medium

* Recognize Web Connectivity v0.5 "tls" blocking type

-- Simone Basso <simone@ooni.org> Tue, 25 Jan 2024 11:47:55 +0100

fastpath (0.84) unstable; urgency=medium

* Support ooni_run_link_id
Expand Down
2 changes: 1 addition & 1 deletion fastpath/fastpath/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ def score_web_connectivity(msm: dict, matches: list) -> dict:
# TODO: refactor to apply to all test types

# anomaly
blocking_types = ("tcp_ip", "dns", "http-diff", "http-failure")
blocking_types = ("tcp_ip", "dns", "http-diff", "http-failure", "tls")
probe_blocking = tk.get("blocking")
if probe_blocking in blocking_types:
scores["blocking_general"] = 1.0
Expand Down
Loading