X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/681103026e308772b67867c6a4fbac1f0692faa2..67e8149cbfc4943060862df8a97871a0734f7242:/disobedience/lookup.c diff --git a/disobedience/lookup.c b/disobedience/lookup.c index 51c06bf..68939ae 100644 --- a/disobedience/lookup.c +++ b/disobedience/lookup.c @@ -2,20 +2,21 @@ * This file is part of DisOrder * Copyright (C) 2008 Richard Kettlewell * - * This program is free software; you can redistribute it and/or modify + * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - * USA + * along with this program. If not, see . + */ +/** @file disobedience/lookup.c + * @brief Disobedience server lookups and caching */ #include "disobedience.h" @@ -36,10 +37,10 @@ static void namepart_completed_or_failed(void) { } /** @brief Called when a namepart lookup has completed */ -static void namepart_completed(void *v, const char *error, const char *value) { +static void namepart_completed(void *v, const char *err, const char *value) { D(("namepart_completed")); - if(error) { - gtk_label_set_text(GTK_LABEL(report_label), error); + if(err) { + gtk_label_set_text(GTK_LABEL(report_label), err); value = "?"; } const char *key = v; @@ -49,10 +50,10 @@ static void namepart_completed(void *v, const char *error, const char *value) { } /** @brief Called when a length lookup has completed */ -static void length_completed(void *v, const char *error, long l) { +static void length_completed(void *v, const char *err, long l) { D(("length_completed")); - if(error) { - gtk_label_set_text(GTK_LABEL(report_label), error); + if(err) { + gtk_label_set_text(GTK_LABEL(report_label), err); l = -1; } const char *key = v; @@ -81,7 +82,6 @@ static void namepart_fill(const char *track, * @param track Track name * @param context Context * @param part Name part - * @param lookup If nonzero, will schedule a lookup for unknown values * * If it is in the cache then just return its value. If not then look it up * and arrange for the queues to be updated when its value is available. */