Install the gets callback on a BIO_METHOD.

Synopsis

Declared in <openssl/bio.h>

int
BIO_meth_set_gets(
    BIO_METHOD* biom,
    int(* ossl_gets)(BIO*, char*, int));

Return Value

1 on success, or 0 on failure.

Parameters

Name

Description

biom

Method table to update.

ossl_gets

Callback implementing BIO_gets()‐style line input.

Created with MrDocs