home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume38
/
libftp
/
part01
/
FtpLogin.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-07-13
|
480b
|
25 lines
#include "FtpLibrary.h"
STATUS FtpLogin ( FTP ** con, char * host , char * user ,
char * password , char * account)
{
STATUS x;
if ( (x=FtpConnect(con,host)) < 1)
return x;
if ( (x=FtpUser(*con,user)) < 1)
return x;
if ( x==230 )
return x;
if ( x==332)
{
if ( account == NULL )
return EXIT((*con),x);
if ( (x=FtpAccount( *con , account )) < 1 )
return x;
if ( x==230 )
return x;
}
return FtpPassword(*con,password);
}