mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-05 21:07:52 +00:00
4d1d328de9
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@5 7f574dfc-610e-0410-a909-a81674777703
27 lines
838 B
C
27 lines
838 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__ */
|