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 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
|
/*
* irc_std.h: This is where we make up for operating system lossage
* Originally written by Matthew Green, Copyright 1993
* Various modifications by various people since then.
*
* See the copyright file, or do a help ircii copyright
*/
#ifndef __irc_std_h
#define __irc_std_h
#include "defs.h"
/*
* Try to turn back the IPv6 monster at the gate
*/
#ifdef DO_NOT_USE_IPV6
# undef INET6
#else
# define INET6
#endif
/*
* Everybody needs these ANSI headers...
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <stdarg.h>
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif
/*
* Everybody needs these POSIX headers...
*/
#include <sys/types.h>
#include <unistd.h>
#include <signal.h>
#include <limits.h>
#include <sys/param.h>
#include <errno.h>
#include <sys/stat.h>
/*
* Everybody needs these INET headers...
*/
#ifdef USE_SOCKS5
# include <socks.h>
#endif
# include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#ifdef HAVE_NETDB_H
#include <netdb.h>
#endif
/*
* Some systems define tputs, etc in this header
*/
#ifdef HAVE_TERMCAP_H
#include <termcap.h>
#endif
/*
* Deal with brokenness in <time.h> and <sys/time.h>
*/
#ifdef TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# endif
#endif
/*
* Deal with brokenness in <fcntl.h> and <sys/fcntl.h>
*/
#ifdef HAVE_SYS_FCNTL_H
# include <sys/fcntl.h>
#else
# ifdef HAVE_FCNTL_H
# include <fcntl.h>
# endif
#endif
/*
* Deal with brokenness figuring out struct direct
*/
#if HAVE_DIRENT_H
# include <dirent.h>
# define NAMLEN(dirent) strlen((dirent)->d_name)
#else
# define dirent direct
# define NAMLEN(dirent) (dirent)->d_namlen
# if HAVE_SYS_NDIR_H
# include <sys/ndir.h>
# endif
# if HAVE_SYS_DIR_H
# include <sys/dir.h>
# endif
# if HAVE_NDIR_H
# include <ndir.h>
# endif
#endif
/*
* First try to figure out if we can use GNU CC special features...
*/
#ifndef __GNUC__
# define __inline__ /* delete gcc keyword */
# define __inline
# define __A(x)
# define __N
#else
# if (__GNUC__ >= 2) && (__GNUC_MINOR__ >= 7)
# define __A(x) __attribute__ ((format (printf, x, x + 1)))
# define __N __attribute__ ((noreturn))
# else
# define __A(x)
# define __N
# endif
#endif
/*
* Figure out how to make alloca work
* I took this from the autoconf documentation
*/
#if defined(__GNUC__) && !defined(HAVE_ALLOCA_H)
# ifndef alloca
# define alloca __builtin_alloca
# endif
#else
# if HAVE_ALLOCA_H
# include <alloca.h>
# else
# ifdef _AIX
#pragma alloca
# else
# ifndef alloca
char *alloca();
# endif
# endif
# endif
#endif
/*
* Define the MIN and MAX macros if they don't already exist.
*/
#ifndef MIN
# define MIN(a,b) (((a)<(b))?(a):(b))
#endif
#ifndef MAX
# define MAX(a,b) (((a)>(b))?(a):(b))
#endif
/*
* Deal with brokenness with sys_errlist.
*/
#ifndef HAVE_STRERROR
# ifndef SYS_ERRLIST_DECLARED
extern char *sys_errlist[];
# endif
#define strerror(x) sys_errlist[x]
#endif
/*
* Deal with brokenness with realpath.
*/
#ifdef HAVE_BROKEN_REALPATH
# define realpath my_realpath
#endif
/*
* Dont trust anyone else's NULLs.
*/
#ifdef NULL
#undef NULL
#endif
#define NULL (void *) 0
/*
* Make sure there is TRUE and FALSE
*/
#ifndef TRUE
#define TRUE 1
#define FALSE 0
#endif
/*
* Can you believe some systems done #define this?
* I was told that hurd doesn't, so this helps us on hurd.
*/
#ifndef MAXPATHLEN
# ifndef PATHSIZE
# define MAXPATHLEN 1024
# else
# define MAXPATHLEN PATHSIZE
# endif
#endif
/*
* Define generic macros for signal handlers and built in commands.
*/
typedef RETSIGTYPE sigfunc (int);
int block_signal (int);
int unblock_signal (int);
sigfunc *my_signal (int, sigfunc *);
#define SIGNAL_HANDLER(x) \
RETSIGTYPE x (int unused)
#define BUILT_IN_COMMAND(x) \
void x (const char *command, char *args, const char *subargs)
typedef char Filename[MAXPATHLEN + 1];
/*
* It's really really important that you never use LOCAL_COPY in the actual
* argument list of a function call, because bad things can happen. Always
* do your LOCAL_COPY as a separate step before you call a function.
*/
#define LOCAL_COPY(y) strcpy(alloca(strlen((y)) + 1), y)
#define SAFE(x) (((x) && *(x)) ? (x) : empty_string)
/*
* Deal with our brokenness wrt ANSI. Sigh.
*/
#ifndef HAVE_MEMMOVE
#define memmove(x, y, z) bcopy(y, x, z)
#endif
/*
* DCC specification requires exactly a 32 bit checksum.
* Kind of lame, actually.
*/
#ifdef UNSIGNED_LONG32
typedef unsigned long u_32int_t;
#else
# ifdef UNSIGNED_INT32
typedef unsigned int u_32int_t;
# else
typedef unsigned long u_32int_t;
# endif
#endif
/*
* Some systems (AIX) have sys/select.h, but dont include it from sys/types.h
* Some systems (Solaris) have sys/select.h, but include it from sys/types.h
* and dont want you to do it again. Some systems dont have sys/select.h
* Configure has this all figured out for us already.
*/
#if defined(HAVE_SYS_SELECT_H) && defined(NEED_SYS_SELECT_H)
#include <sys/select.h>
#endif
/*
* Now we deal with lame systems that dont have correct select()
* support (like aix 3.2.5, and older linux systems.)
*/
#ifndef NBBY
# define NBBY 8 /* number of bits in a byte */
#endif /* NBBY */
#ifndef NFDBITS
# define NFDBITS (sizeof(long) * NBBY) /* bits per mask */
#endif /* NFDBITS */
#ifndef FD_SETSIZE
#define FD_SETSIZE 256
#endif
#ifndef howmany
#define howmany(x, y) (((x) + ((y) - 1)) / (y))
#endif
#if defined(HAVE_SYS_SYSCTL_H)
#include <sys/sysctl.h>
#endif
/*
* Define an RFC2553 compatable "struct sockaddr_storage" if we do not
* already have one.
*/
#ifndef HAVE_STRUCT_SOCKADDR_STORAGE
struct sockaddr_storage {
#ifdef HAVE_SA_LEN
u_char ss_len;
u_char ss_family;
#else
u_short ss_family;
#endif
u_char padding[128 - 2];
};
#endif
#ifndef HAVE_SOCKLEN_T
typedef int socklen_t;
#endif
#ifndef HAVE_STRUCT_SOCKADDR_IN6
#undef INET6
#endif
#if !defined(HAVE_GETADDRINFO) || !defined(HAVE_GETNAMEINFO) || !defined(HAVE_STRUCT_ADDRINFO)
# define NEED_GAILIB
# undef INET6
# ifndef HAVE_GETADDRINFO
# define getaddrinfo getaddrinfo__compat
# define freeaddrinfo freeaddrinfo__compat
# define gai_strerror gai_strerror__compat
struct addrinfo__compat {
int ai_flags; /* AI_PASSIVE, AI_CANONNAME */
int ai_family; /* PF_xxx */
int ai_socktype; /* SOCK_xxx */
int ai_protocol; /* 0 or IPPROTO_xxx for IPv4 and IPv6 */
size_t ai_addrlen; /* length of ai_addr */
char *ai_canonname; /* canonical name for hostname */
struct sockaddr *ai_addr; /* binary address */
struct addrinfo__compat *ai_next; /* next structure in linked list */
};
# define addrinfo addrinfo__compat
# endif
# ifndef HAVE_GETNAMEINFO
# define getnameinfo getnameinfo__compat
# endif
# include "gailib.h"
#endif
/*
* Define some lazy shorthand typedefs for commonly used structures
*/
typedef struct sockaddr SA;
typedef struct sockaddr_storage SS;
typedef struct sockaddr_in ISA;
typedef struct in_addr IA;
#ifdef INET6
typedef struct sockaddr_in6 ISA6;
typedef struct sockaddr_in6 I6SA;
typedef struct in6_addr IA6;
typedef struct in6_addr I6A;
#endif
typedef struct addrinfo AI;
typedef struct hostent Hostent;
typedef struct timeval Timeval;
typedef struct stat Stat;
#endif /* __irc_std_h */
|