Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
platform.h 1.22 KiB
/******************************************************************************
 * Copyright (c) 2000-2020 Ericsson Telecom AB
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
 *
 * Contributors:
 *   Balasko, Jeno
 *   Raduly, Csaba
 *   Szabados, Kristof
 *
 ******************************************************************************/
#ifndef PLATFORM_H_
#define PLATFORM_H_

#include <sys/socket.h>

/* Create a unified alias for socklen_t */

#if defined(SOLARIS)
/* Has no socklen_t at all, man page claims to use size_t. However, size_t
 * 1. is slightly broken, see
 * http://portabilityblog.com/blog/archives/7-socklen_t-confusion.html
 * 2. is used _only_ if _XPG4_2 is defined.
 * Since TITAN does not define _XPG4_2, the correct socklen_type is int. */
typedef int socklen_type;
#elif defined(WIN32)
/* Cygwin has socklen_t which is a typedef to int */
typedef socklen_t socklen_type;
#else
/* Modern socklen_t is typedef unsigned int32 */
typedef socklen_t socklen_type;
#endif /* defined... */

#endif /* PLATFORM_H_ */