diff th_network.h @ 653:3c9205d52376

Doxygen fixes.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 25 Jan 2020 13:36:15 +0200
parents 70d44ba005ac
children 253a341216b7
line wrap: on
line diff
--- a/th_network.h	Sat Jan 25 13:18:38 2020 +0200
+++ b/th_network.h	Sat Jan 25 13:36:15 2020 +0200
@@ -86,7 +86,7 @@
 };
 
 
-typedef struct _th_base_conn_t
+typedef struct
 {
     // Target host data
     char *host;
@@ -105,7 +105,7 @@
 } th_base_conn_t;
 
 
-typedef struct _th_conn_t
+typedef struct th_conn_t
 {
     // Connection
     th_base_conn_t base;
@@ -124,8 +124,8 @@
     int status;
 
     // Error handling and status message functors
-    void (*errfunc)(struct _th_conn_t *conn, int err, const char *msg);
-    void (*msgfunc)(struct _th_conn_t *conn, int loglevel, const char *msg);
+    void (*errfunc)(struct th_conn_t *conn, int err, const char *msg);
+    void (*msgfunc)(struct th_conn_t *conn, int loglevel, const char *msg);
 
     void *node;
 } th_conn_t;