From 641d5ea7ede3fcaa08be447ab91b9b5071b7b88b Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 19 Oct 2016 01:58:55 -0400 Subject: [PATCH] fixed commenting style in socket code --- include/villas/nodes/socket.h | 28 +++++++++------------------- 1 file changed, 9 insertions(+), 19 deletions(-) diff --git a/include/villas/nodes/socket.h b/include/villas/nodes/socket.h index 64c1dd82e..031034621 100644 --- a/include/villas/nodes/socket.h +++ b/include/villas/nodes/socket.h @@ -41,29 +41,19 @@ union sockaddr_union { }; struct socket { - /** The socket descriptor */ - int sd; - /** Socket mark for netem, routing and filtering */ - int mark; + int sd; /**> The socket descriptor */ + int mark; /**> Socket mark for netem, routing and filtering */ - /** The OSI / IP layer which should be used for this socket */ - enum socket_layer layer; + enum socket_layer layer; /**> The OSI / IP layer which should be used for this socket */ + enum socket_header header; /**> Payload header type */ - /** Payload header type */ - enum socket_header header; + union sockaddr_union local; /**> Local address of the socket */ + union sockaddr_union remote; /**> Remote address of the socket */ - /** Local address of the socket */ - union sockaddr_union local; - /** Remote address of the socket */ - union sockaddr_union remote; + struct rtnl_qdisc *tc_qdisc; /**> libnl3: Network emulator queuing discipline */ + struct rtnl_cls *tc_classifier; /**> libnl3: Firewall mark classifier */ - /** libnl3: Network emulator queuing discipline */ - struct rtnl_qdisc *tc_qdisc; - /** libnl3: Firewall mark classifier */ - struct rtnl_cls *tc_classifier; - - /* Linked list _per_interface_ */ - struct socket *next; + struct socket *next; /* Linked list _per_interface_ */ };