summaryrefslogtreecommitdiff
path: root/include/ftp/handshake_params.hpp
blob: a616c20d1e3635da1c0a6979ecaf2ba23848f8ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _HANDSHAKE_PARAMS_HPP_
#define _HANDSHAKE_PARAMS_HPP_

#include <string>

namespace ftp {
class handshake_params
{
  std::string host_;
  std::string username_;
  std::string password_;
  int port;
};
}  // namespace ftp

#endif  // !_HANDSHAKE_PARAMS_HPP_