From d11ac0420ed30d9a8e192ddc69fa8d957fef795b Mon Sep 17 00:00:00 2001 From: CastagnaIT Date: Thu, 26 Oct 2023 17:41:16 +0200 Subject: [PATCH] Add netflix_service to http service paths This change is to match new changes in to InputStream Adaptive addon for Kodi 21 the first path folder "netflix_service" will be used to distinguish this addon http proxy service from another one so if CDM have to write some persistent data will not be mixed with CDM data of other addons ref: https://github.com/xbmc/inputstream.adaptive/wiki/How-to-provide-custom-manifest-and-license --- resources/lib/common/ipc.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/lib/common/ipc.py b/resources/lib/common/ipc.py index 1ddf541df..efb20f26a 100644 --- a/resources/lib/common/ipc.py +++ b/resources/lib/common/ipc.py @@ -20,10 +20,10 @@ IPC_TIMEOUT_SECS = 20 # IPC over HTTP endpoints -IPC_ENDPOINT_CACHE = '/cache' -IPC_ENDPOINT_MSL = '/msl' -IPC_ENDPOINT_NFSESSION = '/nfsession' -IPC_ENDPOINT_NFSESSION_TEST = '/nfsessiontest' +IPC_ENDPOINT_CACHE = '/netflix_service/cache' +IPC_ENDPOINT_MSL = '/netflix_service/msl' +IPC_ENDPOINT_NFSESSION = '/netflix_service/nfsession' +IPC_ENDPOINT_NFSESSION_TEST = '/netflix_service/nfsessiontest' class Signals: # pylint: disable=no-init,too-few-public-methods