1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 13:39:10 +00:00
conky/ftp.h
Brenden Matthews a3106fac72 stuff
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@57 7f574dfc-610e-0410-a909-a81674777703
2005-08-05 01:06:17 +00:00

29 lines
798 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
*
* $Id$
*/
#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__ */