]> git.meshlink.io Git - meshlink/blobdiff - src/meshlink_internal.h
Use "struct foo_t *" instead of "foo_t *" in .h files.
[meshlink] / src / meshlink_internal.h
index 321a1f356500637de994819550517657931b691c..6e59db0e756b8153ed35add1b501818da2076bc3 100644 (file)
@@ -41,13 +41,13 @@ struct meshlink_handle {
        pthread_t thread;
        listen_socket_t listen_socket[MAXSOCKETS];
 
-       node_t *myself;
+       struct node_t *myself;
 
-       splay_tree_t *config;
-       splay_tree_t *edges;
-       splay_tree_t *nodes;
+       struct splay_tree_t *config;
+       struct splay_tree_t *edges;
+       struct splay_tree_t *nodes;
 
-       list_t *outgoing_connections;
+       struct list_t *outgoing_connections;
 };
 
 /// A handle for a MeshLink node.