opts.c
上传用户:ig0539
上传日期:2022-05-21
资源大小:181k
文件大小:0k
- /*
- * Part of Very Secure FTPd
- * Licence: GPL v2
- * Author: Chris Evans
- * opts.c
- *
- * Routines to handle OPTS.
- */
- #include "ftpcodes.h"
- #include "ftpcmdio.h"
- #include "session.h"
- void
- handle_opts(struct vsf_session* p_sess)
- {
- str_upper(&p_sess->ftp_arg_str);
- if (str_equal_text(&p_sess->ftp_arg_str, "UTF8 ON"))
- {
- vsf_cmdio_write(p_sess, FTP_OPTSOK, "Always in UTF8 mode.");
- }
- else
- {
- vsf_cmdio_write(p_sess, FTP_BADOPTS, "Option not understood.");
- }
- }