Disable SSL_peek until it is fixed.
[openssl.git] / ssl / s2_pkt.c
index e65dfb203b8fc374a9a2c232a9d9a74f80c5839a..0b48ea28948bf66d9b0e1e7cb674ff5e2a56f113 100644 (file)
  * [including the GNU Public Licence.]
  */
 
+#include "ssl_locl.h"
+#ifndef NO_SSL2
 #include <stdio.h>
 #include <errno.h>
 #define USE_SOCKETS
-#include "ssl_locl.h"
 
 static int read_n(SSL *s,unsigned int n,unsigned int max,unsigned int extend);
 static int do_ssl_write(SSL *s, const unsigned char *buf, unsigned int len);
@@ -67,6 +68,10 @@ static int write_pending(SSL *s, const unsigned char *buf, unsigned int len);
 static int ssl_mt_error(int n);
 int ssl2_peek(SSL *s, char *buf, int len)
        {
+#if 1
+       SSLerr(SSL_F_SSL2_PEEK, SSL_R_FIXME); /* function is totally broken */
+       return -1;
+#else
        int ret;
 
        ret=ssl2_read(s,buf,len);
@@ -76,6 +81,7 @@ int ssl2_peek(SSL *s, char *buf, int len)
                s->s2->ract_data-=ret;
                }
        return(ret);
+#endif
        }
 
 /* SSL_read -
@@ -392,7 +398,7 @@ int ssl2_write(SSL *s, const void *_buf, int len)
                        return(i);
                        }
                if ((i == (int)n) ||
-                       (s->mode | SSL_MODE_ENABLE_PARTIAL_WRITE))
+                       (s->mode & SSL_MODE_ENABLE_PARTIAL_WRITE))
                        {
                        return(tot+i);
                        }
@@ -638,3 +644,10 @@ static int ssl_mt_error(int n)
                }
        return(ret);
        }
+#else /* !NO_SSL2 */
+
+# if PEDANTIC
+static void *dummy=&dummy;
+# endif
+
+#endif