Changeset 30021 for titan/titan/httpdfunc.h
- Timestamp:
- 09/20/14 22:59:42 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/httpdfunc.h
r29553 r30021 3175 3175 3176 3176 m_lock(&status.clistmutex, 12); 3177 if(fmt == 0) 3178 { 3179 buf = ostrcat(buf, "<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">", 1, 0); 3180 buf = ostrcat(buf, "<link rel=stylesheet type=text/css href=titan.css><script type=text/javascript src=titan.js></script>", 1, 0); 3181 buf = ostrcat(buf, "</head><body class=body id=\"configinfo\">", 1, 0); 3182 } 3183 3177 3184 struct clist **clist = config; 3178 3185 … … 3208 3215 } 3209 3216 } 3217 3218 buf = ostrcat(buf, "</body></html>", 1, 0); 3210 3219 3211 3220 m_unlock(&status.clistmutex, 12); … … 3217 3226 char* buf = NULL; 3218 3227 char* imgversion = NULL; 3228 3229 if(fmt == 0) 3230 { 3231 buf = ostrcat(buf, "<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">", 1, 0); 3232 buf = ostrcat(buf, "<link rel=stylesheet type=text/css href=titan.css><script type=text/javascript src=titan.js></script>", 1, 0); 3233 buf = ostrcat(buf, "</head><body class=body id=\"systeminfo\">", 1, 0); 3234 } 3219 3235 3220 3236 buf = ostrcat(buf, PROGNAME, 1, 0); … … 3242 3258 buf = ostrcat(buf, "1", 1, 0); 3243 3259 3260 buf = ostrcat(buf, "</body></html>", 1, 0); 3261 3244 3262 return buf; 3245 3263 }
Note: See TracChangeset
for help on using the changeset viewer.