Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-04-07 | Number of reported removed peers was too high, correct it by size of peer | Dirk Engling | |
2024-04-06 | if copying seeders from behind, use compare_size to advance pointer | Dirk Engling | |
2024-04-06 | Return peer from both address families on announce | Dirk Engling | |
2024-04-06 | Avoid incompatible pointer type warning | Dirk Engling | |
2024-04-05 | constify | Dirk Engling | |
2024-04-03 | Prepare opentracker for dual stack capabilities | Dirk Engling | |
2024-03-30 | Limit ipv6 udp replies to an amount that does not create too large UDP packets. Credits to anonymous donor | Dirk Engling | |
2021-08-22 | fix implicit fallthrough spelling | Romain Porte | |
This commit fixes the syntax of the implicit fallthrough comments, in order to be matched by GCC (and probably other compilers as well) with the following regular expression: [ \t.!]*([Ee]lse,? |[Ii]ntentional(ly)? )? fall(s | |-)?thr(ough|u)[ \t.!]*(-[^\n\r]*)? See: https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wimplicit-fallthrough= | |||
2021-04-20 | Turn random() to nrand48 in inner loop where it is not cryptographically relevant to avoid futex storm. Thanks and credits to Bart Smienk | Dirk Engling | |
2021-04-20 | White space | Dirk Engling | |
2012-06-03 | Dont ruin the srandomdev initialisation in trackerlogic's init | erdgeist | |
2010-04-22 | ** struct ot_workstruct gets ritcher (and will become even ritcher soon). | erdgeist | |
This is where we encapsulate all per-request data from peer to hash to peer_id, so that it is available everywhere without passing hundreds of pointers down the stack. Most functions that do work down the stack now accept an ot_workstruct and some flags. So it can end up in the stats/event-handler where it will be the default parameter in the future. ** peer_id is now being copied by default and moved to ot_workstruct So it is available in stats and subsequent functions. ** sync scrape madness is gone SYNC_SCRAPE was intended to sync tracker state that would normally be lost on restarts i.e. downloaded counts per torrent. The way was to push it in the tracker cloud after finding all neighbouring trackers. This is madness. It never was tested and can be done per tracker by fetching stats/mode=statedump from time to time and starting opentracker with the -l option later. ** livesync thread has its own ot_workstruct now So it can behave like ot_udp and ot_http against trackerlogic.c and get rid of the first half of the embarrassing global variables. The sending half will be fixed soon [tm]. ** stats can log completed events The author recognizes the needs of original content distributors to keep track of the amount of times a work has been downloaded. While not feasible and used on openbittorrent and other open and anonymous tracker installations, a tracker user can now choose to send those events to syslog. | |||
2010-04-21 | Add our own time stamps to the completed logs. | erdgeist | |
2009-11-12 | Allow logging of completed events to syslog | erdgeist | |
2009-09-02 | Add spotting woodpeckers, thanks to Vasya P. again | erdgeist | |
2009-07-14 | Order peers by whether they seed. This way clients can chose if they prefer leechers (at the beginning) or leechers (at the end of the list). | erdgeist | |
2009-07-04 | Make attempts to access to unauthorized torrents more verbose. | erdgeist | |
2009-06-28 | Fixed an incorrect peer count in udp responses. Credits to Theron Lewis. | erdgeist | |
2009-06-17 | Allow /stats to be located anywhere in your trackers path | erdgeist | |
2009-03-24 | include overall completed count in stats | erdgeist | |
2009-03-17 | Fix white spaces | erdgeist | |
Introduce loading tracker states with -l Alter tracker state to a human readable form | |||
2009-03-04 | Add a stat option the count bucket stalls | erdgeist | |
Add an iterator for all torrents. It's slower but for stats it's okay. Move some stats collection stuff to the new iterator. More to come. Start a "report all stats" page. Start fixing the code to identify "busy" networks. Add the concept of hosts allowed to proxy. Add a parser for the X-Forwarded-For: HTTP header. Clean up HTTP Header handling code. (Remove some left overs of now vanished sync code). | |||
2009-02-20 | Reset delta_torrentcount to zero on each pass | erdgeist | |
2009-02-20 | Forgot to notify central counter about torrent removal | erdgeist | |
2009-02-03 | Reverse logic... do only sync those NOT coming from multi cast | erdgeist | |
2009-01-16 | Fix a pointer arithmetic issue leading to incorrect peer data being copied. Allocate correct size for debugbuffer. Expect exact values on find keywords, not ↵ | erdgeist | |
only prefix match. | |||
2009-01-15 | We sent an incorrect reply dictionary vor v6 announces | erdgeist | |
2009-01-13 | V6 | erdgeist | |
2009-01-02 | * opentracker now drops permissions in correct order and really chroots() if ran as root | erdgeist | |
* lock passing between add_peer_to_torrent and return_peers_for_torrent is now avoided by providing a more general add_peer_to_torrent_and_return_peers function that can be used with NULL parameters to not return any peers (in sync case) * in order to keep a fast overview how many torrents opentracker maintains, every mutex_bucket_unlock operation expects an additional integer parameter that tells ot_mutex.c how many torrents have been added or removed. A function mutex_get_torrent_count has been introduced. | |||
2008-12-30 | Fix badly formed bencoded answer to stopped events | erdgeist | |
2008-12-11 | Fix: Did not time stamp a torrent correctly, that once timed out and came back to life | erdgeist | |
2008-12-07 | Fix: auto increment in += is not a post increment... | erdgeist | |
2008-12-07 | Used wrong variable as offset into hash to copy | erdgeist | |
2008-12-07 | Handle program end more politely | erdgeist | |
2008-12-06 | Renamed OT_FLAG to OT_PEERFLAG to make code easier to read | erdgeist | |
Introduced READ16/32 and WRITE16/32 makros to abstract loading/storing from unaligned addresses away on cpu's that can actually load/store everywhere Removed all unnecessary memmoves, especially where it only moved 6 bytes in inner loop. I replaced them with WRITE16/32(READ16/32()) makros | |||
2008-12-03 | Now enforce that peers do not come back before our interval by giving out a 'min interval' in responses. | erdgeist | |
2008-12-03 | printf is buffered, write not. Use printf for all. | erdgeist | |
2008-12-03 | Add debug code to spot peers that come back too early | erdgeist | |
2008-12-01 | Live Sync for peers that do not come back too early. | erdgeist | |
2008-11-28 | The BIG refactoring [tm]. Too many changes to count them. If it doesn't suite you, revert to last version. | erdgeist | |
2008-11-03 | Add stats about when peers renew their announces. | erdgeist | |
2008-10-28 | Whitespace fixes | erdgeist | |
2008-10-17 | release pools only after all other services have been stopped. | erdgeist | |
2008-10-07 | only sync when the peer is actually added to the first pool. this saves ca. 40% syncdata | denis | |
2008-10-06 | Bugfix: overwrote bencoded data with udp reply data when sending an event=stopped | erdgeist | |
2008-10-04 | added live sync code | erdgeist | |
added a config file parser added tracker id changed WANT_CLOSED_TRACKER and WANT_BLACKLIST into WANT_ACCESS_WHITE and WANT_ACCESS_BLACK changed WANT_TRACKER_SYNC to WANT_SYNC_BATCH and added WANT_SYNC_LIVE added an option to switch off fullscrapes cleaned up many internal hardcoded values, like PROTO_FLAG, | |||
2008-08-30 | send out the total downloaders for a announce response | denis | |
2008-02-05 | Fix endianess issues, also obey number of peers requested in udp announces | erdgeist | |
2007-12-20 | Introduce some kind of versioning | erdgeist | |
2007-12-03 | Fix include for iovecs | erdgeist | |