Searched refs:TurnServerConnection (Results 1 – 2 of 2) sorted by relevance
/external/webrtc/webrtc/p2p/base/ |
D | turnserver.h | 41 class TurnServerConnection { 43 TurnServerConnection() : proto_(PROTO_UDP), socket_(NULL) {} in TurnServerConnection() function 44 TurnServerConnection(const rtc::SocketAddress& src, 49 bool operator==(const TurnServerConnection& t) const; 50 bool operator<(const TurnServerConnection& t) const; 70 const TurnServerConnection& conn, 75 TurnServerConnection* conn() { return &conn_; } in conn() 127 TurnServerConnection conn_; 162 typedef std::map<TurnServerConnection, TurnServerAllocation*> AllocationMap; 215 TurnServerConnection* conn, const char* data, size_t size); [all …]
|
D | turnserver.cc | 202 TurnServerConnection conn(addr, iter->second, socket); in OnInternalPacket() 216 void TurnServer::HandleStunMessage(TurnServerConnection* conn, const char* data, in HandleStunMessage() 290 bool TurnServer::CheckAuthorization(TurnServerConnection* conn, in CheckAuthorization() 350 void TurnServer::HandleBindingRequest(TurnServerConnection* conn, in HandleBindingRequest() 364 void TurnServer::HandleAllocateRequest(TurnServerConnection* conn, in HandleAllocateRequest() 430 TurnServerAllocation* TurnServer::FindAllocation(TurnServerConnection* conn) { in FindAllocation() 435 TurnServerAllocation* TurnServer::CreateAllocation(TurnServerConnection* conn, in CreateAllocation() 452 void TurnServer::SendErrorResponse(TurnServerConnection* conn, in SendErrorResponse() 463 TurnServerConnection* conn, const StunMessage* msg, in SendErrorResponseWithRealmAndNonce() 475 TurnServerConnection* conn, const StunMessage* msg, in SendErrorResponseWithAlternateServer() [all …]
|