Skip to content

Commit

Permalink
Add netflix_service to http service paths
Browse files Browse the repository at this point in the history
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
  • Loading branch information
CastagnaIT committed Oct 26, 2023
1 parent e741ed7 commit d11ac04
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions resources/lib/common/ipc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d11ac04

Please sign in to comment.