Home | History | Annotate | Download | only in base

Lines Matching refs:Permission

53 // Encapsulates a TURN permission.
54 // The object is created when a create permission request is received by an
56 class TurnServerAllocation::Permission : public rtc::MessageHandler {
58 Permission(rtc::Thread* thread, const rtc::IPAddress& peer);
59 ~Permission();
64 sigslot::signal1<Permission*> SignalDestroyed;
681 // If a permission exists, send the data on to the peer.
686 LOG_J(LS_WARNING, this) << "Received send indication without permission"
707 // Add this permission.
710 LOG_J(LS_INFO, this) << "Created permission, peer="
797 // No channel, but a permission exists. Send as a data indication.
808 LOG_J(LS_WARNING, this) << "Received external packet without permission, "
828 Permission* perm = FindPermission(addr);
830 perm = new Permission(thread_, addr);
839 TurnServerAllocation::Permission* TurnServerAllocation::FindPermission(
896 void TurnServerAllocation::OnPermissionDestroyed(Permission* perm) {
909 TurnServerAllocation::Permission::Permission(rtc::Thread* thread,
915 TurnServerAllocation::Permission::~Permission() {
919 void TurnServerAllocation::Permission::Refresh() {
924 void TurnServerAllocation::Permission::OnMessage(rtc::Message* msg) {