2023-03-03 21:25:50 +01:00

14 lines
221 B
C

#pragma once
typedef struct rtsp_options_s {
bool running;
bool allow_truncated;
uint port;
int clients;
int frames;
int truncated;
int dropped;
} rtsp_options_t;
int rtsp_server(rtsp_options_t *options);