]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/internal/bio.h
Fix invalid function type casts.
[thirdparty/openssl.git] / include / internal / bio.h
CommitLineData
21dcbebc
RS
1/*
2 * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
a146ae55 3 *
21dcbebc
RS
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
a146ae55
MC
8 */
9
10#include <openssl/bio.h>
11
12struct bio_method_st {
13 int type;
14 const char *name;
3befffa3
MC
15 int (*bwrite) (BIO *, const char *, size_t, size_t *);
16 int (*bwrite_old) (BIO *, const char *, int);
d07aee2c
MC
17 int (*bread) (BIO *, char *, size_t, size_t *);
18 int (*bread_old) (BIO *, char *, int);
a146ae55
MC
19 int (*bputs) (BIO *, const char *);
20 int (*bgets) (BIO *, char *, int);
21 long (*ctrl) (BIO *, int, long, void *);
22 int (*create) (BIO *);
23 int (*destroy) (BIO *);
fce78bd4 24 long (*callback_ctrl) (BIO *, int, BIO_info_cb *);
a146ae55
MC
25};
26
1ee7b8b9 27void bio_free_ex_data(BIO *bio);
ff234405 28void bio_cleanup(void);
d07aee2c
MC
29
30
31/* Old style to new style BIO_METHOD conversion functions */
42c60460
MC
32int bwrite_conv(BIO *bio, const char *data, size_t datal, size_t *written);
33int bread_conv(BIO *bio, char *data, size_t datal, size_t *read);