hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/**********
This library is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 3 of the License, or (at your
option) any later version. (See <http://www.gnu.org/copyleft/lesser.html>.)
 
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for
more details.
 
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
**********/
/* "groupsock" interface
 * Copyright (c) 1996-2017 Live Networks, Inc.  All rights reserved.
 * Common include files, typically used for networking
 */
 
#ifndef _NET_COMMON_H
#define _NET_COMMON_H
 
#if defined(__WIN32__) || defined(_WIN32) || defined(_WIN32_WCE)
    /* Windows */
    #if defined(WINNT) || defined(_WINNT) || defined(__BORLANDC__) || defined(__MINGW32__) || defined(_WIN32_WCE) ||   \
        defined(_MSC_VER)
        #define _MSWSOCK_
        #include <winsock2.h>
        #include <ws2tcpip.h>
    #endif
    #include <windows.h>
    #include <errno.h>
    #include <string.h>
 
    #define closeSocket closesocket
    #ifdef EWOULDBLOCK
        #undef EWOULDBLOCK
    #endif
    #ifdef EINPROGRESS
        #undef EINPROGRESS
    #endif
    #ifdef EAGAIN
        #undef EAGAIN
    #endif
    #ifdef EINTR
        #undef EINTR
    #endif
    #define EWOULDBLOCK WSAEWOULDBLOCK
    #define EINPROGRESS WSAEWOULDBLOCK
    #define EAGAIN WSAEWOULDBLOCK
    #define EINTR WSAEINTR
 
    #if defined(_WIN32_WCE)
        #define NO_STRSTREAM 1
    #endif
 
/* Definitions of size-specific types: */
typedef __int64 int64_t;
typedef unsigned __int64 u_int64_t;
 
typedef int int32_t;
typedef unsigned u_int32_t;
 
typedef short int16_t;
typedef unsigned short u_int16_t;
 
typedef unsigned char u_int8_t;
 
    // For "uintptr_t" and "intptr_t", we assume that if they're not already defined, then this must be
    // an old, 32-bit version of Windows:
    #if !defined(_MSC_STDINT_H_) && !defined(_UINTPTR_T_DEFINED) && !defined(_UINTPTR_T_DECLARED) &&                   \
        !defined(_UINTPTR_T)
typedef unsigned uintptr_t;
    #endif
    #if !defined(_MSC_STDINT_H_) && !defined(_INTPTR_T_DEFINED) && !defined(_INTPTR_T_DECLARED) && !defined(_INTPTR_T)
typedef int intptr_t;
    #endif
 
#elif defined(VXWORKS)
    /* VxWorks */
    #include <time.h>
    #include <timers.h>
    #include <sys/times.h>
    #include <sockLib.h>
    #include <hostLib.h>
    #include <resolvLib.h>
    #include <ioLib.h>
 
typedef unsigned int u_int32_t;
typedef unsigned short u_int16_t;
typedef unsigned char u_int8_t;
 
#else
    /* Unix */
    #include <sys/types.h>
    #include <sys/socket.h>
    //#include <sys/time.h>
    #include <netinet/in.h>
    #include <arpa/inet.h>
    #include <netdb.h>
    #include <unistd.h>
    #include <string.h>
    #include <stdlib.h>
    #include <errno.h>
    #include <strings.h>
    #include <ctype.h>
    #include <stdint.h>
    #if defined(_QNX4)
        #include <sys/select.h>
        #include <unix.h>
    #endif
 
    #define closeSocket close
 
    #ifdef SOLARIS
        #define u_int64_t uint64_t
        #define u_int32_t uint32_t
        #define u_int16_t uint16_t
        #define u_int8_t uint8_t
    #endif
#endif
 
#ifndef SOCKLEN_T
    #define SOCKLEN_T int
#endif
 
#endif