From 5274fee8a71cc5901649b984bc4488c9677feadf Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 22 Dec 2010 19:46:41 +0100 Subject: playlist_song: add flag "secure" Optionally allow all local files. "Insecure" mode is used for printing playlists. --- src/playlist_song.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/playlist_song.h') diff --git a/src/playlist_song.h b/src/playlist_song.h index 5a2e4c2b0..29335e5ac 100644 --- a/src/playlist_song.h +++ b/src/playlist_song.h @@ -20,12 +20,18 @@ #ifndef MPD_PLAYLIST_SONG_H #define MPD_PLAYLIST_SONG_H +#include + /** * Verifies the song, returns NULL if it is unsafe. Translate the * song to a new song object within the database, if it is a local * file. The old song object is freed. + * + * @param secure if true, then local files are only allowed if they + * are relative to base_uri */ struct song * -playlist_check_translate_song(struct song *song, const char *base_uri); +playlist_check_translate_song(struct song *song, const char *base_uri, + bool secure); #endif -- cgit v1.2.3