summaryrefslogtreecommitdiff
path: root/apt-pkg/contrib/srvrec.h
Commit message (Collapse)AuthorAgeFilesLines
* srvrec: Do not expose C++11 tuple use in headerJulian Andres Klode2015-10-301-4/+1
| | | | This makes non-C++11 reverse deps wishing to use it FTBFS.
* srv test: do 100 pulls twice and compare listDavid Kalnischkies2015-09-141-0/+4
| | | | | | | The previous implementation was still a bit unstable in terms of failing at times. Lets try if we have more luck with this one. Git-Dch: Ignore
* use clock() as source for SRV randomnessDavid Kalnischkies2015-09-011-2/+8
| | | | | | | | | | | | | | | Initializing a random number generator with the time since epoch could be good enough, but reaches its limits in test code as the 100 iterations might very well happen in the same second and hence the seed number is always the sameā€¦ clock() has a way lower resolution so it changes more often and not unimportant: If many users start the update at the same time it isn't to unlikely the SRV record will be ordered in the same second choosing the same for them all, but it seems less likely that the exact same clock() time has passed for them. And if I have to touch this, lets change a few other things as well to make me and/or compilers a bit happier (clang complained about the usage of a GNU extension in the testcase for example).
* Add basic (non weight adjusted) shuffling for SrvRecords selectionMichael Vogt2015-08-201-0/+5
| | | | | Also add "Debug::Acquire::SrvRecs" debug option and the option "Acquire::EnableSrvRecods" to allow disabling this lookup.
* cleanupMichael Vogt2015-08-181-1/+1
|
* WIP start randomizingMichael Vogt2014-05-231-0/+5
|
* WIP make connect use GetSrvRecordsMichael Vogt2014-05-221-0/+6
|
* add sorting by priorityMichael Vogt2014-05-201-2/+3
|
* add GetSrvRecord helper to apt-pkg/contrib/srvrec.{cc,h}Michael Vogt2014-05-201-0/+30