diff options
author | Lennart Poettering <lennart@poettering.net> | 2005-06-18 16:18:49 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2005-06-18 16:18:49 +0000 |
commit | 768d6a386735d3a0805547a2de728886f2aa8798 (patch) | |
tree | a74635e23ba8677502fbefd2831333def0aa61ad /avahi-core/core.h | |
parent | 964e9764b0ea8a7580bbdecb40ac2b89f4d2858c (diff) | |
download | avahi-768d6a386735d3a0805547a2de728886f2aa8798.tar.gz |
* rename the configuration variables register_xxx and announce_xxx to publish_xxx
* implement command line parsing and configuration file parsing
* implement daemonizing support (partially)
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@127 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-core/core.h')
-rw-r--r-- | avahi-core/core.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/avahi-core/core.h b/avahi-core/core.h index 6e8d9dd..c9274c4 100644 --- a/avahi-core/core.h +++ b/avahi-core/core.h @@ -75,14 +75,14 @@ typedef struct AvahiServerConfig { gchar *domain_name; /**< Default domain name. If left empty defaults to .local */ gboolean use_ipv4; /**< Enable IPv4 support */ gboolean use_ipv6; /**< Enable IPv6 support */ - gboolean register_hinfo; /**< Register a HINFO record for the host containing the local OS and CPU type */ - gboolean register_addresses; /**< Register A, AAAA and PTR records for all local IP addresses */ - gboolean register_workstation; /**< Register a _workstation._tcp service */ + gboolean publish_hinfo; /**< Register a HINFO record for the host containing the local OS and CPU type */ + gboolean publish_addresses; /**< Register A, AAAA and PTR records for all local IP addresses */ + gboolean publish_workstation; /**< Register a _workstation._tcp service */ + gboolean publish_domain; /**< Announce the local domain for browsing */ gboolean check_response_ttl; /**< If enabled the server ignores all incoming responses with IP TTL != 255 */ - gboolean announce_domain; /**< Announce the local domain for browsing */ - gboolean use_iff_running; /**< Require IFF_RUNNING on local network interfaces. This is the official way to check for link beat. Unfortunately this doesn't work with all drivers. So bettere leave this off. */ + gboolean use_iff_running; /**< Require IFF_RUNNING on local network interfaces. This is the official way to check for link beat. Unfortunately this doesn't work with all drivers. So bettere leave this off. */ gboolean enable_reflector; /**< Reflect incoming mDNS traffic to all local networks. This allows mDNS based network browsing beyond ethernet borders */ - gboolean ipv_reflect; /**< if enable_reflector is TRUE, enable/disable reflecting between IPv4 and IPv6 */ + gboolean reflect_ipv; /**< if enable_reflector is TRUE, enable/disable reflecting between IPv4 and IPv6 */ } AvahiServerConfig; /** Allocate a new mDNS responder object. */ |