From: Florian Forster Date: Tue, 7 Oct 2008 07:23:07 +0000 (+0200) Subject: snmp plugin: Added folding marker for the configuration handling. X-Git-Tag: collectd-4.6.0~182 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=4383a97f4f66c1abb514d2cc7eaa9104518da88e;p=collectd.git snmp plugin: Added folding marker for the configuration handling. --- diff --git a/src/snmp.c b/src/snmp.c index 09aca563..3ba93fe8 100644 --- a/src/snmp.c +++ b/src/snmp.c @@ -118,6 +118,7 @@ static pthread_cond_t host_cond = PTHREAD_COND_INITIALIZER; /* * Private functions */ +/* Many functions to handle the configuration. {{{ */ /* First there are many functions which do configuration stuff. It's a big * bloated and messy, I'm afraid. */ @@ -656,7 +657,7 @@ static int csnmp_config (oconfig_item_t *ci) return (0); } /* int csnmp_config */ -/* End of the config stuff. Now the interesting part begins */ +/* }}} End of the config stuff. Now the interesting part begins */ static void csnmp_host_close_session (host_definition_t *host) { @@ -1634,5 +1635,5 @@ void module_register (void) } /* void module_register */ /* - * vim: shiftwidth=2 softtabstop=2 tabstop=8 + * vim: shiftwidth=2 softtabstop=2 tabstop=8 fdm=marker */