[idd] transport: add frame sink boundary

This commit is contained in:
Geoffrey McRae
2026-08-12 16:45:01 +10:00
parent 801a1e58f8
commit bd4d31f0bd
21 changed files with 634 additions and 81 deletions

View File

@@ -30,11 +30,11 @@ static std::unique_ptr<ITransport> CreateLGMP()
return std::unique_ptr<ITransport>(new (std::nothrow) CLGMPTransport());
}
std::unique_ptr<ITransport> CreateTransport()
std::unique_ptr<CTransportManager> CreateTransport()
{
std::unique_ptr<CTransportManager> manager(
new (std::nothrow) CTransportManager());
if (!manager || !manager->Add(1, "LGMP", true, true, CreateLGMP))
return std::unique_ptr<ITransport>();
return std::unique_ptr<ITransport>(manager.release());
return std::unique_ptr<CTransportManager>();
return manager;
}