VirtualBox

source: vbox/trunk/src/libs/openssl-1.1.1f/include/internal/bio.h@ 83675

Last change on this file since 83675 was 83531, checked in by vboxsync, 5 years ago

setting svn:sync-process=export for openssl-1.1.1f, all files except tests

File size: 1.1 KB
Line 
1/*
2 * Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
3 *
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
8 */
9
10#include <openssl/bio.h>
11
12struct bio_method_st {
13 int type;
14 char *name;
15 int (*bwrite) (BIO *, const char *, size_t, size_t *);
16 int (*bwrite_old) (BIO *, const char *, int);
17 int (*bread) (BIO *, char *, size_t, size_t *);
18 int (*bread_old) (BIO *, char *, int);
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 *);
24 long (*callback_ctrl) (BIO *, int, BIO_info_cb *);
25};
26
27void bio_free_ex_data(BIO *bio);
28void bio_cleanup(void);
29
30
31/* Old style to new style BIO_METHOD conversion functions */
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);
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette