From: Oliver Kurth Date: Tue, 17 Mar 2020 21:36:53 +0000 (-0700) Subject: VMware Tools service discovery core plugin changes X-Git-Tag: stable-11.1.0~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e0b84a2bd6a2fd918970e4dbab24668d4689268;p=thirdparty%2Fopen-vm-tools.git VMware Tools service discovery core plugin changes First step in creating a new plugin to collect in-guest process related data over Namespace DB. --- diff --git a/open-vm-tools/lib/include/conf.h b/open-vm-tools/lib/include/conf.h index a0f2ea8bb..cc92888fd 100644 --- a/open-vm-tools/lib/include/conf.h +++ b/open-vm-tools/lib/include/conf.h @@ -1,5 +1,5 @@ /********************************************************* - * Copyright (C) 2002-2019 VMware, Inc. All rights reserved. + * Copyright (C) 2002-2020 VMware, Inc. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -90,6 +90,32 @@ ****************************************************************************** */ +/* + ****************************************************************************** + * BEGIN ServiceDiscovery goodies. + */ + +/** + * Defines the string used for the ServiceDiscovery config file group. + */ +#define CONFGROUPNAME_SERVICEDISCOVERY "servicediscovery" + +/** + * Defines the configuration to perform service discovery or not. + * + * @note Illegal values result in a @c g_warning and fallback to the default + * value. + * + * @param boolean Set to TRUE to disable publishing. + * Set to FALSE to enable publishing. + */ +#define CONFNAME_SERVICEDISCOVERY_DISABLED "disabled" + +/* + * END ServiceDiscovery goodies. + ****************************************************************************** + */ + /* ****************************************************************************** * BEGIN GuestStore upgrader goodies.