projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1d6e3f
)
tag SSL_peek bugs
author
Bodo Möller
<bodo@openssl.org>
Fri, 17 Nov 2000 11:49:29 +0000
(11:49 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Fri, 17 Nov 2000 11:49:29 +0000
(11:49 +0000)
ssl/s2_pkt.c
patch
|
blob
|
history
ssl/s3_lib.c
patch
|
blob
|
history
diff --git
a/ssl/s2_pkt.c
b/ssl/s2_pkt.c
index 56662f29facb508a10b908c2ffb87808fcd0485a..7d4a4e6efc5b49d2390376c21435b898eed5b008 100644
(file)
--- a/
ssl/s2_pkt.c
+++ b/
ssl/s2_pkt.c
@@
-70,6
+70,7
@@
int ssl2_peek(SSL *s, char *buf, int len)
{
int ret;
+/* FIXME */
ret=ssl2_read(s,buf,len);
if (ret > 0)
{
diff --git
a/ssl/s3_lib.c
b/ssl/s3_lib.c
index cee2021b6b0c518ffa6a76c6dcae2da71c10adbe..6dcd9cd6820b78e4e56af2deb9382f0e84f89758 100644
(file)
--- a/
ssl/s3_lib.c
+++ b/
ssl/s3_lib.c
@@
-1283,6
+1283,7
@@
int ssl3_peek(SSL *s, char *buf, int len)
SSL3_RECORD *rr;
int n;
+/* FIXME */
rr= &(s->s3->rrec);
if ((rr->length == 0) || (rr->type != SSL3_RT_APPLICATION_DATA))
{