chore: first project structure

This commit is contained in:
2026-05-21 16:55:51 +02:00
parent 171ad87589
commit 3c395db3df
17 changed files with 179 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# softlan-vpn
Monorepo for a Layer 2 over QUIC LAN party bridge.
## Workspace crates
- `lanparty-proto`: shared frame format, MAC validation, MTU helpers.
- `lanparty-ctrl`: control-plane messages (join/hello/role/version).
- `lanparty-obs`: shared diagnostics/logging event models.
- `lanparty-client-core`: platform-agnostic client session state.
- `lanparty-client-win`: Windows TAP + route/metric handling binary.
- `lanparty-gateway`: Linux AF_PACKET gateway binary.
- `lanparty-relay`: public QUIC relay binary.
## Build
```bash
cargo check --workspace
```