mirror of
https://github.com/CyberMind-FR/secubox-deb.git
synced 2026-07-29 13:59:40 +00:00
mDNS Discovery: - Implement zeroconf mDNS service registration (_secubox._udp) - Implement peer discovery via mDNS browsing - TXT records contain DID, role, version - Auto-discovery of other SecuBox nodes on LAN Topology Visualization: - Add 7 mock nodes for demo (2 relays, 4 edges, 1 air-gapped) - Generate edges connecting edge nodes to relays - Force-directed layout with role-based positioning - Node coordinates calculated based on role C3BOX Dashboard: - Add shared sidebar navigation (consistent with other modules) - Responsive layout with main-content wrapper - Air-gapped node role styling Control Server: - Enhanced topology endpoint with node IPs and calculated positions - Edge generation logic for relay-link and edge-link types Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
1.1 KiB
Modula-2
33 lines
1.1 KiB
Modula-2
module github.com/cybermind/secubox-deb
|
|
|
|
go 1.22
|
|
|
|
require (
|
|
github.com/grandcat/zeroconf v1.0.0
|
|
github.com/spf13/cobra v1.8.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
modernc.org/sqlite v1.29.5
|
|
)
|
|
|
|
require (
|
|
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.16 // indirect
|
|
github.com/miekg/dns v1.1.27 // indirect
|
|
github.com/ncruces/go-strftime v0.1.9 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 // indirect
|
|
golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa // indirect
|
|
golang.org/x/sys v0.18.0 // indirect
|
|
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 // indirect
|
|
modernc.org/libc v1.41.0 // indirect
|
|
modernc.org/mathutil v1.6.0 // indirect
|
|
modernc.org/memory v1.7.2 // indirect
|
|
modernc.org/strutil v1.2.0 // indirect
|
|
modernc.org/token v1.1.0 // indirect
|
|
)
|