2001-02-21 19:35:06 +00:00
|
|
|
/*
|
|
|
|
compat.h
|
|
|
|
|
|
|
|
Miscellaneous compability stuff
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __compat_h
|
|
|
|
#define __compat_h
|
|
|
|
|
|
|
|
#ifdef HAVE_STDARG_H
|
|
|
|
# include <stdarg.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
# include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2002-06-26 22:20:12 +00:00
|
|
|
|
2001-02-21 19:35:06 +00:00
|
|
|
#ifndef max
|
|
|
|
# define max(a,b) ((a) > (b) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
#ifndef min
|
|
|
|
# define min(a,b) ((a) < (b) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
#ifndef bound
|
|
|
|
# define bound(a,b,c) (max(a, min(b, c)))
|
|
|
|
#endif
|
|
|
|
/* This fixes warnings when compiling with -pedantic */
|
|
|
|
#if defined(__GNUC__) && !defined(inline)
|
|
|
|
# define inline __inline__
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* These may be underscored... */
|
2002-03-03 06:03:51 +00:00
|
|
|
#if defined(HAVE__SNPRINTF) && !defined(HAVE_SNPRINTF)
|
2001-10-17 10:41:25 +00:00
|
|
|
# undef snprintf
|
2002-01-03 23:24:47 +00:00
|
|
|
# define snprintf Q_snprintfz
|
2002-01-19 20:45:45 +00:00
|
|
|
# define need_qstring_h
|
2001-02-21 19:35:06 +00:00
|
|
|
#endif
|
2002-03-03 06:03:51 +00:00
|
|
|
#if defined(HAVE__VSNPRINTF) && !defined(HAVE_VSNPRINTF)
|
2001-10-17 10:41:25 +00:00
|
|
|
# undef vsnprintf
|
2002-01-03 23:24:47 +00:00
|
|
|
# define vsnprintf Q_vsnprintfz
|
2002-01-19 20:45:45 +00:00
|
|
|
# define need_qstring_h
|
2001-02-21 19:35:06 +00:00
|
|
|
#endif
|
|
|
|
#if defined(_WIN32) && !defined(__BORLANDC__)
|
|
|
|
# define kbhit _kbhit
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* If we don't have them in the C-library we declare them to avoid warnings */
|
|
|
|
#if ! (defined(HAVE_SNPRINTF) || defined(HAVE__SNPRINTF))
|
|
|
|
extern int snprintf(char * s, size_t maxlen, const char *format, ...);
|
|
|
|
#endif
|
|
|
|
#if ! (defined(HAVE_VSNPRINTF) || defined(HAVE__VSNPRINTF))
|
|
|
|
extern int vsnprintf(char *s, size_t maxlen, const char *format, va_list arg);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* String utility functions */
|
|
|
|
#if !defined(strequal)
|
|
|
|
# define strequal(a,b) (strcmp (a, b) == 0)
|
|
|
|
#endif
|
|
|
|
#if !defined(strcaseequal)
|
|
|
|
# define strcaseequal(a,b) (strcasecmp (a, b) == 0)
|
|
|
|
#endif
|
|
|
|
#if !defined(strnequal)
|
|
|
|
# define strnequal(a,b,c) (strncmp (a, b, c) == 0)
|
|
|
|
#endif
|
|
|
|
#if !defined(strncaseequal)
|
|
|
|
# define strncaseequal(a,b,c) (strncasecmp (a, b, c) == 0)
|
|
|
|
#endif
|
2002-02-06 19:06:05 +00:00
|
|
|
#ifdef HAVE_STRCASESTR
|
|
|
|
# ifndef HAVE_STRCASESTR_PROTO
|
|
|
|
extern char *strcasestr (const char *__haystack, const char *__needle);
|
|
|
|
# endif
|
|
|
|
#else
|
- fix a little mistake in SV_PrintToClient that'd cause it to
segfault if your first call was with "". Probably could cause
crashes too
- add a string.c file to libQFutil, with a Q_strcasestr function,
which strcasestr is defined to if it's not already defined. (we'd
get that with glibc if we defined __USE_GNU, but we don't)
- make client_t and SV_ExtractFromUserinfo both use NAME_MAX for
their name arrays, instead of 32 for one and 80 for the other
- rewrite almost all of SV_ExtractFromUserinfo's name handling.
- \r, \n, and \t are all converted to spaces
- leading/trailing spaces are stripped
- consecutive spaces are reduced to a single space
- empty names are considered bad
- user-* nicks are considered bad (unless forced to them)
- a name containing console or admin is considered bad
- a name that already exists is considered bad
- if they have a bad name it gets forced to user-%d, where %d is
their userid
- netname in the progs is now updated properly
- name changes are always reported unless it's the initial setting,
rather than only if they're full connected and not a spectator
- finally, if the name change fails (info string exceeded), give
them the boot. (before this was only done for duplicate names)
That's about it :)
2001-10-04 19:11:39 +00:00
|
|
|
# define strcasestr Q_strcasestr
|
2001-12-13 20:44:32 +00:00
|
|
|
# define need_qstring_h
|
- fix a little mistake in SV_PrintToClient that'd cause it to
segfault if your first call was with "". Probably could cause
crashes too
- add a string.c file to libQFutil, with a Q_strcasestr function,
which strcasestr is defined to if it's not already defined. (we'd
get that with glibc if we defined __USE_GNU, but we don't)
- make client_t and SV_ExtractFromUserinfo both use NAME_MAX for
their name arrays, instead of 32 for one and 80 for the other
- rewrite almost all of SV_ExtractFromUserinfo's name handling.
- \r, \n, and \t are all converted to spaces
- leading/trailing spaces are stripped
- consecutive spaces are reduced to a single space
- empty names are considered bad
- user-* nicks are considered bad (unless forced to them)
- a name containing console or admin is considered bad
- a name that already exists is considered bad
- if they have a bad name it gets forced to user-%d, where %d is
their userid
- netname in the progs is now updated properly
- name changes are always reported unless it's the initial setting,
rather than only if they're full connected and not a spectator
- finally, if the name change fails (info string exceeded), give
them the boot. (before this was only done for duplicate names)
That's about it :)
2001-10-04 19:11:39 +00:00
|
|
|
#endif
|
2002-02-06 19:06:05 +00:00
|
|
|
#ifdef HAVE_STRNLEN
|
|
|
|
# ifndef HAVE_STRNLEN_PROTO
|
|
|
|
size_t strnlen (const char *str, size_t len);
|
|
|
|
# endif
|
|
|
|
#else
|
2001-10-18 04:44:58 +00:00
|
|
|
# define strnlen Q_strnlen
|
2001-12-13 20:44:32 +00:00
|
|
|
# define need_qstring_h
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef need_qstring_h
|
|
|
|
# include "qstring.h"
|
2001-10-18 04:44:58 +00:00
|
|
|
#endif
|
2001-02-21 19:35:06 +00:00
|
|
|
|
2001-05-31 18:11:05 +00:00
|
|
|
#undef field_offset
|
2001-11-16 01:09:17 +00:00
|
|
|
#define field_offset(type,field) ((size_t)&(((type *)0)->field))
|
2001-05-31 18:11:05 +00:00
|
|
|
|
2001-02-21 19:35:06 +00:00
|
|
|
#endif // __compat_h
|