X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6de03ecc4e630732984a0673512a5d15fd75e270..ab8d6bf77b9aa74785b486fd5704e7fc63f25d66:/examples/msg/bittorrent/connection.h diff --git a/examples/msg/bittorrent/connection.h b/examples/msg/bittorrent/connection.h index 418b638c2a..057e3d8cbe 100644 --- a/examples/msg/bittorrent/connection.h +++ b/examples/msg/bittorrent/connection.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2012-2014. The SimGrid Team. +/* Copyright (c) 2012-2014, 2016. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -6,9 +6,8 @@ #ifndef BITTORRENT_CONNECTION_H_ #define BITTORRENT_CONNECTION_H_ -/** - * Contains the connection data of a peer. - */ + +/** Contains the connection data of a peer. */ typedef struct s_connection { int id; //Peer id char *bitfield; //Fields @@ -22,19 +21,16 @@ typedef struct s_connection { int choked_upload:1; //Indicates if the peer is choked for the current peer int choked_download:1; //Indicates if the peer has choked the current peer } s_connection_t, *connection_t; -/** - * Build a new connection object from the peer id. - * @param id id of the peer + +/** @brief Build a new connection object from the peer id. + * @param id id of the peer */ connection_t connection_new(int id); -/** - * Add a new value to the peer speed average - * @param connection connection data - * @param speed speed to add to the speed average +/** @brief Add a new value to the peer speed average + * @param connection connection data + * @param speed speed to add to the speed average */ void connection_add_speed_value(connection_t connection, double speed); -/** - * Frees a connection object - */ +/** Frees a connection object */ void connection_free(void *data); #endif /* BITTORRENT_CONNECTION_H_ */