]> rtime.felk.cvut.cz Git - frescor/fwp.git/commitdiff
Doxygen comments fixes
authorMichal Sojka <sojkam1@fel.cvut.cz>
Thu, 19 Jun 2008 08:03:06 +0000 (10:03 +0200)
committerMichal Sojka <sojkam1@fel.cvut.cz>
Thu, 19 Jun 2008 08:03:06 +0000 (10:03 +0200)
fwp/lib/core/fwp_endpoint.c

index b6c8f1c8ac132678406e00e5f03021b9b1f5e38b..e84fe1b17b728155847ee71f74222ef4cfd9134e 100644 (file)
@@ -22,27 +22,27 @@ static fwp_endpoint_attr_t fwp_epoint_attr_default ={
  */
 struct fwp_endpoint{
        fwp_endpoint_type_t     type;
-       /**< endpoint attributes */
+       /** endpoint attributes */
        fwp_endpoint_attr_t     attr;
-       /**< the vres descriptor the send endpoint is bound to */       
+       /** the vres descriptor the send endpoint is bound to */        
        fwp_vres_d_t            vresd;
-       /**< for send enpoint it contains destination address
-        * for receive endpoint it is filled with the msg source address
+       /** for send enpoint it contains destination address for
+        * receive endpoint it is filled with the msg source address
         */
        struct fwp_sockaddr     peer;   
-       /**< source/destination port */
+       /** source/destination port */
        unsigned int            port;   
-       /**< destination node */
+       /** destination node */
        int                     node;
-       /**< socket descriptor
-        * in case of rebliable epoint it is a listen socket
+       /** Socket descriptor.
+        * In case of rebliable epoint it is a listen socket.
         * */
        int                     sockd; 
        fd_set                  fdset;
        fd_set                  testfds;
        int                     *c_sockd;
        unsigned int            nr_connections;
-       /**< specific operation options*/
+       /** specific operation options*/
        int                     flags;  
        fwp_endpoint_status_t   status;
 };