1
0
mirror of https://frontier.innolan.net/rainlance/c-ares.git synced 2025-10-06 11:29:34 +00:00

ares__generate_new_id: moved to ares_query.c

... and ares__rc4 is turned into a local static function.
This commit is contained in:
Daniel Stenberg
2013-02-13 14:21:08 +01:00
parent 3217c7eef2
commit 9c03cc118c
3 changed files with 8 additions and 9 deletions

View File

@ -39,7 +39,7 @@ struct qquery {
static void qcallback(void *arg, int status, int timeouts, unsigned char *abuf, int alen);
void ares__rc4(rc4_key* key, unsigned char *buffer_ptr, int buffer_len)
static void rc4(rc4_key* key, unsigned char *buffer_ptr, int buffer_len)
{
unsigned char x;
unsigned char y;
@ -101,6 +101,13 @@ static unsigned short generate_unique_id(ares_channel channel)
return (unsigned short)id;
}
unsigned short ares__generate_new_id(rc4_key* key)
{
unsigned short r=0;
rc4(key, (unsigned char *)&r, sizeof(r));
return r;
}
void ares_query(ares_channel channel, const char *name, int dnsclass,
int type, ares_callback callback, void *arg)
{