00001 #include "auc-md.h" 00002 00003 const char *mdStdErrs[] = { "No error detected.", "Required state/element missing.", "Already exists.", 00004 "Conflict detected.", "Not ready.", "Syntax error." }; 00005 00006 masterDaemonConfig::masterDaemonConfig() { 00007 00008 nClievers = 0; 00009 configPath = "./"; 00010 logPath = "/tmp"; 00011 daemonized = true; 00012 // used in the logNdebug by increasing power of 10. 00013 debugThreshold = CURRENT_DEBUG; 00014 halt = false; 00015 shuttingDown = false; 00016 shutdown = false; 00017 thisMachineContext = -1; // in v 1.0. there's only 1 but the 00018 // basis for more than one is pre-established. 00019 err = mdStdErrs; 00020 } 00021 int masterDaemonConfig::loadMachineConfiguration(int deviceType) { 00022 00023 int rc=OK; 00024 00025 if (!deviceType) { 00026 00027 } 00028 00029 /* \todo Add configuration process for non-MD_TYPE devices */ 00030 00031 return rc; 00032 00033 }
1.5.6