Click here to Skip to main content
15,885,839 members
Articles / Programming Languages / C++

Small and Reliable C++ HTTP Server with Complete ASP.NET Support

Rate me:
Please Sign up or sign in to vote.
4.78/5 (24 votes)
5 Feb 2009CPOL8 min read 74.1K   1.6K   81  
This article describes results of ahttpserver evolution - implementation of ASP.NET handler and many architecture improvements
/*
This file is part of [aconnect] library. 

Author: Artem Kustikov (kustikoff[at]tut.by)
version: 0.19

This code is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this code.

Permission is granted to anyone to use this code for any
purpose, including commercial applications, and to alter it and
redistribute it freely, subject to the following restrictions:

1. The origin of this code must not be misrepresented; you must
not claim that you wrote the original code. If you use this
code in a product, an acknowledgment in the product documentation
would be appreciated but is not required.

2. Altered source versions must be plainly marked as such, and
must not be misrepresented as being the original code.

3. This notice may not be removed or altered from any source
distribution.
*/

#ifndef ACONNECT_COMPLEX_TYPES_H
#define ACONNECT_COMPLEX_TYPES_H

#include <vector>
#include <map>
#include <sstream>

#include "types.hpp"

namespace aconnect
{

	struct lessStringIgnoreCase
		: public std::binary_function<string, string, bool>
	{	
		bool operator()(const string& left, const string& right) const
		{	
			return (stricmp (left.c_str(), right.c_str()) < 0);
		}
	};

	struct lessString
		: public std::binary_function<string, string, bool>
	{	
		bool operator()(const string& left, const string& right) const
		{	
			return (strcmp (left.c_str(), right.c_str()) < 0);
		}
	};


	

	typedef std::map <string, string, lessString>			str2str_map;
	typedef std::map <string, string, lessStringIgnoreCase>	str2str_map_ci;
	typedef std::vector <string>				str_vector;
	typedef std::stringstream					str_stream;

}

#endif // ACONNECT_COMPLEX_TYPES_H

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
Software Developer (Senior)
Belarus Belarus
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions