comparison sysoptions.h @ 1069:2fa71c3b2827 pam

merge pam branch up to date
author Matt Johnston <matt@ucc.asn.au>
date Mon, 16 Mar 2015 21:34:05 +0800
parents 73ea0dce9a57 01eea88963f3
children
comparison
equal deleted inserted replaced
1068:9a6395ddb1b6 1069:2fa71c3b2827
2 * You shouldn't edit this file unless you know you need to. 2 * You shouldn't edit this file unless you know you need to.
3 * This file is only included from options.h 3 * This file is only included from options.h
4 *******************************************************************/ 4 *******************************************************************/
5 5
6 #ifndef DROPBEAR_VERSION 6 #ifndef DROPBEAR_VERSION
7 #define DROPBEAR_VERSION "2014.66" 7 #define DROPBEAR_VERSION "2015.67"
8 #endif 8 #endif
9 9
10 #define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION 10 #define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION
11 #define PROGNAME "dropbear" 11 #define PROGNAME "dropbear"
12 12
252 #define DROPBEAR_LISTEN_BACKLOG MAX_UNAUTH_CLIENTS 252 #define DROPBEAR_LISTEN_BACKLOG MAX_UNAUTH_CLIENTS
253 #else 253 #else
254 #define DROPBEAR_LISTEN_BACKLOG MAX_CHANNELS 254 #define DROPBEAR_LISTEN_BACKLOG MAX_CHANNELS
255 #endif 255 #endif
256 256
257 /* free memory before exiting */
258 #define DROPBEAR_CLEANUP
259
257 /* Use this string since some implementations might special-case it */ 260 /* Use this string since some implementations might special-case it */
258 #define DROPBEAR_KEEPALIVE_STRING "[email protected]" 261 #define DROPBEAR_KEEPALIVE_STRING "[email protected]"
259 262
263 /* Linux will attempt TCP fast open, falling back if not supported by the kernel */
264 #ifdef __linux__
265 #define DROPBEAR_TCP_FAST_OPEN 1
266 #endif
267
260 /* no include guard for this file */ 268 /* no include guard for this file */