Reimplemented from confStruct. Definition at line 86 of file serverConf.cpp. 00086 { 00087 int counter = 0; 00088 int tmp = -1; 00089 while(filenames[counter] != NULL){ 00090 readConfFromFile(filenames[counter]); 00091 counter = counter + 1; 00092 } 00093 readConfFromArgs(argc, argv); 00094 tmp = isConfComplete(); 00095 if(tmp != -1){ 00096 printError(tmp); 00097 return 1; 00098 } 00099 return 0; 00100 }
|
1.5.1