summaryrefslogtreecommitdiffstats
path: root/libs/srt/Config.in
blob: 905dca67beba597b72dec1e45d2c31ca9c1b15b4 (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
if PACKAGE_srt

comment "Encryption support"

choice
	prompt "Selected Encryption library"
	default SRT_OPENSSL

	config SRT_OPENSSL
		bool "OpenSSL"

	config SRT_MBEDTLS
		bool "mbed TLS"

	config SRT_GNUTLS
		bool "GNUTLS"

	config SRT_NOENCRYPTION
		bool "No encryption support"

endchoice

comment "Options"

config SRT_MONOTONIC_CLOCK
	bool "Monotonic clock"
	default y

config SRT_BONDING
	bool "Bonding"
	default n

endif