summaryrefslogtreecommitdiffstats
path: root/rules/mosh.in
blob: 398917fc71dbc75135728734120830a99e42d456 (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
## SECTION=networking

menuconfig MOSH
	tristate
	prompt "mosh"
	select PROTOBUF
	select NCURSES
	select ZLIB
	select NETTLE		if MOSH_NETTLE
	select OPENSSL		if MOSH_OPENSSL
	select OPENSSH		if RUNTIME
	select OPENSSH_SSH	if RUNTIME
	select OPENSSH_SSHD	if RUNTIME
	help
	  Remote terminal application that allows roaming, supports intermittent
	  connectivity, and provides intelligent local echo and line editing of
	  user keystrokes. Mosh is a replacement for SSH. It's more robust and
	  responsive, especially over Wi-Fi, cellular, and long-distance links.

if MOSH

choice
	prompt "crypto library"
	default MOSH_OPENSSL
	help
	  Select the crypto library to be used

	config MOSH_NETTLE
		bool
		prompt "nettle"

	config MOSH_OPENSSL
		bool
		prompt "openssl"

endchoice

endif