コード例 #1
0
void PeerConnection00::startIce(const Dictionary& dictionary, ExceptionCode& ec)
{
    RefPtr<IceOptions> iceOptions = createIceOptions(dictionary, ec);
    if (ec)
        return;

    startIce(iceOptions.release(), ec);
}
コード例 #2
0
ファイル: PeerConnection00.cpp プロジェクト: Moondee/Artemis
void PeerConnection00::startIce(ExceptionCode& ec)
{
    startIce("", ec);
}
コード例 #3
0
void PeerConnection00::startIce(ExceptionCode& ec)
{
    startIce(createDefaultIceOptions(), ec);
}