Home | History | Annotate | Download | only in websockets

Lines Matching refs:response_info

400   HttpResponseInfo response_info;
401 response_info.headers = new HttpResponseHeaders(raw_headers);
403 EXPECT_TRUE(StartsWithASCII(response_info.headers->GetStatusLine(),
405 EXPECT_FALSE(response_info.headers->HasHeader("Upgrade"));
406 EXPECT_FALSE(response_info.headers->HasHeader("Connection"));
407 EXPECT_TRUE(response_info.headers->HasHeaderValue("Sec-WebSocket-Origin",
409 EXPECT_TRUE(response_info.headers->HasHeaderValue("Sec-WebSocket-Location",
411 EXPECT_TRUE(response_info.headers->HasHeaderValue("Sec-WebSocket-Protocol",
416 EXPECT_TRUE(response_handler.ParseResponseInfo(response_info, challenge));
479 HttpResponseInfo response_info;
480 response_info.headers = new HttpResponseHeaders(raw_headers);
482 EXPECT_TRUE(StartsWithASCII(response_info.headers->GetStatusLine(),
484 EXPECT_FALSE(response_info.headers->HasHeader("Upgrade"));
485 EXPECT_FALSE(response_info.headers->HasHeader("Connection"));
486 EXPECT_FALSE(response_info.headers->HasHeader("Sec-WebSocket-Accept"));
487 EXPECT_TRUE(response_info.headers->HasHeaderValue("Sec-WebSocket-Protocol",
494 EXPECT_TRUE(response_handler.ParseResponseInfo(response_info, challenge));