From c987bdabf0ee3899447c853cbd7aa893408f144c Mon Sep 17 00:00:00 2001 From: Vincent Loeng/Leong <173226116+Vincent-Loeng@users.noreply.github.com> Date: Sat, 6 Dec 2025 12:25:17 +0800 Subject: [PATCH] chore: support freebsd 14 and 15 --- 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,