blob: 7e752e9b7eb59c7dafa35b8545c5fb6ee4499b85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  | 
#include "byte.h"
#include "dns.h"
/* XXX: sort servers by configurable notion of closeness? */
/* XXX: pay attention to competence of each server? */
void dns_sortip6(char *s,unsigned int n)
{
  unsigned int i;
  char tmp[16];
  n >>= 4;
  while (n > 1) {
    i = dns_random(n);
    --n;
    byte_copy(tmp,16,s + (i << 4));
    byte_copy(s + (i << 4),16,s + (n << 4));
    byte_copy(s + (n << 4),16,tmp);
  }
}
  |