subduction_http_longpoll 0.6.2

HTTP long-poll transport layer for the Subduction sync protocol
Documentation
# Subduction HTTP Long-Poll

> [!WARNING]
> This is an early release preview. It has a very unstable API. No guarantees are given. DO NOT use for production use cases at this time. USE AT YOUR OWN RISK.

HTTP long-poll transport layer for the [Subduction](https://github.com/inkandswitch/subduction) sync protocol. Provides an alternative to WebSocket for environments where WebSocket connections are unreliable or unavailable (e.g. restrictive proxies, corporate firewalls, some serverless platforms).

## Protocol

The transport maps Subduction's bidirectional message stream onto HTTP request-response pairs:

```mermaid
sequenceDiagram
    participant Client
    participant Server

    Client->>Server: POST /lp/handshake<br/>Body: Signed<Challenge> (157 B)
    Server-->>Client: 200 + Signed<Response> (140 B)<br/>X-Session-Id: <session_id>

    Client->>Server: POST /lp/send<br/>X-Session-Id: <id><br/>Body: SyncMessage (binary)
    Server-->>Client: 204 No Content

    Client->>Server: POST /lp/recv<br/>X-Session-Id: <id>
    Note right of Server: blocks until message available
    Server-->>Client: 200 + SyncMessage (binary)

    Client->>Server: POST /lp/disconnect<br/>X-Session-Id: <id>
    Server-->>Client: 204 No Content
```

## Endpoints

| Endpoint         | Method | Purpose                                |
|------------------|--------|----------------------------------------|
| `/lp/handshake`  | POST   | Ed25519 mutual authentication          |
| `/lp/send`       | POST   | Client sends a message to the server   |
| `/lp/recv`       | POST   | Client long-polls for the next message |
| `/lp/disconnect` | POST   | Clean session teardown                 |

## `no_std` Support

This crate is `no_std` compatible when the `std` feature is disabled. It requires `alloc` for dynamic memory allocation.

## License

See the workspace [`LICENSE`](../LICENSE) file.