]> granicus.if.org Git - transmission/commitdiff
(libT) reduce the scope of REQUEST_BUF_SECS from peer-common.h to peer-msgs.c
authorJordan Lee <jordan@transmissionbt.com>
Sun, 3 Feb 2013 23:29:34 +0000 (23:29 +0000)
committerJordan Lee <jordan@transmissionbt.com>
Sun, 3 Feb 2013 23:29:34 +0000 (23:29 +0000)
libtransmission/peer-common.h
libtransmission/peer-msgs.c

index 566c128774a61d052edfcde824fc34a84c4d56b0..f9a7adef077fb55d23460138890b17c929ddf1ca 100644 (file)
 #ifndef TR_PEER_H
 #define TR_PEER_H
 
-/**
- * @addtogroup peers Peers
- * @{
- */
-
-/**
-*** Fields common to webseed and bittorrent peers
-**/
-
 #include "transmission.h"
 #include "bitfield.h"
 #include "history.h"
 #include "quark.h"
 
+/**
+ * @addtogroup peers Peers
+ * @{
+ */
+
 enum
 {
-  /* when we're making requests from another peer,
-     batch them together to send enough requests to
-     meet our bandwidth goals for the next N seconds */
-  REQUEST_BUF_SECS = 10,
-
   /* this is the maximum size of a block request.
      most bittorrent clients will reject requests
      larger than this size. */
index 13aa78fe47e2795c117bb9446b64f077901bd51e..fcef213e69f6f1028cd8216d77d0596ab6eab4f7 100644 (file)
@@ -90,6 +90,11 @@ enum
     /* how many blocks to keep prefetched per peer */
     PREFETCH_SIZE = 18,
 
+    /* when we're making requests from another peer,
+       batch them together to send enough requests to
+       meet our bandwidth goals for the next N seconds */
+    REQUEST_BUF_SECS = 10,
+
     /* defined in BEP #9 */
     METADATA_MSG_TYPE_REQUEST = 0,
     METADATA_MSG_TYPE_DATA = 1,