Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/websockets/
DWebSocketHandshake.cpp471 String statusCodeString(space1 + 1, space2 - space1 - 1); in readStatusLine() local
472 if (statusCodeString.length() != 3) // Status code must consist of three digits. in readStatusLine()
475 if (statusCodeString[i] < '0' || statusCodeString[i] > '9') { in readStatusLine()
476 …ource, LogMessageType, ErrorMessageLevel, "Invalid status code: " + statusCodeString, 0, clientOri… in readStatusLine()
481 statusCode = statusCodeString.toInt(&ok); in readStatusLine()