blob: 2d99ad495b51be743d0308851964b0aa43f890c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#pragma once
#include "../../config.h"
#include "output.h"
#include "thresholds.h"
#include <stddef.h>
enum {
PORT = 554
};
const char *default_expect = "RTSP/1.";
typedef struct {
char *server_address;
char *host_name;
int server_port;
char *server_url;
char *server_expect;
mp_thresholds time_thresholds;
bool output_format_is_set;
mp_output_format output_format;
} check_real_config;
check_real_config check_real_config_init() {
check_real_config tmp = {
.server_address = NULL,
.host_name = NULL,
.server_port = PORT,
.server_url = NULL,
.server_expect = default_expect,
.time_thresholds = mp_thresholds_init(),
.output_format_is_set = false,
};
return tmp;
}
|