Click here to Skip to main content
15,885,032 members
Articles / Desktop Programming / MFC

The Ultimate TCP/IP Home Page

Rate me:
Please Sign up or sign in to vote.
4.98/5 (77 votes)
25 Aug 2007CPOL13 min read 2.6M   45.4K   267  
Ultimate TCP-IP is now Open Source
// =================================================================
//  class: CMyAccessControl
//  File:  MyAccessControl.cpp
//  
//  Purpose:
//
//	 Override the default Server access control class
//       
// ===================================================================
// Ultimate TCP-IP v4.2
// This software along with its related components, documentation and files ("The Libraries")
// is � 1994-2007 The Code Project (1612916 Ontario Limited) and use of The Libraries is
// governed by a software license agreement ("Agreement").  Copies of the Agreement are
// available at The Code Project (www.codeproject.com), as part of the package you downloaded
// to obtain this file, or directly from our office.  For a copy of the license governing
// this software, you may contact us at legalaffairs@codeproject.com, or by calling 416-849-8900.
// ===================================================================

// in the stdafx we defined two macro the 
// MYACCESS_CONTROL_HEADER and CUT_ACCESSCONTROL_BASE_CLASS
// The CUT_ACCESSCONTROL_BASE_CLASS will define the base class which the 
// m_aclObj	 is instantiated from
// this public variabl of CUT_WSServer class will control 
// who has access to the server 
// it also define the mechanism in approving the client as if we should accept the connection 
// or reject it
#include "stdafx.h"
#include "MyAccessControl.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CMyAccessControl::CMyAccessControl()
{

}

CMyAccessControl::~CMyAccessControl()
{

}
//	If you want to control mechanism of delaying and approving the connection 
//	you can override this function 
// 
//
time_t	CMyAccessControl::OnCalcTempBlockTime(in_addr &ipAddress, long lBlockCounter, time_t timeBlockOldExpiry)
{
	return CUT_AccessControl::OnCalcTempBlockTime(ipAddress, lBlockCounter, timeBlockOldExpiry);
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Canada Canada
In January 2005, David Cunningham and Chris Maunder created TheUltimateToolbox.com, a new group dedicated to the continued development, support and growth of Dundas Software’s award winning line of MFC, C++ and ActiveX control products.

Ultimate Grid for MFC, Ultimate Toolbox for MFC, and Ultimate TCP/IP have been stalwarts of C++/MFC development for a decade. Thousands of developers have used these products to speed their time to market, improve the quality of their finished products, and enhance the reliability and flexibility of their software.
This is a Organisation

476 members

Comments and Discussions