コード例 #1
0
ファイル: reader.cpp プロジェクト: arrrrrrr/ebftpd
Reader::Reader(ftp::Client& client, const std::vector<std::string>& argv) :
  client(client), open(false)
{
  util::ProcessReader::ArgvType env;
  client.Child().Open(argv[0], argv, BuildEnv(client));
  open = true;
}
コード例 #2
0
ファイル: util.cpp プロジェクト: glftpd/ebftpd
std::vector<std::string> BuildEnv(ftp::Client& client)
{
  std::ostringstream os;
  os << "USER="******"\n"
     << "UID=" << client.User().ID() << "\n"
     << "FLAGS=" << client.User().Flags() << "\n"
     << "TAGLINE=" << client.User().Tagline() << "\n"
     << "GROUP=" << client.User().PrimaryGroup() << "\n"
     << "GID=" << client.User().PrimaryGID() << "\n"
     << "HOST=" << client.Ident() << "@" << client.IP();
  
  std::string envStr(os.str());
  std::vector<std::string> env;
  util::Split(env, envStr, "\n", true);
  return env;
}
コード例 #3
0
ファイル: retr.hpp プロジェクト: glftpd/ebftpd
 RETRCommand(ftp::Client& client, const std::string& argStr, const Args& args) :
   Command(client, client.Control(), client.Data(), argStr, args) { }
コード例 #4
0
ファイル: chown.hpp プロジェクト: arrrrrrr/ebftpd
 CHOWNCommand(ftp::Client& client, const std::string& argStr, const Args& args) :
   Command(client, client.Control(), client.Data(), argStr, args),
   owner(-1, -1), recursive(false), dirs(0), files(0), failed(0) { }
コード例 #5
0
ファイル: adduser.hpp プロジェクト: arrrrrrr/ebftpd
 ADDUSERCommand(ftp::Client& client, const std::string& argStr, const Args& args) :
   Command(client, client.Control(), client.Data(), argStr, args), gadmin(false) { }
コード例 #6
0
ファイル: logs.hpp プロジェクト: cm277/ebftpd
 LOGSCommand(ftp::Client& client, const std::string& argStr, const Args& args) :
   Command(client, client.Control(), client.Data(), argStr, args),
   number(defaultNumberLines) { }