Go to the documentation of this file.
64 static int null_write(
BIO *
h,
const char *buf,
int num);
65 static int null_read(
BIO *
h,
char *buf,
int size);
66 static int null_puts(
BIO *
h,
const char *str);
67 static int null_gets(
BIO *
h,
char *str,
int size);
68 static long null_ctrl(
BIO *
h,
int cmd,
long arg1,
void *arg2);
69 static int null_new(
BIO *
h);
70 static int null_free(
BIO *
data);
90 static int null_new(
BIO *bi)
98 static int null_free(
BIO *
a)
100 if (a == NULL)
return(0);
104 static int null_read(
BIO *
b,
char *out,
int outl)
109 static int null_write(
BIO *b,
const char *in,
int inl)
114 static long null_ctrl(
BIO *b,
int cmd,
long num,
void *
ptr)
140 static int null_gets(
BIO *
bp,
char *buf,
int size)
145 static int null_puts(
BIO *bp,
const char *str)
147 if (str == NULL)
return(0);