X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=src%2Fdaemon%2Fcollectd.c;h=f1a492379456657b1fb9690dfe82641f788ed655;hb=7c9d772c992647fcba64a96800c146eb9f1647f8;hp=b4668e06bb67d9c6dfd91dedd0d5ef30fb968a04;hpb=74ee9a04ef5785b31d1acbfdcbcece3370668cfe;p=collectd.git diff --git a/src/daemon/collectd.c b/src/daemon/collectd.c index b4668e06..f1a49237 100644 --- a/src/daemon/collectd.c +++ b/src/daemon/collectd.c @@ -51,6 +51,14 @@ #define COLLECTD_LOCALE "C" #endif +#ifdef WIN32 +#undef COLLECT_DAEMON +#include +#undef gethostname +#include +#include +#endif + static int loop; static int init_hostname(void) { @@ -60,10 +68,14 @@ static int init_hostname(void) { return 0; } +#ifdef WIN32 + long hostname_len = NI_MAXHOST; +#else long hostname_len = sysconf(_SC_HOST_NAME_MAX); if (hostname_len == -1) { hostname_len = NI_MAXHOST; } +#endif /* WIN32 */ char hostname[hostname_len]; if (gethostname(hostname, hostname_len) != 0) { @@ -295,7 +307,7 @@ static int do_shutdown(void) { static void read_cmdline(int argc, char **argv, struct cmdline_config *config) { /* read options */ while (1) { - int c = getopt(argc, argv, "htTC:" + int c = getopt(argc, argv, "BhtTC:" #if COLLECT_DAEMON "fP:" #endif