Nagram/TMessagesProj/jni/voip/tgcalls/TurnCustomizerImpl.h
2021-07-19 18:56:43 +03:00

20 lines
510 B
C++

#ifndef TGCALLS_TURN_CUSTOMIZER_H
#define TGCALLS_TURN_CUSTOMIZER_H
#include "api/turn_customizer.h"
namespace tgcalls {
class TurnCustomizerImpl : public webrtc::TurnCustomizer {
public:
TurnCustomizerImpl();
virtual ~TurnCustomizerImpl();
void MaybeModifyOutgoingStunMessage(cricket::PortInterface* port, cricket::StunMessage* message) override;
bool AllowChannelData(cricket::PortInterface* port, const void *data, size_t size, bool payload) override;
};
} // namespace tgcalls
#endif