postlogin.h 317 B

123456789101112131415
  1. #ifndef VSF_POSTLOGIN_H
  2. #define VSF_POSTLOGIN_H
  3. struct vsf_session;
  4. /* process_post_login()
  5. * PURPOSE
  6. * Called to begin FTP protocol parsing for a logged in session.
  7. * PARAMETERS
  8. * p_sess - the current session object
  9. */
  10. void process_post_login(struct vsf_session* p_sess);
  11. #endif /* VSF_POSTLOGIN_H */