logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

bson_reader_t *

Author

       MongoDB, Inc

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().

Parameters

fd: A valid file-descriptor.

       • close_on_destroy: Whether close() should be called on fd when the reader is destroyed.

Returns

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

Synopsis

          bson_reader_t *
          bson_reader_new_from_fd (int fd, bool close_on_destroy);

See Also