SYNOPSIS

#include <bson.h>

bson_reader_t *
bson_reader_new_from_fd (int         fd,
                         bool close_fd);

DESCRIPTION

The bson_reader_new_from_fd() function shall create a new bson_reader_t that will read from the provided file-descriptor.

fd MUST be in blocking mode.

If close_fd is TRUE, then fd will be closed when the bson_reader_t is destroyed with bson_reader_destroy().

RETURN VALUE

A newly allocated bson_reader_t that should be freed with bson_reader_destroy().

ERRORS

No errors are defined.

SEE ALSO

AUTHORS

This page was written by MongoDB, Inc.