1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 13:39:10 +00:00
conky/ftp.h

27 lines
786 B
C

/*
* ftp.h: interface for basic handling of an FTP command connection
* to check for directory availability. No transfer is needed.
*
* Reference: RFC 959
*/
#ifndef __MIRRORS_FTP_H__
#define __MIRRORS_FTP_H__
typedef void (*ftpListCallback) (void *userData,
const char *filename, const char *attrib,
const char *owner, const char *group,
unsigned long size, int links, int year,
const char *month, int day, int minute);
typedef void (*ftpDataCallback) (void *userData,
const char *data, int len);
extern void initFtp(void);
extern int connectFtp(const char *server, int port);
extern int changeFtpDirectory(char *directory);
extern int disconnectFtp(void);
int getFtp(ftpDataCallback, void *, const char *);
#endif /* __MIRRORS_FTP_H__ */