From 8beb2162be16ac4311ffdd397f0337e5ad0934d4 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sun, 17 Aug 2008 16:16:41 +0200 Subject: piano: New return value _NOT_AUTHORIZED --- libpiano/src/main.c | 4 ++++ libpiano/src/piano.h | 2 +- libpiano/src/xml.c | 3 +++ 3 files changed, 8 insertions(+), 1 deletion(-) (limited to 'libpiano') diff --git a/libpiano/src/main.c b/libpiano/src/main.c index 7eaba25..edee0d2 100644 --- a/libpiano/src/main.c +++ b/libpiano/src/main.c @@ -846,6 +846,10 @@ const char *PianoErrorToStr (PianoReturn_t ret) { return "Connection failed."; break; + case PIANO_RET_NOT_AUTHORIZED: + return "Not authorized."; + break; + default: return "No error message available."; break; diff --git a/libpiano/src/piano.h b/libpiano/src/piano.h index b0e741e..ae4b18b 100644 --- a/libpiano/src/piano.h +++ b/libpiano/src/piano.h @@ -152,7 +152,7 @@ typedef struct PianoSearchResult PianoSearchResult_t; /* FIXME: more error types (http failed, e.g.) later */ enum PianoReturn {PIANO_RET_OK, PIANO_RET_ERR, PIANO_RET_XML_INVALID, PIANO_RET_AUTH_TOKEN_INVALID, PIANO_RET_AUTH_USER_PASSWORD_INVALID, - PIANO_RET_NET_ERROR}; + PIANO_RET_NET_ERROR, PIANO_RET_NOT_AUTHORIZED}; typedef enum PianoReturn PianoReturn_t; void PianoInit (PianoHandle_t *); diff --git a/libpiano/src/xml.c b/libpiano/src/xml.c index 4d945e7..25cd8f8 100644 --- a/libpiano/src/xml.c +++ b/libpiano/src/xml.c @@ -62,6 +62,9 @@ void PianoXmlIsFaultCb (const char *key, const xmlNode *value, void *data) { } else if (strcmp ("AUTH_INVALID_USERNAME_PASSWORD", matchStr) == 0) { *ret = PIANO_RET_AUTH_USER_PASSWORD_INVALID; + } else if (strcmp ("LISTENER_NOT_AUTHORIZED", + matchStr) == 0) { + *ret = PIANO_RET_NOT_AUTHORIZED; } else { *ret = PIANO_RET_ERR; printf (PACKAGE ": Unknown error %s in %s\n", -- cgit v1.2.3