ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
July 17th, 2024 | 10:00am-11:55am SGT (UTC+8) | Online

Ethereal-dev: [Ethereal-dev] why set adns_initflags=0

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: "li" <li_shunda@xxxxxxx>
Date: Thu, 4 Sep 2003 10:36:58 +0800
In resolv.c
 
void
host_name_lookup_init(void) {
  /* XXX - Any flags we should be using? */
  /* XXX - We could provide config settings for DNS servers, and
           pass them to ADNS with adns_init_strcfg */
  adns_init(&ads, 0, 0 /*0=>stderr*/);
  adns_currently_queued = 0;
}
why use adns_initflags==0 in the function of adns_init(), in initflags list, no such value?
 
Frank Li