File: dns_sortip.c

package info (click to toggle)
tinydyndns 0.4.2.debian1-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,476 kB
  • sloc: ansic: 10,262; sh: 291; makefile: 42
file content (20 lines) | stat: -rw-r--r-- 410 bytes parent folder | download | duplicates (40)
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_sortip(char *s,unsigned int n)
{
  unsigned int i;
  char tmp[4];

  n >>= 2;
  while (n > 1) {
    i = dns_random(n);
    --n;
    byte_copy(tmp,4,s + (i << 2));
    byte_copy(s + (i << 2),4,s + (n << 2));
    byte_copy(s + (n << 2),4,tmp);
  }
}