/* * Copyright 2004 The WebRTC Project Authors. All rights reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree.
*/
// This method will send STUN binding request if STUN server address is set. void MaybePrepareStunCandidate();
void SendStunBindingRequests();
// Helper function which will set `addr`'s IP to the default local address if // `addr` is the "any" address and `emit_local_for_anyaddress_` is true. When // returning false, it indicates that the operation has failed and the // address shouldn't be used by any candidate. bool MaybeSetDefaultLocalAddress(rtc::SocketAddress* addr) const;
private: // A helper class which can be called repeatedly to resolve multiple // addresses, as opposed to rtc::AsyncDnsResolverInterface, which can only // resolve one address per instance. class AddressResolver { public: explicit AddressResolver(
rtc::PacketSocketFactory* factory,
std::function<void(const rtc::SocketAddress&, int)> done_callback);
void Resolve(const rtc::SocketAddress& address, int family, const webrtc::FieldTrialsView& field_trials); bool GetResolvedAddress(const rtc::SocketAddress& input, int family,
rtc::SocketAddress* output) const;
rtc::PacketSocketFactory* socket_factory_; // The function is called when resolving the specified address is finished. // The first argument is the input address, the second argument is the error // or 0 if it succeeded.
std::function<void(const rtc::SocketAddress&, int)> done_; // Resolver may fire callbacks that refer to done_, so ensure // that all resolvers are destroyed first.
ResolverMap resolvers_;
};
// DNS resolution of the STUN server. void ResolveStunAddress(const rtc::SocketAddress& stun_addr); void OnResolveResult(const rtc::SocketAddress& input, int error);
// Send a STUN binding request to the given address. Calling this method may // cause the set of known server addresses to be modified, eg. by replacing an // unresolved server address with a resolved address. void SendStunBindingRequest(const rtc::SocketAddress& stun_addr);
// If this is a low-cost network, it will keep on sending STUN binding // requests indefinitely to keep the NAT binding alive. Otherwise, stop // sending STUN binding requests after HIGH_COST_PORT_KEEPALIVE_LIFETIME. int GetStunKeepaliveLifetime() { return (network_cost() >= rtc::kNetworkCostHigh)
? HIGH_COST_PORT_KEEPALIVE_LIFETIME
: INFINITE_LIFETIME;
}
ServerAddresses server_addresses_;
ServerAddresses bind_request_succeeded_servers_;
ServerAddresses bind_request_failed_servers_;
StunRequestManager request_manager_;
rtc::AsyncPacketSocket* socket_; int error_; int send_error_count_ = 0;
std::unique_ptr<AddressResolver> resolver_; bool ready_; int stun_keepalive_delay_; int stun_keepalive_lifetime_ = INFINITE_LIFETIME;
rtc::DiffServCodePoint dscp_;
StunStats stats_;
// This is true by default and false when // PORTALLOCATOR_DISABLE_DEFAULT_LOCAL_CANDIDATE is specified. bool emit_local_for_anyaddress_;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.