mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2025-12-10 07:44:41 +01:00
25 lines
810 B
C
25 lines
810 B
C
/*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Copyright (C) 2019 iopsys Software Solutions AB
|
|
* Author: Imen Bhiri <imen.bhiri@pivasoftware.com>
|
|
* Author: Amin Ben Ramdhane <amin.benramdhane@pivasoftware.com>
|
|
*/
|
|
|
|
#ifndef __DIAGNOSTIC__H
|
|
#define __DIAGNOSTIC__H
|
|
|
|
bool set_diagnostic_parameter_structure_value(char *parameter_name, char *value);
|
|
|
|
int cwmp_download_diagnostics();
|
|
int cwmp_upload_diagnostics();
|
|
int cwmp_ip_ping_diagnostics();
|
|
int cwmp_nslookup_diagnostics();
|
|
int cwmp_traceroute_diagnostics();
|
|
int cwmp_udp_echo_diagnostics();
|
|
int cwmp_serverselection_diagnostics();
|
|
|
|
#endif
|