Searched defs:bio_method_st (Results 1 – 1 of 1) sorted by relevance
/freebsd/crypto/openssl/include/internal/ |
H A D | bio.h | 17 struct bio_method_st { struct 18 int type; 19 char *name; 20 int (*bwrite) (BIO *, const char *, size_t, size_t *); 21 int (*bwrite_old) (BIO *, const char *, int); 22 int (*bread) (BIO *, char *, size_t, size_t *); 23 int (*bread_old) (BIO *, char *, int); 24 int (*bputs) (BIO *, const char *); 25 int (*bgets) (BIO *, char *, int); 26 long (*ctrl) (BIO *, int, long, void *); [all …]
|