1 #ifndef VSF_STANDALONE_H
2 #define VSF_STANDALONE_H
4 struct vsf_client_launch
6 unsigned int num_children
;
7 unsigned int num_this_ip
;
10 /* vsf_standalone_main()
12 * This function starts listening on the network for incoming FTP connections.
13 * When it gets one, it returns to the caller in a new process, with file
14 * descriptor 0, 1 and 2 set to the network socket of the new client.
17 * Returns a structure representing the current number of clients, and
18 * instances for this IP addresss.
20 struct vsf_client_launch
vsf_standalone_main(void);
22 #endif /* VSF_STANDALONE_H */