OSDN Git Service

80ac2ddf9d7a170c8fc7434f0bc17122c542bbdf
[peercast-im/PeerCastIM.git] / c: / Git / PeerCast.root / PeerCast_1 / core / common / socket.cpp
1 // ------------------------------------------------
2 // File : socket.cpp
3 // Date: 4-apr-2002
4 // Author: giles
5 // Desc: 
6 //              ClientSocket is a generic socket interface, Non OS/HW dependant.
7 //              
8 // (c) 2002 peercast.org
9 // ------------------------------------------------
10 // This program is free software; you can redistribute it and/or modify
11 // it under the terms of the GNU General Public License as published by
12 // the Free Software Foundation; either version 2 of the License, or
13 // (at your option) any later version.
14
15 // This program is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 // GNU General Public License for more details.
19 // ------------------------------------------------
20
21
22 #include <stdio.h>
23 #include <string.h>
24 #include "socket.h"
25 #include "sys.h"
26 #ifdef _DEBUG
27 #include "chkMemoryLeak.h"
28 #define DEBUG_NEW new(__FILE__, __LINE__)
29 #define new DEBUG_NEW
30 #endif
31
32