]> Sergey Matveev's repositories - btrtrc.git/history - torrent.go
Tidy up doc, file names, naming
[btrtrc.git] / torrent.go
2020-11-08 Matt JoinerTidy up doc, file names, naming
2020-11-06 Matt JoinerReplace storage.IncompletePieceToWriter with io.Writer
2020-11-02 Matt JoinerAdd write incomplete/consecutive chunks interfaces
2020-10-27 Matt JoinerReturn errors from Reader if data downloading won't...
2020-10-27 Matt JoinerRead from more than a single piece in each read to...
2020-10-22 Matt JoinerPerformance improvements to PEX
2020-10-11 Matt JoinerTweaks to storage error and completion handling
2020-10-01 Matt JoinerSet tracker announce timeout back to default
2020-10-01 Matt JoinerLimit simultaneous announces to the same URL
2020-09-30 Matt JoinerLimit half-open connections at the Client level
2020-09-29 Matt JoinerFix conn status string for WebRTC connections
2020-07-15 Matt JoinerExpose peer.RemoteAddr
2020-06-04 Matt JoinerTidy up webseed peer naming and unused types
2020-06-04 Matt JoinerFix panic in webseed request rejection logging
2020-06-04 ucwongtorrent : add udp scheme to 'switch case'
2020-06-04 MaxbAdd DisallowDataDownload/Upload to TorrentSpec and...
2020-06-03 Matt JoinerMerge pull request #410 from anacrolix/webseeds
2020-06-02 Matt JoinerTidy up the interface changes
2020-06-02 Matt JoinerFix webseeds when info isn't available immediately
2020-06-02 Matt JoinerAdd option to disable webseeds
2020-06-02 Matt JoinerRemove events from webseed
2020-06-02 MaxbAdd per-torrent ability to disable uploading
2020-06-01 Matt JoinerRename fastestConn->fastestPeer
2020-06-01 Matt JoinerHandle webseed Client events
2020-06-01 Matt JoinerFurther progress on webseeding
2020-06-01 Matt JoinerSupport disabling webtorrent
2020-05-31 Matt JoinerExport PeerImpl and all its methods
2020-05-31 Matt JoinerGot things compiling
2020-05-30 Matt JoinerSave progress
2020-05-30 Matt JoinerSeperate peer and PeerConn
2020-05-29 Matt JoinerRename Peer to PeerInfo, and unexport PeerInfos
2020-05-19 Matt JoinerDon't error on setting info when we already have it
2020-05-19 Matt JoinerFix https://github.com/anacrolix/torrent/issues/388
2020-05-19 Matt JoinerFix panic caused by adding disabled udp trackers
2020-05-03 Matt JoinerFix PeerConn outgoing field for webrtc
2020-04-27 Matt JoinerRework tracker status lines
2020-04-22 Matt JoinerRename per-torrent ws tracker and output stats
2020-04-21 Matt JoinerPool webtorrent tracker websockets at the Client level
2020-04-20 Matt JoinerLog webrtc connection errors and rework webtorrent...
2020-04-18 Matt JoinerLogging fixes
2020-04-16 Matt JoinerUpdate anacrolix/log
2020-04-16 Matt JoinerFix small cache transfer tests
2020-04-16 Matt JoinerFix pending peer counts in transfer tests
2020-04-16 Matt JoinerAdjust recently added logging
2020-04-16 Matt JoinerOnly announce to DHT if we have dialers or listeners
2020-04-16 Matt JoinerSet tracker announce numWant to 0 if we're unable to...
2020-04-16 Matt JoinerDon't try to do conventional dials if we have no dialers
2020-04-16 Matt JoinerInclude hashed addr when comparing prioritized peers
2020-04-16 Matt JoinerUpdate the peersAddedBySource expvar
2020-04-15 Matt JoinerMerge branch 'webtorrent'
2020-04-15 Matt JoinerClone the AnnounceList out of Torrent.Metainfo
2020-04-15 Yaroslav KolomiietsPEX: add periodic deltas
2020-04-15 Yaroslav KolomiietsPEX: add connection tracking
2020-04-15 Yaroslav KolomiietsShare current connections with peers over PEX (anacroli...
2020-04-13 Matt JoinerFix locks around Torrent.announceRequest
2020-04-13 Matt Joinerwebtorrent logging improvements
2020-04-13 Matt JoinerRename webtorrent.NewClient->NewTrackerClient
2020-04-13 Matt JoinerTidy up the webtorrent package, remove buffer
2020-04-13 Matt JoinerImprove webtorrent tracker client logging
2020-04-13 Matt JoinerUse offer_id for webrtc conn string
2020-04-11 Matt JoinerMerge branch 'torrent-cli' into webtorrent
2020-04-07 Matt JoinerBig tidy up of webtorrent code
2020-04-07 Matt JoinerFix missing return when creating websocket tracker...
2020-04-07 Matt JoinerCreate peer connections when WebRTC connections obtain...
2020-04-06 Matt JoinerStart using the webtorrent package
2020-04-06 Matt JoinerCreate stub for websocket trackers
2020-03-17 Matt JoinerLogging improvements for DHT
2020-03-16 Matt JoinerAdd doc comments related to #383
2020-02-27 Matt JoinerMake io.EOF an expected error from storage.Piece.ReadAt
2020-02-27 Matt JoinerExpose PieceStateRun formatting
2020-02-22 Matt JoinerDisable data downloading on storage write errors
2020-02-22 Matt JoinerMisc cleanup
2020-02-21 Matt JoinerRename connection->PeerConn and fix exports
2020-02-20 Matt JoinerSupport custom DHT servers
2020-02-20 Matt JoinerAdd support for non-IP-based networks
2020-02-20 Matt JoinerApply staticcheck
2020-01-23 Matt JoinerUse CopyN to ensure early io.EOF isn't ignored when...
2020-01-23 Matt JoinerFinish fixing IP banning on storage errors
2020-01-22 Matt JoinerReflow some comments
2020-01-13 Matt JoinerExtract the request timeout stuff into requestStrategyThree
2020-01-13 Matt JoinerExtract the request strategy logic
2020-01-13 Matt JoinerFix typos and spellos in comments
2020-01-13 Matt JoinerWhen piece checks fail only ban untrusted peers and...
2020-01-13 Matt JoinerImprove hash piece error logging
2020-01-13 Matt JoinerDon't create piece hashers for closed Torrents
2020-01-13 Matt JoinerPropagate back piece hashing errors
2019-12-18 Matt JoinerRemove unnecessary locking in Torrent.Piece
2019-12-18 Matt JoinerAdd connection trust flag, and more tests with small...
2019-12-13 Matt JoinerCoalesce piece state change notifications on client... v1.10.0
2019-11-20 Matt JoinerInclude piece index in log message
2019-10-17 Matt JoinerRename peer source constants
2019-10-15 Matt JoinerIn the torrent status, sort trackers by the scheme...
2019-08-22 Matt JoinerAdd missing debug level to log statement
2019-08-22 Matt JoinerRestrict the number of concurrent piece hashes
2019-08-21 Matt JoinerTidy up piece completion change handling
2019-08-21 Matt JoinerInclude the piece number when logging piece hash errors
2019-08-21 Matt Joinergoimports -local
2019-08-21 Matt JoinerUpgrade to simplified logger
2019-08-10 Matt JoinerUpdate all imports of dht to v2
2019-07-25 Matt JoinerComments on the VerifyData methods
next