This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbsebbs/transfer.h

40 lines
753 B
C
Raw Normal View History

2004-11-05 15:54:31 +00:00
#ifndef _TRANSFER_H
#define _TRANSFER_H
/* $Id$ */
/*
* List of files to download.
*/
typedef struct _down_list {
struct _down_list *next;
char *local; /* Local filename */
char *remote; /* Remove filename */
long cps; /* CPS after sent */
2004-11-05 21:14:04 +00:00
unsigned long size; /* File size */
2004-11-05 15:54:31 +00:00
unsigned kfs : 1; /* Kill File Sent */
unsigned sent : 1; /* File is Sent */
} down_list;
/*
* List of uploaded files.
*/
typedef struct _up_list {
struct _up_list *next;
char *remote; /* Remote filename */
char *local; /* Local filename */
long cps; /* CPS after received */
unsigned success : 1; /* If received Ok. */
} up_list;
2004-11-05 21:14:04 +00:00
int ForceProtocol(void);
2004-11-05 15:54:31 +00:00
2004-11-05 21:14:04 +00:00
int download(down_list *);
int upload(up_list *);
2004-11-05 15:54:31 +00:00
#endif