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

typedef struct {

Author

       MongoDB, Inc

Description

       The  host  and  port  of  a MongoDB server. Can be part of a linked list: for example the return value of
       mongoc_uri_get_hosts() when multiple hosts are provided in the MongoDB URI.

       SEEALSO:mongoc_uri_get_hosts() and mongoc_cursor_get_host().

Synopsis

          typedef struct {
             mongoc_host_list_t *next;
             char host[BSON_HOST_NAME_MAX + 1];
             char host_and_port[BSON_HOST_NAME_MAX + 7];
             uint16_t port;
             int family;
             void *padding[4];
          } mongoc_host_list_t;

See Also