We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9c668a commit e8e09b6Copy full SHA for e8e09b6
src/mongoc/mongoc-stream-socket.c
@@ -24,11 +24,11 @@
24
#define MONGOC_LOG_DOMAIN "stream"
25
26
27
-typedef struct
+struct _mongoc_stream_socket_t
28
{
29
mongoc_stream_t vtable;
30
mongoc_socket_t *sock;
31
-} mongoc_stream_socket_t;
+};
32
33
34
static BSON_INLINE int64_t
src/mongoc/mongoc-stream-socket.h
@@ -31,6 +31,9 @@
BSON_BEGIN_DECLS
+typedef struct _mongoc_stream_socket_t mongoc_stream_socket_t;
35
+
36
37
mongoc_stream_t *mongoc_stream_socket_new (mongoc_socket_t *socket);
38
39
0 commit comments