sources from main repository

This commit is contained in:
Guenter Obiltschnig
2006-12-22 09:57:44 +00:00
parent 898be6c227
commit 851bd49554
22 changed files with 1554 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
//
// SMTPClientSession.h
//
// $Id: //poco/1.3/Net/include/Poco/Net/SMTPClientSession.h#1 $
// $Id: //poco/1.3/Net/include/Poco/Net/SMTPClientSession.h#2 $
//
// Library: Net
// Package: Mail
@@ -94,6 +94,15 @@ public:
void login();
/// Calls login(hostname) with the current host name.
void open();
/// Reads the initial response from the SMTP server.
///
/// Usually called implicitly through login(), but can
/// also be called explicitly to implement different forms
/// of SMTP authentication.
///
/// Does nothing if called more than once.
void close();
/// Sends a QUIT command and closes the connection to the server.
///