summaryrefslogtreecommitdiffstats
path: root/src/pacsync.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pacsync.h')
-rw-r--r--src/pacsync.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pacsync.h b/src/pacsync.h
index abb657f8..fe9b5ba3 100644
--- a/src/pacsync.h
+++ b/src/pacsync.h
@@ -1,5 +1,5 @@
/*
- * pacman
+ * pacsync.h
*
* Copyright (c) 2002 by Judd Vinet <jvinet@zeroflux.org>
*
@@ -23,7 +23,7 @@
/* Servers */
typedef struct __server_t {
- unsigned short islocal;
+ char* protocol;
char* server;
char* path;
} server_t;
@@ -44,11 +44,12 @@ typedef struct __dbsync_t {
typedef struct __syncpkg_t {
pkginfo_t *pkg;
dbsync_t *dbs;
+ PMList *replaces;
} syncpkg_t;
int sync_synctree();
int downloadfiles(PMList *servers, char *localpath, PMList *files);
-int is_pkginsync(syncpkg_t *needle, PMList *haystack);
+syncpkg_t* find_pkginsync(char *needle, PMList *haystack);
#endif