79 lines
3.0 KiB
Go
79 lines
3.0 KiB
Go
package torrent
|
|
|
|
import (
|
|
"crypto"
|
|
"expvar"
|
|
)
|
|
|
|
const (
|
|
pieceHash = crypto.SHA1
|
|
maxRequests = 250 // Maximum pending requests we allow peers to send us.
|
|
defaultChunkSize = 0x4000 // 16KiB
|
|
|
|
// Justification for set bits follows.
|
|
//
|
|
// Extension protocol ([5]|=0x10):
|
|
// http://www.bittorrent.org/beps/bep_0010.html
|
|
//
|
|
// Fast Extension ([7]|=0x04):
|
|
// http://bittorrent.org/beps/bep_0006.html.
|
|
// Disabled until AllowedFast is implemented. TODO
|
|
//
|
|
// DHT ([7]|=1):
|
|
// http://www.bittorrent.org/beps/bep_0005.html
|
|
defaultExtensionBytes = "\x00\x00\x00\x00\x00\x10\x00\x01"
|
|
|
|
// These are our extended message IDs. Peers will use these values to
|
|
// select which extension a message is intended for.
|
|
metadataExtendedId = iota + 1 // 0 is reserved for deleting keys
|
|
pexExtendedId
|
|
)
|
|
|
|
// I could move a lot of these counters to their own file, but I suspect they
|
|
// may be attached to a Client someday.
|
|
var (
|
|
unwantedChunksReceived = expvar.NewInt("chunksReceivedUnwanted")
|
|
unexpectedChunksReceived = expvar.NewInt("chunksReceivedUnexpected")
|
|
chunksReceived = expvar.NewInt("chunksReceived")
|
|
|
|
peersAddedBySource = expvar.NewMap("peersAddedBySource")
|
|
|
|
uploadChunksPosted = expvar.NewInt("uploadChunksPosted")
|
|
unexpectedCancels = expvar.NewInt("unexpectedCancels")
|
|
|
|
pieceHashedCorrect = expvar.NewInt("pieceHashedCorrect")
|
|
pieceHashedNotCorrect = expvar.NewInt("pieceHashedNotCorrect")
|
|
|
|
unsuccessfulDials = expvar.NewInt("dialSuccessful")
|
|
successfulDials = expvar.NewInt("dialUnsuccessful")
|
|
|
|
acceptUTP = expvar.NewInt("acceptUTP")
|
|
acceptTCP = expvar.NewInt("acceptTCP")
|
|
acceptReject = expvar.NewInt("acceptReject")
|
|
|
|
peerExtensions = expvar.NewMap("peerExtensions")
|
|
completedHandshakeConnectionFlags = expvar.NewMap("completedHandshakeConnectionFlags")
|
|
// Count of connections to peer with same client ID.
|
|
connsToSelf = expvar.NewInt("connsToSelf")
|
|
// Number of completed connections to a client we're already connected with.
|
|
duplicateClientConns = expvar.NewInt("duplicateClientConns")
|
|
receivedKeepalives = expvar.NewInt("receivedKeepalives")
|
|
supportedExtensionMessages = expvar.NewMap("supportedExtensionMessages")
|
|
postedKeepalives = expvar.NewInt("postedKeepalives")
|
|
// Requests received for pieces we don't have.
|
|
requestsReceivedForMissingPieces = expvar.NewInt("requestsReceivedForMissingPieces")
|
|
|
|
messageTypesReceived = expvar.NewMap("messageTypesReceived")
|
|
messageTypesSent = expvar.NewMap("messageTypesSent")
|
|
messageTypesPosted = expvar.NewMap("messageTypesPosted")
|
|
|
|
// Track the effectiveness of Torrent.connPieceInclinationPool.
|
|
pieceInclinationsReused = expvar.NewInt("pieceInclinationsReused")
|
|
pieceInclinationsNew = expvar.NewInt("pieceInclinationsNew")
|
|
pieceInclinationsPut = expvar.NewInt("pieceInclinationsPut")
|
|
|
|
fillBufferSentCancels = expvar.NewInt("fillBufferSentCancels")
|
|
fillBufferSentRequests = expvar.NewInt("fillBufferSentRequests")
|
|
numFillBuffers = expvar.NewInt("numFillBuffers")
|
|
)
|