FACT++  1.0
int rand_tmout ( int  min,
int  max 
)

Definition at line 161 of file open_dns.c.

Referenced by open_dns(), and recv_dns_dis_rout().

162 {
163  int aux;
164 
165  aux = rand();
166  aux %= (max - min);
167  aux += min;
168  return(aux);
169 }

+ Here is the caller graph for this function: