File: FTPSClientSession.h

package info (click to toggle)
poco 1.14.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 56,460 kB
  • sloc: cpp: 340,542; ansic: 245,601; makefile: 1,742; yacc: 1,005; sh: 698; sql: 312; lex: 282; xml: 128; perl: 29; python: 24
file content (111 lines) | stat: -rw-r--r-- 2,937 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
//
// FTPSClientSession.h
//
// Library: NetSSL_OpenSSL
// Package: FTPS
// Module:  FTPSClientSession
//
// Definition of the FTPSClientSession class.
//
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier:	BSL-1.0
//


#ifndef NetSSL_FTPSClientSession_INCLUDED
#define NetSSL_FTPSClientSession_INCLUDED


#include "Poco/Net/NetSSL.h"
#include "Poco/Net/Context.h"
#include "Poco/Net/FTPClientSession.h"


namespace Poco {
namespace Net {


class NetSSL_API FTPSClientSession: public Poco::Net::FTPClientSession
	/// This is an extension of FTPClientSession that supports
	/// FTP over SSL/TLS using the AUTH SSL/AUTH TLS and PBSZ/PROT
	/// commands according to RFC 4217.
{
public:
	FTPSClientSession();
		/// Creates an FTPSClientSession.
		///
		/// Passive mode will be used for data transfers.

	explicit FTPSClientSession(Context::Ptr pContext);
		/// Creates an FTPSClientSession using the given Context.
		///
		/// Passive mode will be used for data transfers.

	FTPSClientSession(const StreamSocket& socket, bool readWelcomeMessage = true, bool enableFTPS = true, Context::Ptr pContext = nullptr);
		/// Creates an FTPSClientSession using the given
		/// connected socket for the control connection.
		///
		/// Passive mode will be used for data transfers.

	FTPSClientSession(const std::string& host, Poco::UInt16 port = FTP_PORT, const std::string& username = "", const std::string& password = "", Context::Ptr pContext = nullptr);
		/// Creates an FTPSClientSession using a socket connected
		/// to the given host and port. If username is supplied,
		/// login is attempted.
		///
		/// Passive mode will be used for data transfers.

	virtual ~FTPSClientSession();

	void enableFTPS(bool enable = true);
		/// Enable or disable FTPS (FTP over SSL/TLS).

	bool isSecure() const;
		/// Returns true if the session is FTPS.

	void forceSessionReuse(bool force = true);
		/// Enable or disable session reusing

protected:
	virtual StreamSocket establishDataConnection(const std::string& command, const std::string& arg);
		/// Create secure data connection

	virtual void receiveServerReadyReply();
		/// Function that read server welcome message after connetion and set and make secure socket

private:
	void beforeCreateDataSocket();
		///Send commands to check if we can encrypt data socket

	void afterCreateControlSocket();
		///Send commands to make SSL negotiating of control channel

	bool _enableFTPS = true;
	bool _secureDataConnection = false;
	bool _forceSessionReuse = false;
	Context::Ptr _pContext;
};


//
// inlines
//
inline bool FTPSClientSession::isSecure() const
{
	if (_pControlSocket != nullptr)
		return _pControlSocket->secure();
	return false;
}


inline void FTPSClientSession::forceSessionReuse(bool force)
{
	_forceSessionReuse = force;
}


} } // namespace Poco::Net


#endif // #define NetSSL_FTPSClientSession_INCLUDED