Add project documentation, architecture decisions, and usage book
Comprehensive documentation for WayRay, a SunRay-like thin client
Wayland compositor targeting illumos and Linux:
- CLAUDE.md: project context and conventions
- docs/ai/plans: 6-phase implementation roadmap
- docs/ai/adr: 9 architecture decision records (Smithay, QUIC,
frame encoding, session management, rendering, audio, project
structure, illumos support, pluggable window management)
- docs/architecture: system architecture overview with diagrams
- docs/protocols: WayRay wire protocol specification
- book/: mdbook user guide (introduction, concepts, server/client
guides, admin, development)
- RESEARCH.md: deep research on remote display protocols
2026-03-28 20:47:16 +01:00
|
|
|
# Connecting to a Server
|
|
|
|
|
|
|
|
|
|
> This page will be expanded as the client implementation matures.
|
|
|
|
|
|
|
|
|
|
## Basic Connection
|
|
|
|
|
|
|
|
|
|
```bash
|
2026-03-29 00:34:19 +01:00
|
|
|
wrclient --server <host>:<port> --token <token>
|
Add project documentation, architecture decisions, and usage book
Comprehensive documentation for WayRay, a SunRay-like thin client
Wayland compositor targeting illumos and Linux:
- CLAUDE.md: project context and conventions
- docs/ai/plans: 6-phase implementation roadmap
- docs/ai/adr: 9 architecture decision records (Smithay, QUIC,
frame encoding, session management, rendering, audio, project
structure, illumos support, pluggable window management)
- docs/architecture: system architecture overview with diagrams
- docs/protocols: WayRay wire protocol specification
- book/: mdbook user guide (introduction, concepts, server/client
guides, admin, development)
- RESEARCH.md: deep research on remote display protocols
2026-03-28 20:47:16 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Connection Troubleshooting
|
|
|
|
|
|
|
|
|
|
- Ensure UDP port is open between client and server
|
|
|
|
|
- Verify TLS certificates are correct
|
|
|
|
|
- Check server logs for authentication failures
|