2006-10-15 18:21:58 -04:00
|
|
|
/*
|
|
|
|
* server.h
|
|
|
|
*
|
|
|
|
* Copyright (c) 2006 by Miklos Vajna <vmiklos@frugalware.org>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* (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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
#ifndef _ALPM_SERVER_H
|
|
|
|
#define _ALPM_SERVER_H
|
|
|
|
|
2007-01-19 04:28:44 -05:00
|
|
|
#include "alpm_list.h"
|
2006-11-20 04:10:23 -05:00
|
|
|
#include "alpm.h"
|
2006-10-31 01:39:59 -05:00
|
|
|
|
2006-11-20 04:10:23 -05:00
|
|
|
#include <time.h>
|
2006-11-14 02:58:42 -05:00
|
|
|
#include <download.h>
|
2006-10-15 18:21:58 -04:00
|
|
|
|
|
|
|
/* Servers */
|
2006-11-20 04:10:23 -05:00
|
|
|
struct __pmserver_t {
|
2007-02-09 05:10:49 -05:00
|
|
|
/* useless abstraction now? */
|
2006-10-31 01:39:59 -05:00
|
|
|
struct url *s_url;
|
2006-11-20 04:10:23 -05:00
|
|
|
};
|
2006-10-15 18:21:58 -04:00
|
|
|
|
2006-10-31 01:39:59 -05:00
|
|
|
#define PM_DLBUF_LEN (1024 * 10)
|
|
|
|
|
2006-11-08 03:14:29 -05:00
|
|
|
pmserver_t *_alpm_server_new(const char *url);
|
2007-04-26 20:23:03 -04:00
|
|
|
void _alpm_server_free(pmserver_t *server);
|
2007-01-19 04:28:44 -05:00
|
|
|
int _alpm_downloadfiles(alpm_list_t *servers, const char *localpath, alpm_list_t *files);
|
|
|
|
int _alpm_downloadfiles_forreal(alpm_list_t *servers, const char *localpath,
|
|
|
|
alpm_list_t *files, const char *mtime1, char *mtime2);
|
2006-10-15 18:21:58 -04:00
|
|
|
|
|
|
|
#endif /* _ALPM_SERVER_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|