libertaria-stack/core/l0-transport/utcp
Markus Maiwald 0f0f1a4d57
fix(build): resolve module import issues post-refactor
Fix circular and missing module imports across L0-L2 layers:
- Add l0_transport import to QVL and PoP modules in build.zig
- Fix gateway test to use DhtService parameter
- Convert l0_transport imports to direct time imports in L1
- Fix soulkey to use module import (@import("pqxdh"))
- Fix policy.zig to use module import (@import("lwf"))
- Refactor mod.zig exports to avoid circular dependencies
- Update service.zig and utcp/socket.zig to use module imports
- Fix all QVL test files to import time directly

Results: 254+ tests passing (was 124), 1 module conflict remaining
in service tests (opq/store.zig in both lwf and opq modules).

Refs: Night Sprint 2026-02-05
2026-02-05 22:17:11 +01:00
..
README.md refactor: restructure repository with tiered licensing 2026-02-05 20:12:32 +01:00
socket.zig fix(build): resolve module import issues post-refactor 2026-02-05 22:17:11 +01:00
test_socket.zig refactor: restructure repository with tiered licensing 2026-02-05 20:12:32 +01:00

README.md

UTCP: Unreliable Transport Protocol

Layer: L0 (Transport) RFC: RFC-0004

Purpose

UTCP provides the UDP-based transmission layer for Libertaria. It focuses on:

  • High-throughput ingestion of LWF frames.
  • Low-latency entropy validation.
  • Connectionless UDP socket management.

Components

  • socket.zig: Bound UDP socket abstraction.
  • protocol.zig: (Pending) MTU discovery and class selection.