X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fdaemon%2Fglobals.c;h=a76a44c4f0080e9e2e5e791fbc377d419bd97de1;hb=6378ec288f34ff250b2971a1452338a2b34c240a;hp=398e2dd204bb8af5dd5f3f89e712de433b4da84c;hpb=ce185d1c4dec25dbd58aa818f4b60a758514a574;p=collectd.git diff --git a/src/daemon/globals.c b/src/daemon/globals.c index 398e2dd2..a76a44c4 100644 --- a/src/daemon/globals.c +++ b/src/daemon/globals.c @@ -1,6 +1,6 @@ /** * collectd - src/globals.c - * Copyright (C) 2017 Florian octo Forster + * Copyright (C) 2017 Google LLC * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -22,15 +22,27 @@ **/ #include "globals.h" -#include "plugin.h" +#include "utils/common/common.h" + +#if HAVE_KSTAT_H +#include +#endif + /* * Global variables */ -char hostname_g[DATA_MAX_NAME_LEN]; -const int hostname_g_size = sizeof (hostname_g); +char *hostname_g; cdtime_t interval_g; -int pidfile_from_cli = 0; -int timeout_g; -#if HAVE_LIBKSTAT +int timeout_g; +#if HAVE_KSTAT_H kstat_ctl_t *kc; -#endif /* HAVE_LIBKSTAT */ +#endif + +void hostname_set(char const *hostname) { + char *h = strdup(hostname); + if (h == NULL) + return; + + sfree(hostname_g); + hostname_g = h; +}