blob: 052a9020af278543e594991d5bdfe266189655b8 (
plain)
1
2
3
4
5
6
7
8
|
// SPDX-License-Identifier: GPL-3.0-or-later
#include "function-progress.h"
int function_progress(BUFFER *wb, const char *function __maybe_unused, BUFFER *payload __maybe_unused, const char *source __maybe_unused) {
return progress_function_result(wb, rrdhost_hostname(localhost));
}
|