From 6b40072bc5779095e2b69c7e22344a2e9cb84db2 Mon Sep 17 00:00:00 2001 From: Vincent Loeng/Leong <173226116+Vincent-Loeng@users.noreply.github.com> Date: Sat, 6 Dec 2025 14:03:59 +0800 Subject: [PATCH] chore: support find process on freebsd 14 and 15 (#2422) --- component/process/process_freebsd_amd64.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/component/process/process_freebsd_amd64.go b/component/process/process_freebsd_amd64.go index cb43c5ff..a6d00c8e 100644 --- a/component/process/process_freebsd_amd64.go +++ b/component/process/process_freebsd_amd64.go @@ -197,6 +197,10 @@ func newSearcher(major int) *searcher { case 12: fallthrough case 13: + fallthrough + case 14: + fallthrough + case 15: s = &searcher{ headSize: 64, tcpItemSize: 744,