multiplex: Add ZRTP handler call in reception_flow

This commit is contained in:
Heikki Tampio 2023-06-16 14:58:44 +03:00
parent 71a0dcd138
commit ac7f31713a
1 changed files with 2 additions and 1 deletions

View File

@ -582,7 +582,8 @@ void uvgrtp::reception_flow::process_packet(int rce_flags)
// Magic Cookie 0x5a525450
if (ntohl(*(uint32_t*)&ptr[4]) == 0x5a525450) {
// TODO: Add functionality
UVG_LOG_INFO("ZRTP packet");
//UVG_LOG_INFO("ZRTP packet");
retval = handlers->zrtp.handler(nullptr, rce_flags, &ptr[0], size, &frame);
break;
}