diff options
Diffstat (limited to 'plugins/Ping/src/icmp.h')
-rw-r--r-- | plugins/Ping/src/icmp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Ping/src/icmp.h b/plugins/Ping/src/icmp.h index 110f5b554c..d3b8e665a1 100644 --- a/plugins/Ping/src/icmp.h +++ b/plugins/Ping/src/icmp.h @@ -22,14 +22,14 @@ public: static void cleanup();
bool ping(char *host, ICMP_ECHO_REPLY &reply);
-
+
void set_timeout(unsigned int t) {
timeout = t;
}
void stop();
- unsigned int get_timeout() {return timeout;}
+ unsigned int get_timeout() { return timeout; }
};
#endif //_ICMP_H
|