mirror of
https://github.com/logos-co/logos-cpp-sdk.git
synced 2026-08-27 15:51:10 +00:00
* support non-local remote transports * fix LogosResult * allow getting client over specific transport * fix ssl * investiage ssl error * pr comments * allow transport set configuration on any module * pr comments * add docs * pr comments * propagate only non-qt dependencies * restore ABI compatibility
20 lines
663 B
C++
20 lines
663 B
C++
#include "logos_transport.h"
|
|
|
|
#include "logos_instance.h"
|
|
|
|
// Default URL generators for the Qt local-socket / QRO-based backends.
|
|
// They match today's deterministic scheme in LogosInstance::id(moduleName);
|
|
// network backends (plain_transport_host, plain_transport_connection) override.
|
|
|
|
QString LogosTransportHost::bindUrl(const QString& /*instanceId*/,
|
|
const QString& moduleName)
|
|
{
|
|
return LogosInstance::id(moduleName);
|
|
}
|
|
|
|
QString LogosTransportConnection::endpointUrl(const QString& /*instanceId*/,
|
|
const QString& moduleName)
|
|
{
|
|
return LogosInstance::id(moduleName);
|
|
}
|