Lines Matching refs:BIO
6 BIO_get_shutdown - functions for managing BIO state information
12 void BIO_set_data(BIO *a, void *ptr);
13 void *BIO_get_data(BIO *a);
14 void BIO_set_init(BIO *a, int init);
15 int BIO_get_init(BIO *a);
16 void BIO_set_shutdown(BIO *a, int shut);
17 int BIO_get_shutdown(BIO *a);
21 These functions are mainly useful when implementing a custom BIO.
24 the BIO. This data can subsequently be retrieved via a call to BIO_get_data().
27 The BIO_set_init() function sets the value of the BIO's "init" flag to indicate
28 whether initialisation has been completed for this BIO or not. A nonzero value
30 Often initialisation will complete during initial construction of the BIO. For
36 this BIO's shutdown (i.e. BIO_CLOSE) flag. If set then the underlying resource
37 is also closed when the BIO is freed.
42 associated with this BIO, or NULL if none has been set.
44 BIO_get_init() returns the state of the BIO's init flag.
46 BIO_get_shutdown() returns the stat of the BIO's shutdown (i.e. BIO_CLOSE) flag.