OpenSSL 1.1.1-pre2
This commit is contained in:
+11
-7
@@ -20,7 +20,11 @@ static long null_ctrl(BIO *h, int cmd, long arg1, void *arg2);
|
||||
static const BIO_METHOD null_method = {
|
||||
BIO_TYPE_NULL,
|
||||
"NULL",
|
||||
/* TODO: Convert to new style write function */
|
||||
bwrite_conv,
|
||||
null_write,
|
||||
/* TODO: Convert to new style read function */
|
||||
bread_conv,
|
||||
null_read,
|
||||
null_puts,
|
||||
null_gets,
|
||||
@@ -32,17 +36,17 @@ static const BIO_METHOD null_method = {
|
||||
|
||||
const BIO_METHOD *BIO_s_null(void)
|
||||
{
|
||||
return (&null_method);
|
||||
return &null_method;
|
||||
}
|
||||
|
||||
static int null_read(BIO *b, char *out, int outl)
|
||||
{
|
||||
return (0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int null_write(BIO *b, const char *in, int inl)
|
||||
{
|
||||
return (inl);
|
||||
return inl;
|
||||
}
|
||||
|
||||
static long null_ctrl(BIO *b, int cmd, long num, void *ptr)
|
||||
@@ -67,17 +71,17 @@ static long null_ctrl(BIO *b, int cmd, long num, void *ptr)
|
||||
ret = 0;
|
||||
break;
|
||||
}
|
||||
return (ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int null_gets(BIO *bp, char *buf, int size)
|
||||
{
|
||||
return (0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int null_puts(BIO *bp, const char *str)
|
||||
{
|
||||
if (str == NULL)
|
||||
return (0);
|
||||
return (strlen(str));
|
||||
return 0;
|
||||
return strlen(str);
|
||||
}
|
||||
Reference in New Issue
Block a user