send queue asynchronously with caching songs
[scrobby.git] / src / scrobby.h
bloba0500448dcd9da4d21c15f6f409315baa09e5b9c
1 /***************************************************************************
2 * Copyright (C) 2008-2009 by Andrzej Rybczak *
3 * electricityispower@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #ifndef _SCROBBY_H
22 #define _SCROBBY_H
24 #ifdef HAVE_CONFIG_H
25 # include <config.h>
26 #endif
28 const int curl_connecttimeout = 2;
29 const int curl_timeout = 10;
31 struct Handshake
33 void Clear()
35 Status.clear();
36 SessionID.clear();
37 NowPlayingURL.clear();
38 SubmissionURL.clear();
41 std::string Status;
42 std::string SessionID;
43 std::string NowPlayingURL;
44 std::string SubmissionURL;
47 #endif