multiplex: Remove mentions of deprecated zrtp_receiver from zrtp class

This commit is contained in:
Heikki Tampio 2023-06-22 12:09:08 +03:00
parent 67a79b4c17
commit 89cd3fa1d0
3 changed files with 2 additions and 4 deletions

View File

@ -35,7 +35,6 @@ uvgrtp::zrtp::zrtp():
remote_addr_(),
remote_ip6_addr_(),
initialized_(false),
receiver_(),
hello_(nullptr),
hello_ack_(nullptr),
commit_(nullptr),

View File

@ -189,9 +189,6 @@ namespace uvgrtp {
zrtp_capab_t capab_;
zrtp_capab_t rcapab_;
/* ZRTP packet receiver */
uvgrtp::zrtp_msg::receiver receiver_;
zrtp_crypto_ctx_t cctx_;
zrtp_session_t session_;

View File

@ -14,6 +14,8 @@ namespace uvgrtp {
namespace zrtp_msg {
/* NOTE: This class was deprecated when socket multiplexing was introduced.
* All reception is done in reception_flow class */
class receiver {
public:
receiver();