/* $Id: options.h,v 1.18 2001/02/08 02:30:10 thorpej Exp $ */ /* * Copyright 1999 RedBack Networks, Incorporated. * All rights reserved. * * This software is not in the public domain. It is distributed * under the terms of the license in the file LICENSE in the * same directory as this file. If you have received a copy of this * software without the LICENSE file (which means that whoever gave * you this software violated its license) you may obtain a copy from * http://www.panix.com/~tls/LICENSE.txt */ #ifndef _OPTIONS_H #define _OPTIONS_H #define WITH_PROTO_V1 #define WITH_TRANSPORT_V1 #undef WITH_PROTO_V1_COMPAT #undef WITH_PROTO_V2 #undef WITH_TRANSPORT_V2SSH #undef WITH_TRANSPORT_V2TLS #define WITH_OPENSSL #define WITH_AUTH_RHOSTS #define WITH_AUTH_PASSWORD #define WITH_AUTH_RSA #undef WITH_AUTH_RHOSTS_RSA #define WITH_COMPRESSION #define WITH_CIPHER_NONE #if 0 /* Patented algorithm. */ #define WITH_CIPHER_IDEA #endif #define WITH_CIPHER_DES #define WITH_CIPHER_3DES #if 0 /* Insecure cipher. */ #define WITH_CIPHER_RC4 #endif #define WITH_CIPHER_BLOWFISH #define SYS_BSD44 #undef SYS_SYSV /* * sendmsg with control data on a socket with a full buffer returns EMSGSIZE * on earlier (<1.5) NetBSD systems. Others? * XXX need a configure script */ #define BROKEN_LOCAL_FLOW_CONTROL #endif /* _OPTIONS_H */