mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-07 22:02:12 +08:00
misc: fix typo
- tranport -> transport Change-Id: I1991ba7324c22625e8b6cdf568357e3ff6540557
This commit is contained in:
@ -140,7 +140,7 @@ public:
|
||||
bool isInitiator() const;
|
||||
|
||||
/**
|
||||
* Start tranport negotiation between local candidates and given remote
|
||||
* Start transport negotiation between local candidates and given remote
|
||||
* to find the right candidate pair.
|
||||
* This function doesn't block, the callback on_negodone_cb will be called
|
||||
* with the negotiation result when operation is really done.
|
||||
|
@ -44,7 +44,7 @@ public:
|
||||
AbstractSIPTransport* self {nullptr};
|
||||
};
|
||||
static_assert(std::is_standard_layout<TransportData>::value,
|
||||
"TranportData requires standard-layout");
|
||||
"TransportData requires standard-layout");
|
||||
|
||||
virtual ~AbstractSIPTransport() {};
|
||||
|
||||
|
@ -287,7 +287,7 @@ dhtStatusStr(dht::NodeStatus status)
|
||||
/**
|
||||
* Local ICE Transport factory helper
|
||||
*
|
||||
* JamiAccount must use this helper than direct IceTranportFactory API
|
||||
* JamiAccount must use this helper than direct IceTransportFactory API
|
||||
*/
|
||||
template<class... Args>
|
||||
std::shared_ptr<IceTransport>
|
||||
|
@ -398,7 +398,7 @@ SIPCall::setSipTransport(const std::shared_ptr<SipTransport>& transport,
|
||||
const std::string& contactHdr)
|
||||
{
|
||||
if (transport != sipTransport_) {
|
||||
JAMI_DBG("[call:%s] Setting tranport to [%p]", getCallId().c_str(), transport.get());
|
||||
JAMI_DBG("[call:%s] Setting transport to [%p]", getCallId().c_str(), transport.get());
|
||||
}
|
||||
|
||||
sipTransport_ = transport;
|
||||
|
Reference in New Issue
Block a user