예제 #1
0
void TSrvCfgMgr::addTAAddr(int iface) {
    SPtr<TSrvCfgIface> ptrIface;
    ptrIface = this->getIfaceByID(iface);
    if (!ptrIface) {
	Log(Error) << "Unable to increase address usage: interface (id="
		   << iface << ") not found." << LogEnd;
	return;
    }
    ptrIface->addTAAddr();
}