[#BIO_new_bio_dgram_pair] = BIO_new_bio_dgram_pair :mrdocs: Create a connected pair of in‐memory datagram BIOs. == Synopsis Declared in `<openssl/bio.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int BIO_new_bio_dgram_pair( xref:BIO.adoc[BIO]** bio1, size_t writebuf1, xref:BIO.adoc[BIO]** bio2, size_t writebuf2); ---- == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *bio1* | Receives the first BIO of the pair. | *writebuf1* | Write‐buffer size for `bio1` (0 selects a default). | *bio2* | Receives the second BIO of the pair. | *writebuf2* | Write‐buffer size for `bio2` (0 selects a default). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#