Command line: astyle --style=kr --indent=force-tab=4 --lineend=linux -n -r <file names>
53 lines
1.9 KiB
C++
53 lines
1.9 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2007 by Lothar May *
|
|
* *
|
|
* 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 the *
|
|
* Free Software Foundation, Inc., *
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
***************************************************************************/
|
|
/* Socket helper defines. */
|
|
#ifndef _SOCKET_HELPER_H_
|
|
#define _SOCKET_HELPER_H_
|
|
|
|
#ifndef bzero
|
|
#include <cstring>
|
|
#define bzero(_ptr, _n) std::memset(_ptr, 0, _n)
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
|
|
#ifdef __GNUC__ /* mingw provides stdint.h */
|
|
#include <stdint.h>
|
|
typedef uint16_t u_int16_t;
|
|
typedef uint32_t u_int32_t;
|
|
#else
|
|
typedef unsigned __int16 u_int16_t;
|
|
typedef unsigned __int32 u_int32_t;
|
|
typedef __int16 int16_t;
|
|
typedef __int32 int32_t;
|
|
#endif
|
|
|
|
typedef unsigned char u_char;
|
|
|
|
#else
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif // _WIN32
|
|
|
|
#define MAX_ADDR_STRING_LEN 256
|
|
|
|
#endif
|
|
|