misc: fix typo

- tranport -> transport

Change-Id: I1991ba7324c22625e8b6cdf568357e3ff6540557
This commit is contained in:
agsantos
2021-12-15 09:31:09 -05:00
committed by Sébastien Blin
parent 09359cdfb3
commit 9c9d11e410
4 changed files with 4 additions and 4 deletions

View File

@ -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.

View File

@ -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() {};

View File

@ -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>

View File

@ -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;