]> git.sesse.net Git - cubemap/blob - config.h
Support setting TTL on outgoing UDP streams. Especially useful for multicast.
[cubemap] / config.h
1 #ifndef _CONFIG_H
2 #define _CONFIG_H
3
4 // Various routines that deal with parsing the configuration file.
5
6 #include <arpa/inet.h>
7 #include <netinet/in.h>
8 #include <stddef.h>
9 #include <string>
10 #include <vector>
11
12 struct StreamConfig {
13         std::string url;  // As seen by the client.
14         std::string src;  // Can be empty.
15         size_t backlog_size;
16         uint32_t pacing_rate;  // In bytes per second. Default is ~0U (no limit).
17         enum { STREAM_ENCODING_RAW = 0, STREAM_ENCODING_METACUBE } encoding;
18 };
19
20 struct UDPStreamConfig {
21         sockaddr_in6 dst;
22         std::string src;  // Can be empty.
23         uint32_t pacing_rate;  // In bytes per second. Default is ~0U (no limit).
24         int ttl;  // Default is -1 (use operating system default).
25 };
26
27 struct AcceptorConfig {
28         sockaddr_in6 addr;
29 };
30
31 struct LogConfig {
32         enum { LOG_TYPE_FILE, LOG_TYPE_CONSOLE, LOG_TYPE_SYSLOG } type;
33         std::string filename;
34 };
35
36 struct Config {
37         bool daemonize;
38         int num_servers;
39         std::vector<StreamConfig> streams;
40         std::vector<UDPStreamConfig> udpstreams;
41         std::vector<AcceptorConfig> acceptors;
42         std::vector<LogConfig> log_destinations;
43
44         std::string stats_file;  // Empty means no stats file.
45         int stats_interval;
46
47         std::string input_stats_file;  // Empty means no input stats file.
48         int input_stats_interval;
49
50         std::string access_log_file;  // Empty means no accses_log file.
51 };
52
53 // Parse and validate configuration. Returns false on error.
54 // <config> is taken to be empty (uninitialized) on entry.
55 bool parse_config(const std::string &filename, Config *config);
56
57 #endif  // !defined(_CONFIG_H)