Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'coverity_scan' of github.com:mquinson/simgrid
[simgrid.git] / examples / msg / bittorrent / bittorrent.h
index e2c4e5b..b45d688 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2012. 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
@@ -7,51 +7,22 @@
 #ifndef BITTORRENT_BITTORRENT_H_
 #define BITTORRENT_BITTORRENT_H_
 
-/**
- * Size of mailboxes
- */
 #define MAILBOX_SIZE 40
-/**
- * Mailbox used to communicate with the tracker.
- */
 #define TRACKER_MAILBOX "tracker_mailbox"
-/**
- * Max number of pairs sent by the tracker to clients
- */
+/** Max number of pairs sent by the tracker to clients */
 #define MAXIMUM_PAIRS 50
-/**
- * Interval of time where the peer should send a request to the tracker
- */
+/** Interval of time where the peer should send a request to the tracker */
 #define TRACKER_QUERY_INTERVAL 1000
-/**
- * Communication size for a task to the tracker
- */
+/** Communication size for a task to the tracker */
 #define TRACKER_COMM_SIZE 0.01
-/**
- * Timeout for the get peers data
- */
 #define GET_PEERS_TIMEOUT 10000
-/**
- * Timeout for "standard" messages.
- */
 #define TIMEOUT_MESSAGE 10
-/**
- * Timeout for tracker receive.
- */
 #define TRACKER_RECEIVE_TIMEOUT 10
-/**
- * Number of peers that can be unchocked at a given time
- */
+/** Number of peers that can be unchocked at a given time */
 #define MAX_UNCHOKED_PEERS 4
-
-/**
- * Interval between each update of the choked peers
- */
+/** Interval between each update of the choked peers */
 #define UPDATE_CHOKED_INTERVAL 30
-
-/**
- * Number of pieces the peer asks for simultaneously
- */
+/** Number of pieces the peer asks for simultaneously */
 #define MAX_PIECES 1
 
-#endif /* BITTORRENT_BITTORRENT_H_ */
+#endif                          /* BITTORRENT_BITTORRENT_H_ */