// Copyright (c) 2010 Martin Knafve / hMailServer.com. // http://www.hmailserver.com #include "stdafx.h" #include "ClientInfo.h" #ifdef _DEBUG #define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__) #define new DEBUG_NEW #endif namespace HM { ClientInfo::ClientInfo() : port_(0), session_(0), is_authenticated_(false), is_encryptedconnection_(false), cipher_bits_(0) { } ClientInfo::~ClientInfo() { } }