dahua-camera-server 0.3.1

axum HTTP, SSE and WebSocket API for the dahua-camera stack
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Request handlers. Each one is a thin translation between HTTP and the
//! application layer; anything that looks like logic belongs upstream of here.

pub mod capabilities;
pub mod control;
pub mod events_sse;
pub mod events_ws;
pub mod status;
pub mod stream_ws;

#[cfg(feature = "decode")]
pub mod mjpeg;

#[cfg(feature = "alarms")]
pub mod alarms;