flep 0.2.0

File transfer protocol (FTP) library
Documentation
1
2
3
4
5
6
7
use {Error, protocol};
use server::client::Action;

/// Handle the 'FEAT' command.
pub fn handle() -> Result<Action, Error> {
    Ok(Action::Reply(protocol::reply::feat::Features::default().into()))
}