/* * Copyright notice from original mutt: * Copyright (C) 1999-2000 Tommi Komulainen * * This file is part of mutt-ng, see http://www.muttng.org/. * It's licensed under the GNU General Public License, * please see the file GPL in the top level source directory. */ #ifndef _MUTT_SSL_H_ #define _MUTT_SSL_H_ 1 #include "mutt_socket.h" #if defined (USE_SSL) || defined (USE_GNUTLS) int mutt_ssl_starttls (CONNECTION * conn); int mutt_ssl_socket_setup (CONNECTION * conn); #endif #endif /* _MUTT_SSL_H_ */