1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-24 19:21:35 +01:00

Documented all functions in header files.

This commit is contained in:
Matias Fontanini
2011-08-16 23:10:22 -03:00
parent 3feb2fdeae
commit 0d2b6a507b
7 changed files with 182 additions and 8 deletions

View File

@@ -37,6 +37,7 @@
using namespace std;
/** \cond */
struct InterfaceCollector {
set<string> ifaces;
@@ -75,6 +76,8 @@ struct HWAddressCollector {
}
};
/** \endcond */
uint32_t Tins::Utils::ip_to_int(const string &ip) {
uint32_t result(0), i(0), end, bytes_found(0);
while(i < ip.size() && bytes_found < 4) {