skstream
skstreamconfig.h
1 /**************************************************************************
2  FreeSockets - Portable C++ classes for IP(sockets) applications. (v0.3)
3  Copyright (C) 2000-2001 Rafael Guterres Jeffman
4  2002-2003 Al Riddoch <alriddoch@zepler.org>
5 
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10 
11  This program is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with this program; if not, write to the Free Software
18  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 
20 **************************************************************************/
21 
29 #ifndef RGJ_FREE_SOCKET_CONFIG_H_
30 #define RGJ_FREE_SOCKET_CONFIG_H_
31 
32 #include <unistd.h>
33 #include <sys/time.h>
34 
35 #if 0
36  // No windows headers required yet.
37 #endif
38 #if 1
39  #include <sys/socket.h>
40  #include <netinet/in.h>
41 #endif
42 
43 typedef socklen_t SOCKLEN;
44 typedef int SOCKET_TYPE;
45 
46 #define SOCKET_BLOCK_ERROR EINPROGRESS
47 
48 #endif // RGJ_FREE_SOCKET_CONFIG_H_