diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-16 17:34:54 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-16 17:34:54 +0000 |
commit | b97306f8dc5e4f93bd3e6e5500a8b8338d6249a2 (patch) | |
tree | 2aadaa0640b4910b78b1e1e99718f220fbfa7622 /plugins/Ping/src/icmp.h | |
parent | 3dc4db00aa828d245e4f7a8a14233d624f3e2e7c (diff) |
cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@13625 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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
|