在VxWorks Image Project的kernel configuration中增加FTP Server组件(INCLUDE_IPFTPS)
- 将Authentication callback routine (FTPS_AUTH_CALLBACK_HOOK)挂到自己的回调函数myAuthenticateCallback;
- 将FTP initial directory 定义为"/tffs0";将FTP root directory定义为"/";
- 将install ftp server callback routine (FTPS_INSTALL_CALLBACK_HOOK)定义为TRUE;
将下面的代码copy到usrAppInit.c,放在usrAppInit()前
#include "iprip.h" #include "ipftps.h" int myAuthenticateCallback (Ipftps_session * session,char * password) { return 0; }
如果需要密码验证,可以修改myAuthenticateCallback函数如下
int myAuthenticateCallback (Ipftps_session * session,char * password) { if ( (strcmp (session->username, "abc") == 0)&& (strcmp (password, "123") == 0)) return 0; else return -1; }