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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
--- lib/libtelnet/sslapp.c.orig Sat Aug 2 13:52:35 1997
+++ lib/libtelnet/sslapp.c Wed Sep 2 12:53:21 1998
@@ -31,6 +31,7 @@
int ssl_cert_required=0;
int ssl_verbose_flag=0;
int ssl_disabled_flag=0;
+int ssl_quiet_flag=0;
char *ssl_cert_file=NULL;
char *ssl_key_file=NULL;
char *ssl_cipher_list=NULL;
@@ -59,7 +60,7 @@
* a clean interface for doing things
*/
if (ssl_debug_flag)
- BIO_printf(bio_err,"SSL_DEBUG_FLAG on\n");
+ BIO_printf(bio_err,"SSL_DEBUG_FLAG on\r\n");
/* init things so we will get meaningful error messages
@@ -79,15 +80,18 @@
if (SSL_CTX_need_tmp_RSA(ssl_ctx)) {
RSA *rsa;
- BIO_printf(bio_err,"Generating temp (512 bit) RSA key ...\n");
+ if (!ssl_quiet_flag)
+ BIO_printf(bio_err,"Generating temp (512 bit) RSA key ...\r\n");
rsa=RSA_generate_key(512,RSA_F4,NULL);
- BIO_printf(bio_err,"Generation of temp (512 bit) RSA key done\n");
+ if (!ssl_quiet_flag)
+ BIO_printf(bio_err,"Generation of temp (512 bit) RSA key done\r\n");
- if (!SSL_CTX_set_tmp_rsa(ssl_ctx,rsa)) {
- BIO_printf(bio_err,"Failed to assign generated temp RSA key!\n");
+ if (!SSL_CTX_set_tmp_rsa(ssl_ctx,rsa) && !ssl_quiet_flag) {
+ BIO_printf(bio_err,"Failed to assign generated temp RSA key!\r\n");
}
RSA_free(rsa);
- BIO_printf(bio_err,"Assigned temp (512 bit) RSA key\n");
+ if (!ssl_quiet_flag)
+ BIO_printf(bio_err,"Assigned temp (512 bit) RSA key\r\n");
}
}
@@ -161,14 +165,14 @@
int ret;
{
if (where==SSL_CB_CONNECT_LOOP) {
- BIO_printf(bio_err,"SSL_connect:%s %s\n",
+ BIO_printf(bio_err,"SSL_connect:%s %s\r\n",
SSL_state_string(s),SSL_state_string_long(s));
} else if (where==SSL_CB_CONNECT_EXIT) {
if (ret == 0) {
- BIO_printf(bio_err,"SSL_connect:failed in %s %s\n",
+ BIO_printf(bio_err,"SSL_connect:failed in %s %s\r\n",
SSL_state_string(s),SSL_state_string_long(s));
} else if (ret < 0) {
- BIO_printf(bio_err,"SSL_connect:error in %s %s\n",
+ BIO_printf(bio_err,"SSL_connect:error in %s %s\r\n",
SSL_state_string(s),SSL_state_string_long(s));
}
}
--- lib/libtelnet/sslapp.h.orig Sat Aug 2 13:56:21 1997
+++ lib/libtelnet/sslapp.h Wed Sep 2 12:53:22 1998
@@ -53,6 +53,7 @@
extern int ssl_disabled_flag;
extern int ssl_cert_required;
extern int ssl_certsok_flag;
+extern int ssl_quiet_flag;
extern char *ssl_log_file;
extern char *ssl_cert_file;
--- lib/libtelnet/Makefile.orig Sat Aug 2 13:31:37 1997
+++ lib/libtelnet/Makefile Wed Sep 2 13:16:15 1998
@@ -12,8 +12,7 @@
#CFLAGS= -DENCRYPT -DAUTHENTICATE -DSRA -DUSE_SSL -DDES_ENCRYPTION \
#-I../libbsd/include -I../libpk
-CFLAGS= -DAUTHENTICATE -DUSE_SSL \
--I../libbsd/include -I$(SSLTOP)/include -I../libpk -g
+CFLAGS+= -DAUTHENTICATE -DUSE_SSL -I$(SSLTOP)/include -I../libbsd/include
lib${LIB}.a: ${OBJS}
echo building standard ${LIB} library
|