Definition at line 102 of file serverConf.cpp. 00102 { 00103 int tmp = 7; 00104 int counter = 0; 00105 validValues = values; 00106 isInt = tmpInt; 00107 validValuesCount = tmp; 00108 regExp = "^[ \t]*([A-Za-z0-9]+)[ \t]*=[ \t]*([/~A-Za-z0-9.]+)"; 00109 subExpCount = 2; 00110 confDef = "p:i:c:h:l:b:t:"; 00111 intArray = new int[tmp];//(int*)malloc(sizeof(int) * tmp); 00112 confFound = new int [tmp];//(int*)malloc(sizeof(int) * tmp); 00113 charArray = new char*[tmp];//(char**)malloc(sizeof(char*) * tmp); 00114 while(counter < tmp){ 00115 intArray[counter] = 0; 00116 confFound[counter] = 0; 00117 charArray[counter] = NULL; 00118 counter = counter + 1; 00119 } 00120 }
|
1.5.1