Merge branch 'fixes' into main/rendor-staging
[ryzomcore.git] / nel / src / net / stdnet.h
blob6ced991a5fcc211e98a3a8502c0581ce7f902706
1 // NeL - MMORPG Framework <http://dev.ryzom.com/projects/nel/>
2 // Copyright (C) 2010 Winch Gate Property Limited
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU Affero General Public License as
6 // published by the Free Software Foundation, either version 3 of the
7 // License, or (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU Affero General Public License for more details.
14 // You should have received a copy of the GNU Affero General Public License
15 // along with this program. If not, see <http://www.gnu.org/licenses/>.
17 #ifndef NL_STDNET_H
18 #define NL_STDNET_H
20 #if defined(_MSC_VER) && defined(_DEBUG)
21 #define _CRTDBG_MAP_ALLOC
22 #include <stdlib.h>
23 #include <crtdbg.h>
24 #define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
25 #endif
27 #include <map>
28 #include <set>
29 #include <list>
30 #include <cmath>
31 #include <ctime>
32 #include <csignal>
33 #include <queue>
35 #include <deque>
36 #include <memory>
37 #include <string>
38 #include <vector>
39 #include <cstdio>
40 #include <utility>
41 #include <cstdlib>
42 #include <algorithm>
43 #include <exception>
44 #include <cctype>
45 #include <limits>
47 #include <errno.h>
49 #include "nel/misc/types_nl.h"
50 #include "nel/misc/debug.h"
51 #include "nel/misc/common.h"
52 #include "nel/misc/stream.h"
53 #include "nel/misc/time_nl.h"
54 #include "nel/misc/command.h"
55 #include "nel/misc/variable.h"
56 #include "nel/misc/mem_stream.h"
57 #include "nel/misc/hierarchical_timer.h"
59 #ifdef NL_OS_WINDOWS
60 # define WIN32_LEAN_AND_MEAN
61 # define _WIN32_WINDOWS 0x0500
62 # ifndef _WIN32_WINNT
63 # define _WIN32_WINNT 0x0500
64 # endif
65 # ifndef NL_COMP_MINGW
66 # define WINVER 0x0500
67 # define NOMINMAX
68 # endif
69 # include <WinSock2.h>
70 # include <Windows.h>
71 #endif
73 #endif