#include <openssl/bio.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <openssl/err.h>
#include <openssl/mem.h>
#include "../internal.h"
Go to the source code of this file.
|
int | BIO_append_filename (BIO *bio, const char *filename) |
|
int | BIO_get_fp (BIO *bio, FILE **out_file) |
|
BIO * | BIO_new_file (const char *filename, const char *mode) |
|
BIO * | BIO_new_fp (FILE *stream, int close_flag) |
|
int | BIO_read_filename (BIO *bio, const char *filename) |
|
int | BIO_rw_filename (BIO *bio, const char *filename) |
|
const BIO_METHOD * | BIO_s_file (void) |
|
int | BIO_set_fp (BIO *bio, FILE *file, int close_flag) |
|
int | BIO_write_filename (BIO *bio, const char *filename) |
|
static long | file_ctrl (BIO *b, int cmd, long num, void *ptr) |
|
static int | file_free (BIO *bio) |
|
static int | file_gets (BIO *bp, char *buf, int size) |
|
static int | file_read (BIO *b, char *out, int outl) |
|
static int | file_write (BIO *b, const char *in, int inl) |
|
◆ BIO_FP_APPEND
#define BIO_FP_APPEND 0x08 |
◆ BIO_FP_READ
◆ BIO_FP_WRITE
#define BIO_FP_WRITE 0x04 |
◆ BIO_append_filename()
int BIO_append_filename |
( |
BIO * |
bio, |
|
|
const char * |
filename |
|
) |
| |
◆ BIO_get_fp()
int BIO_get_fp |
( |
BIO * |
bio, |
|
|
FILE ** |
out_file |
|
) |
| |
◆ BIO_new_file()
◆ BIO_new_fp()
BIO* BIO_new_fp |
( |
FILE * |
stream, |
|
|
int |
close_flag |
|
) |
| |
◆ BIO_read_filename()
int BIO_read_filename |
( |
BIO * |
bio, |
|
|
const char * |
filename |
|
) |
| |
◆ BIO_rw_filename()
int BIO_rw_filename |
( |
BIO * |
bio, |
|
|
const char * |
filename |
|
) |
| |
◆ BIO_s_file()
◆ BIO_set_fp()
int BIO_set_fp |
( |
BIO * |
bio, |
|
|
FILE * |
file, |
|
|
int |
close_flag |
|
) |
| |
◆ BIO_write_filename()
int BIO_write_filename |
( |
BIO * |
bio, |
|
|
const char * |
filename |
|
) |
| |
◆ file_ctrl()
◆ file_free()
static int file_free |
( |
BIO * |
bio | ) |
|
|
static |
◆ file_gets()
static int file_gets |
( |
BIO * |
bp, |
|
|
char * |
buf, |
|
|
int |
size |
|
) |
| |
|
static |
◆ file_read()
static int file_read |
( |
BIO * |
b, |
|
|
char * |
out, |
|
|
int |
outl |
|
) |
| |
|
static |
◆ file_write()
◆ methods_filep
Initial value:
Definition at line 272 of file file.c.