Add low-bandwidth mode

This commit is contained in:
Joseph Henry
2023-07-18 13:04:40 -07:00
parent e60239329c
commit 27805f8ff2
3 changed files with 19 additions and 0 deletions

View File

@@ -133,6 +133,12 @@ int zts_init_set_roots(const void* roots_data, unsigned int len)
return zts_service->setRoots(roots_data, len);
}
int zts_init_set_low_bandwidth_mode(bool enabled)
{
ACQUIRE_SERVICE_OFFLINE();
return zts_service->setLowBandwidthMode(enabled);
}
int zts_init_set_port(unsigned short port)
{
ACQUIRE_SERVICE_OFFLINE();