-/*if (cf.ReadString("Iface", &ifaces, "NoIface") < 0)
- {
- errorStr = "Cannot read parameter \'Iface\' from " + cf.GetFileName();
- return -1;
- }
-
-str = new char[ifaces.size() + 1];
-strcpy(str, ifaces.c_str());
-p = str;
-
-while((s = strtok(p, sep)))
- {
- printfd(__FILE__, "iface[] = %s\n", s);
- p = NULL;
- iface.push_back(s);
- //strncpy(iface[i++], s, DEV_NAME_LEN);
- //devNum++;
- }
-
-delete[] str;
-if (!ifaces.size())
- {
- errorStr = "Error read parameter \'Iface\' from " + cf.GetFileName();
- return -1;
- }*/
-