Home
last modified time | relevance | path

Searched refs:sTmp (Results 1 – 2 of 2) sorted by relevance

/reactos/modules/rosapps/applications/net/roshttpd/
H A Dhttp.cpp119 CHAR sTmp; in ReadString() local
122 if (((sTmp >= 'A') && (sTmp <= 'Z')) || ((sTmp >= 'a') && (sTmp <= 'z')) || in ReadString()
123 ((sTmp >= '0') && (sTmp <= '9')) || (sTmp == '-')) { in ReadString()
145 CHAR sTmp; in ReadSpecial() local
147 while (PeekChar(&sTmp) && (sTmp != ' ') && (sTmp != 13)) { in ReadSpecial()
152 ReadChar(&sTmp); in ReadSpecial()
153 lpsStr[i] = sTmp; in ReadSpecial()
163 CHAR sTmp; in Skip() local
165 while (PeekChar(&sTmp) && (sTmp != sCh)) in Skip()
166 ReadChar(&sTmp); in Skip()
[all …]
H A Dhttpd.cpp265 CHAR sTmp[128]; in Report() local
268 strcpy(sTmp, "HTTP/1.1 "); in Report()
269 strcat(sTmp, lpsCode); in Report()
270 SendText(sTmp); in Report()
275 strcpy(sTmp, "Content-Length: "); in Report()
278 strcat(sTmp, sTmp2); in Report()
280 strcat(sTmp, "0"); in Report()
281 SendText(sTmp); in Report()