2002-08-09 18:03:48 +00:00
|
|
|
/*
|
2003-09-03 02:09:29 +00:00
|
|
|
* pacsync.h
|
2002-08-09 18:03:48 +00:00
|
|
|
*
|
2004-03-02 04:49:15 +00:00
|
|
|
* Copyright (c) 2002-2004 by Judd Vinet <jvinet@zeroflux.org>
|
2002-08-09 18:03:48 +00:00
|
|
|
*
|
|
|
|
* 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 _PAC_PACSYNC_H
|
|
|
|
#define _PAC_PACSYNC_H
|
|
|
|
|
2003-05-30 19:56:46 +00:00
|
|
|
/* Servers */
|
2002-09-16 05:22:13 +00:00
|
|
|
typedef struct __server_t {
|
2003-09-03 02:09:29 +00:00
|
|
|
char* protocol;
|
2002-09-16 05:22:13 +00:00
|
|
|
char* server;
|
|
|
|
char* path;
|
|
|
|
} server_t;
|
|
|
|
|
2003-05-30 19:56:46 +00:00
|
|
|
/* Repositories */
|
2002-09-16 05:22:13 +00:00
|
|
|
typedef struct __sync_t {
|
|
|
|
char* treename;
|
|
|
|
PMList *servers;
|
|
|
|
} sync_t;
|
|
|
|
|
|
|
|
/* linking structs */
|
|
|
|
typedef struct __dbsync_t {
|
|
|
|
pacdb_t *db;
|
|
|
|
sync_t *sync;
|
|
|
|
PMList *pkgcache;
|
|
|
|
} dbsync_t;
|
|
|
|
|
|
|
|
typedef struct __syncpkg_t {
|
|
|
|
pkginfo_t *pkg;
|
|
|
|
dbsync_t *dbs;
|
2003-09-03 02:09:29 +00:00
|
|
|
PMList *replaces;
|
2002-09-16 05:22:13 +00:00
|
|
|
} syncpkg_t;
|
|
|
|
|
2002-08-09 18:03:48 +00:00
|
|
|
int sync_synctree();
|
2004-04-15 05:05:54 +00:00
|
|
|
int downloadfiles(PMList *servers, const char *localpath, PMList *files);
|
2003-09-03 02:09:29 +00:00
|
|
|
syncpkg_t* find_pkginsync(char *needle, PMList *haystack);
|
2002-08-09 18:03:48 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|