Remove duplicated filecopy.h header

The same also exists as libqubes-rpc-filecopy.h.
release2
Marek Marczykowski-Górecki 11 years ago
parent c5c3448d91
commit 138d7899d9

@ -1,6 +1,6 @@
#include <unistd.h>
#include <ioall.h>
#include "filecopy.h"
#include "libqubes-rpc-filecopy.h"
#include "crc32.h"
extern void notify_progress(int, int);

@ -1,32 +0,0 @@
#define FILECOPY_SPOOL "/home/user/.filecopyspool"
#define FILECOPY_VMNAME_SIZE 32
#define PROGRESS_NOTIFY_DELTA (15*1000*1000)
#define MAX_PATH_LENGTH 16384
#define LEGAL_EOF 31415926
struct file_header {
unsigned int namelen;
unsigned int mode;
unsigned long long filelen;
unsigned int atime;
unsigned int atime_nsec;
unsigned int mtime;
unsigned int mtime_nsec;
};
struct result_header {
unsigned int error_code;
unsigned long crc32;
};
enum {
COPY_FILE_OK,
COPY_FILE_READ_EOF,
COPY_FILE_READ_ERROR,
COPY_FILE_WRITE_ERROR
};
int copy_file(int outfd, int infd, long long size, unsigned long *crc32);
char *copy_file_status_to_str(int status);
void set_size_limit(long long new_bytes_limit, long long new_files_limit);

@ -7,7 +7,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include "filecopy.h"
#include "libqubes-rpc-filecopy.h"
#include "crc32.h"
char untrusted_namebuf[MAX_PATH_LENGTH];

Loading…
Cancel
Save