www.pudn.com > Ftpwork > main.cpp
#ifdef HAVE_CONFIG_H #include#endif #include #include #include #include "FtpApp.h" int main(int argc, char *argv[]) { if(argc < 2) { fprintf(stderr,"Please put IP of the Server as parement!\n"); exit(1); } FtpApp theApp; theApp.Start(argv[1]); return EXIT_SUCCESS; }