diff options
author | Christian Grothoff <christian@grothoff.org> | 2011-10-07 14:56:51 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2011-10-07 14:56:51 +0000 |
commit | 900c1831440d1b6f9fdb35d39334bca2e94bdefb (patch) | |
tree | c6ab356a7f8365ef57a2f4ed5b875ecc4693c503 | |
parent | 4c5201417431a8cb700dab32e339ded3d7363156 (diff) |
hxing
-rw-r--r-- | src/core/gnunet-service-core_extern.c | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/src/core/gnunet-service-core_extern.c b/src/core/gnunet-service-core_extern.c deleted file mode 100644 index 0d2a3172b..000000000 --- a/src/core/gnunet-service-core_extern.c +++ /dev/null @@ -1,39 +0,0 @@ -/* code that should be moved outside of core/ entirely */ - -/** - * Merge the given performance data with the data we currently - * track for the given neighbour. - * - * @param n neighbour - * @param ats new performance data - * @param ats_count number of records in ats - */ -static void -update_neighbour_performance (struct Neighbour *n, - const struct GNUNET_TRANSPORT_ATS_Information - *ats, uint32_t ats_count) -{ - uint32_t i; - unsigned int j; - - if (ats_count == 0) - return; - for (i = 0; i < ats_count; i++) - { - for (j = 0; j < n->ats_count; j++) - { - if (n->ats[j].type == ats[i].type) - { - n->ats[j].value = ats[i].value; - break; - } - } - if (j == n->ats_count) - { - GNUNET_array_append (n->ats, n->ats_count, ats[i]); - } - } -} - - - |