• Home
  • Raw
  • Download

Lines Matching defs:daemon

120 #define daemon dnsmasq_daemon  macro
578 extern struct daemon { struct
583 unsigned int options;
584 struct resolvc default_resolv, *resolv_files;
585 time_t last_resolv;
586 struct mx_srv_record *mxnames;
587 struct naptr *naptr;
588 struct txt_record *txt;
589 struct ptr_record *ptr;
590 struct cname *cnames;
591 struct interface_name *int_names;
592 char *mxtarget;
593 char *lease_file;
594 char *username, *groupname, *scriptuser;
595 int group_set, osport;
596 char *domain_suffix;
597 struct cond_domain *cond_domain;
598 char *runfile;
599 char *lease_change_command;
600 struct iname *if_names, *if_addrs, *if_except, *dhcp_except;
601 struct bogus_addr *bogus_addr;
602 struct server *servers;
603 int log_fac; /* log facility */
604 char *log_file; /* optional log file */
605 int max_logs; /* queue limit */
606 int cachesize, ftabsize;
607 int port, query_port, min_port;
608 unsigned long local_ttl, neg_ttl;
609 struct hostsfile *addn_hosts;
610 struct dhcp_context *dhcp;
611 struct dhcp_config *dhcp_conf;
612 struct dhcp_opt *dhcp_opts, *dhcp_match;
613 struct dhcp_vendor *dhcp_vendors;
614 struct dhcp_mac *dhcp_macs;
615 struct dhcp_boot *boot_config;
616 struct pxe_service *pxe_services;
617 int enable_pxe;
618 struct dhcp_netid_list *dhcp_ignore, *dhcp_ignore_names, *force_broadcast, *bootp_dynamic;
619 char *dhcp_hosts_file, *dhcp_opts_file;
620 int dhcp_max;
621 int dhcp_server_port, dhcp_client_port;
622 unsigned int min_leasetime;
623 struct doctor *doctors;
624 unsigned short edns_pktsz;
625 uint32_t listen_mark;
628 char *packet; /* packet buffer */
629 int packet_buff_sz; /* size of above */
630 char *namebuff; /* MAXDNAME size buffer */
631 unsigned int local_answer, queries_forwarded;
632 struct frec *frec_list;
633 struct serverfd *sfds;
634 struct irec *interfaces;
658 } *daemon; argument