BusyBox on Termux can't use ports less than 1024 it's patched to change default port for httpd to 8080 and telnetd to 8023. https://github.com/termux/termux-packages/blob/master/packages/busybox/0011-networking-telnetd-default-port.patch https://github.com/termux/termux-packages/blob/master/packages/busybox/0010-networking-httpd-default-port.patch To avoid such patches we can make port configurable. function old new delta packed_usage 33920 33914 -6 Signed-off-by: Sergey Ponomarev <stokito@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* vi: set sw=8 ts=8: */
 | 
						|
/*
 | 
						|
 * This file suffers from chronically incorrect tabification
 | 
						|
 * of messages. Before editing this file:
 | 
						|
 * 1. Switch you editor to 8-space tab mode.
 | 
						|
 * 2. Do not use \t in messages, use real tab character.
 | 
						|
 * 3. Start each source line with message as follows:
 | 
						|
 *    |<7 spaces>"text with tabs"....
 | 
						|
 * or
 | 
						|
 *    |<5 spaces>"\ntext with tabs"....
 | 
						|
 */
 | 
						|
#ifndef BB_USAGE_H
 | 
						|
#define BB_USAGE_H 1
 | 
						|
 | 
						|
#define NOUSAGE_STR "\b"
 | 
						|
 | 
						|
#define scripted_trivial_usage NOUSAGE_STR
 | 
						|
#define scripted_full_usage ""
 | 
						|
 | 
						|
#if !ENABLE_USE_BB_CRYPT || ENABLE_USE_BB_CRYPT_SHA
 | 
						|
# define CRYPT_METHODS_HELP_STR "des,md5,sha256/512" \
 | 
						|
	" (default "CONFIG_FEATURE_DEFAULT_PASSWD_ALGO")"
 | 
						|
#else
 | 
						|
# define CRYPT_METHODS_HELP_STR "des,md5" \
 | 
						|
	" (default "CONFIG_FEATURE_DEFAULT_PASSWD_ALGO")"
 | 
						|
#endif
 | 
						|
 | 
						|
#if ENABLE_FEATURE_HWCLOCK_ADJTIME_FHS
 | 
						|
# define ADJTIME_PATH "/var/lib/hwclock/adjtime"
 | 
						|
#else
 | 
						|
# define ADJTIME_PATH "/etc/adjtime"
 | 
						|
#endif
 | 
						|
 | 
						|
#define STR1(s) #s
 | 
						|
#define STR(s)  STR1(s)
 | 
						|
 | 
						|
INSERT
 | 
						|
 | 
						|
#define busybox_notes_usage \
 | 
						|
       "Hello world!\n"
 | 
						|
 | 
						|
#endif
 |