Lines Matching refs:modified_response
2363 auto modified_response = rport->last_stun_msg()->Clone(); in TEST_F() local
2364 modified_response->AddAttribute(StunAttribute::CreateUInt32(0x7777)); in TEST_F()
2365 modified_response->RemoveAttribute(STUN_ATTR_FINGERPRINT); in TEST_F()
2366 modified_response->AddFingerprint(); in TEST_F()
2368 WriteStunMessage(*modified_response, &buf); in TEST_F()
3141 auto modified_response = response->Clone(); in TEST_F() local
3142 ASSERT_TRUE(modified_response->RemoveAttribute(STUN_ATTR_GOOG_MISC_INFO) != in TEST_F()
3144 ASSERT_TRUE(modified_response->RemoveAttribute(STUN_ATTR_MESSAGE_INTEGRITY) != in TEST_F()
3146 ASSERT_TRUE(modified_response->RemoveAttribute(STUN_ATTR_FINGERPRINT) != in TEST_F()
3156 modified_response->AddAttribute(std::move(list)); in TEST_F()
3157 modified_response->AddMessageIntegrity("rpass"); in TEST_F()
3158 modified_response->AddFingerprint(); in TEST_F()
3162 modified_response->Write(&buf); in TEST_F()