2013-12-08, 15:44
Hi,
i've compiled the vnsi5 vdr plugin from https://github.com/FernetMenta/xbmc-pvr-...tree/vnsi5. The vnsiserver version is now 0.9.3 (on a ubuntu linux vdr 2.0.3)
On the client-side i use macos 10.9 and XBMC 13 (latest nightly alpha 10). The XBMC vnsi add-on is the version 1.9.4.
But this add-on version doesn' t work with the mentioned server version, on the vdr i get the following error in the syslog:
VNSI-Error: Client 'XBMC Media Center' have a not allowed protocol version '4', terminating client
So the question ist: which XBMC vnsi add-on works with the vnsi5 server version?
P.S. i tried to compile the latest vnsi XBMC add-on (from https://github.com/FernetMenta/xbmc-pvr-addons) under macos 10.9. But it didn't work. During a make, i get this:
i've compiled the vnsi5 vdr plugin from https://github.com/FernetMenta/xbmc-pvr-...tree/vnsi5. The vnsiserver version is now 0.9.3 (on a ubuntu linux vdr 2.0.3)
On the client-side i use macos 10.9 and XBMC 13 (latest nightly alpha 10). The XBMC vnsi add-on is the version 1.9.4.
But this add-on version doesn' t work with the mentioned server version, on the vdr i get the following error in the syslog:
VNSI-Error: Client 'XBMC Media Center' have a not allowed protocol version '4', terminating client
So the question ist: which XBMC vnsi add-on works with the vnsi5 server version?
P.S. i tried to compile the latest vnsi XBMC add-on (from https://github.com/FernetMenta/xbmc-pvr-addons) under macos 10.9. But it didn't work. During a make, i get this:
Code:
src/VNSIChannels.cpp:59:17: error: no member named 'strtol' in namespace 'std'; did you mean 'strtok'?
caid = std::strtol(token.c_str(), &pend, 10);
~~~~~^~~~~~
strtok
/usr/include/string.h:90:7: note: 'strtok' declared here
char *strtok(char *, const char *);
^
src/VNSIChannels.cpp:59:46: error: too many arguments to function call, expected 2, have 3
caid = std::strtol(token.c_str(), &pend, 10);
~~~~~~~~~~~ ^~
src/VNSIChannels.cpp:65:17: error: no member named 'strtol' in namespace 'std'; did you mean 'strtok'?
caid = std::strtol(strCaids.c_str(), &pend, 10);
~~~~~^~~~~~
strtok
/usr/include/string.h:90:7: note: 'strtok' declared here
char *strtok(char *, const char *);
^
src/VNSIChannels.cpp:65:49: error: too many arguments to function call, expected 2, have 3
caid = std::strtol(strCaids.c_str(), &pend, 10);
~~~~~~~~~~~ ^~
4 errors generated.
make: *** [VNSIChannels.lo] Error 1