PDA

View Full Version : [HELP] Communication with C/C++ program


yixin
07-07-2009, 03:23 AM
I`m in a software project in which we will use FTP server. So I`m wondering if ioFTPD can be interactive with C/C++ program?

For example:
add an user using C program
and
if the server can send my program a signal when a client upload a file?

thanks~

Yil
07-07-2009, 08:51 AM
Yup. Receiving notification for server events is easy. You can trigger a .exe or a TCL script to run when any number of things happen. To send events to the server you can either use any FTP client library and send site commands, or you can use the shared memory interface to get/send info that way. I myself have little experience with the shared memory interface but the /source directory has 2 examples.