Home | History | Annotate | Download | only in quic

Lines Matching refs:client_address

57       const IPEndPoint& client_address));
85 const IPEndPoint& client_address,
94 ProcessUdpPacket(_, client_address, _));
120 void ProcessPacket(IPEndPoint client_address,
127 dispatcher_.ProcessPacket(server_address_, client_address, *packet);
146 IPEndPoint client_address(net::test::Loopback4(), 1);
151 EXPECT_CALL(dispatcher_, CreateQuicSession(1, _, client_address))
153 &dispatcher_, 1, client_address, &session1_)));
154 ProcessPacket(client_address, 1, true, "foo");
155 EXPECT_EQ(client_address, dispatcher_.current_client_address());
159 EXPECT_CALL(dispatcher_, CreateQuicSession(2, _, client_address))
161 &dispatcher_, 2, client_address, &session2_)));
162 ProcessPacket(client_address, 2, true, "bar");
168 ProcessPacket(client_address, 1, false, "eep");
172 IPEndPoint client_address(net::test::Loopback4(), 1);
174 EXPECT_CALL(dispatcher_, CreateQuicSession(_, _, client_address))
176 &dispatcher_, 1, client_address, &session1_)));
178 ProcessPacket(client_address, 1, true, "foo");
195 const IPEndPoint& client_address,
209 IPEndPoint client_address(net::test::Loopback4(), 1);
211 EXPECT_CALL(dispatcher_, CreateQuicSession(connection_id, _, client_address))
213 &dispatcher_, connection_id, client_address, &session1_)));
214 ProcessPacket(client_address, connection_id, true, "foo");
234 dispatcher_.ProcessPacket(IPEndPoint(), client_address, *encrypted);
241 ProcessPacket(client_address, connection_id, true, "foo");
252 IPEndPoint client_address(net::test::Loopback4(), 1);
260 ProcessPacket(client_address, connection_id, false, "foo");
334 IPEndPoint client_address(net::test::Loopback4(), 1);
336 EXPECT_CALL(dispatcher_, CreateQuicSession(_, _, client_address))
338 &dispatcher_, 1, client_address, &session1_)));
339 ProcessPacket(client_address, 1, true, "foo");
341 EXPECT_CALL(dispatcher_, CreateQuicSession(_, _, client_address))
343 &dispatcher_, 2, client_address, &session2_)));
344 ProcessPacket(client_address, 2, true, "bar");